aboutsummaryrefslogtreecommitdiff
path: root/PDContainer/include/GlobalStuff.h
blob: 6cb96ccf7472ead5fe5cc1ef80e01a70491c98c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
// *********************(c)*2004*********************>
// -holzilib--holzilib--holzilib--holzilib--holzilib->
// ++++PD-External++by+Georg+Holzmann++grh@gmx.at++++>
//
// PDContainer: 
// this is a port of the containers from the C++ STL
// (Standard Template Library)
// for usage see the documentation and PD help files
// for license see readme.txt
//
// GlobalStuff.h 


#ifndef _global_stuff_h___
#define _global_stuff_h___


#include "m_pd.h"
#include <string>
#include <sstream>
#include <fstream>
#include <iterator>
#include <list>
//#include <iostream> //DEBUG

using std::string;
using std::ostringstream;
using std::istringstream;
using std::ofstream;
using std::ifstream;
using std::endl;


// current version
#define PDC_VERSION   "0.2"


// TinyXML
//#define TIXML_USE_STL
#include "tinyxml/tinyxml.h"


//---------------------------------------------------
/* This function compares two pd t_atoms
 */
static bool compareAtoms(t_atom &atom1, t_atom &atom2)
{
  if(atom1.a_type == A_FLOAT && atom2.a_type == A_FLOAT)
    return (atom1.a_w.w_float == atom2.a_w.w_float);

  if(atom1.a_type == A_SYMBOL && atom2.a_type == A_SYMBOL)
    return (strcmp(atom1.a_w.w_symbol->s_name,
		   atom2.a_w.w_symbol->s_name) == 0);
  
  if(atom1.a_type == A_POINTER && atom2.a_type == A_POINTER)
    return (atom1.a_w.w_gpointer == atom2.a_w.w_gpointer);

  return false;
}


//---------------------------------------------------
/* one Element holds one data element, which can be 
 * a list, a float or a symbol
 */ 
class Element
{
 private:
  t_atom *atom;
  int length;

 public:
  Element() : atom(NULL), length(0) 
    { }

  Element(int size_, t_atom *atom_) : atom(NULL), length(0)
  {
    if(atom_ && size_)
    {
      length = size_;
      
      // !!!! FIXME !!!!
      // hack to avoid lockating too much memory
      // (somewhere I read an uninitialized value ...
      //  ... but where !?)
      if(length>999)
      {
	post("Element, constr1: invalid construction !!! should be fixed !!!");
	length=0;
	atom=NULL;
	return;
      }

      atom = (t_atom*)copybytes(atom_, length*sizeof(t_atom));
    }
  }

  // Copy Constr.    
  Element(const Element &src) : atom(NULL), length(0)
  {
    if(src.atom)
    {
      length = src.length;
      
      // !!!! FIXME !!!!
      // hack to avoid lockating too much memory
      // (somewhere I read an uninitialized value ...
      //  ... but where !?)
      if(length>999)
      {
	post("Element, constr2: invalid construction !!! should be fixed !!!");
        length=0;
        atom=NULL;
	return;
      }

      atom = (t_atom*)copybytes(src.atom, length*sizeof(t_atom));
    }
  }

  // Destructor
  ~Element()
  {
    if(atom)
      freebytes(atom, length*sizeof(t_atom));
  }
  
  // set atoms and length
  void setAtoms(int size_, t_atom *atom_)
  {
    if(atom)
    {
      freebytes(atom, length*sizeof(t_atom));
      length=0;
      atom=NULL;
    }

    if(atom_)
    {
      length = size_;
      
      // !!!! FIXME !!!!
      // hack to avoid lockating too much memory
      // (somewhere I read an uninitialized value ...
      //  ... but where !?)
      if(length>999)
      {
	post("Element, setAtoms: invalid construction !!! should be fixed !!!");
	length=0;
	atom=NULL;
	return;
      }
      
      atom = (t_atom*)copybytes(atom_, length*sizeof(t_atom));
    }
  }
  
  int getLength()
  { return length; }
  
  // shallow copy !!!
  t_atom *getAtom()
  { return atom; }

  //Assignement Operator
  const Element& operator = (const Element &src)
  {
    if(atom)
    {
      freebytes(atom, length*sizeof(t_atom));
      length=0;
      atom=NULL;
    }

    if(src.atom)
    {
      length = src.length;
      
      // !!!! FIXME !!!!
      // hack to avoid lockating too much memory
      // (somewhere I read an uninitialized value ...
      //  ... but where !?)
      if(length>999)
      {
	post("Element, assignment: invalid construction !!! should be fixed !!!");
	length=0;
	atom=NULL;
	return (*this);
      }
      
      atom = (t_atom*)copybytes(src.atom, length*sizeof(t_atom));
    }

    return (*this);
  }

  // operator== to compare the objects
  bool operator== (const Element &key) const
    {
      if (length != key.length)
	return false;

      for (int i=0; i < length; i++)
	{
	  if(!compareAtoms(atom[i],key.atom[i]))
	    return false;
	}

      return true;
    }

  // operator< to compare the objects
  // (needed by map, set, ...)
  bool operator< (const Element &key) const
    {
      if (length == key.length)
	{
	  bool difference = false;
	  int index;

	  for (index = 0; index<length; index++)
	    {
	      if(!compareAtoms(atom[index],key.atom[index]))
		{
		  difference = true;
		  break;
		}
	    }
	  
	  // definition:
	  // A_FLOAT < A_SYMBOL < A_POINTER

	  if( atom[index].a_type == A_FLOAT 
	      && key.atom[index].a_type != A_FLOAT )
	    return true;

	  if( atom[index].a_type == A_SYMBOL )
	  { 
	    if( key.atom[index].a_type == A_FLOAT )
	      return false;
	    if( key.atom[index].a_type == A_POINTER )
	      return true;
	  }
	  
	  
	  // compare, when they are the same type:
	  
	  if( atom[index].a_type == A_POINTER
		     && key.atom[index].a_type != A_POINTER )
	    return false;

	  if( atom[index].a_type == A_FLOAT 
	      && key.atom[index].a_type == A_FLOAT )
	    return (atom[index].a_w.w_float < key.atom[index].a_w.w_float);

	  if( atom[index].a_type == A_SYMBOL 
	      && key.atom[index].a_type == A_SYMBOL )
	    return (strcmp(atom[index].a_w.w_symbol->s_name,
			   key.atom[index].a_w.w_symbol->s_name) < 0);
	  
	  if( atom[index].a_type == A_POINTER 
	      && key.atom[index].a_type == A_POINTER )
	    return (atom[index].a_w.w_gpointer < key.atom[index].a_w.w_gpointer);
	
	  return false;
	} // different length
      else
	return (length < key.length);

    }
};


#endif  //_global_stuff_h___