summaryrefslogtreecommitdiffstats
path: root/src/bltVecInt.h
blob: 953e0b7105635684f66d867b1f2f3beeb31a941f (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
/*
 * Smithsonian Astrophysical Observatory, Cambridge, MA, USA
 * This code has been modified under the terms listed below and is made
 * available under the same terms.
 */

/*
 * bltVecInt.h --
 *
 *	Copyright 1995-2004 George A Howlett.
 *
 *	Permission is hereby granted, free of charge, to any person obtaining
 *	a copy of this software and associated documentation files (the
 *	"Software"), to deal in the Software without restriction, including
 *	without limitation the rights to use, copy, modify, merge, publish,
 *	distribute, sublicense, and/or sell copies of the Software, and to
 *	permit persons to whom the Software is furnished to do so, subject to
 *	the following conditions:
 *
 *	The above copyright notice and this permission notice shall be
 *	included in all copies or substantial portions of the Software.
 *
 *	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *	EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *	MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *	NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 *	LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 *	OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *	WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */


#include "bltInt.h"
#include <bltChain.h>
#include <bltVector.h>

#define VECTOR_THREAD_KEY	"BLT Vector Data"
#define VECTOR_MAGIC		((unsigned int) 0x46170277)

/* These defines allow parsing of different types of indices */

#define INDEX_SPECIAL	(1<<0)	/* Recognize "min", "max", and "++end" as
				 * valid indices */
#define INDEX_COLON	(1<<1)	/* Also recognize a range of indices separated
				 * by a colon */
#define INDEX_CHECK	(1<<2)	/* Verify that the specified index or range of
				 * indices are within limits */
#define INDEX_ALL_FLAGS    (INDEX_SPECIAL | INDEX_COLON | INDEX_CHECK)

#define SPECIAL_INDEX		-2

#define FFT_NO_CONSTANT		(1<<0)
#define FFT_BARTLETT		(1<<1)
#define FFT_SPECTRUM		(1<<2)

typedef struct {
    Tcl_HashTable vectorTable;	/* Table of vectors */
    Tcl_HashTable mathProcTable; /* Table of vector math functions */
    Tcl_HashTable indexProcTable;
    Tcl_Interp* interp;
    unsigned int nextId;
} VectorInterpData;

/*
 * Vector --
 *
 *	A vector is an array of double precision values.  It can be accessed
 *	through a TCL command, a TCL array variable, or C API. The storage for
 *	the array points initially to a statically allocated buffer, but to
 *	malloc-ed memory if more is necessary.
 *
 *	Vectors can be shared by several clients (for example, two different
 *	graph widgets).  The data is shared. When a client wants to use a
 *	vector, it allocates a vector identifier, which identifies the client.
 *	Clients use this ID to specify a callback routine to be invoked
 *	whenever the vector is modified or destroyed.  Whenever the vector is
 *	updated or destroyed, each client is notified of the change by their
 *	callback routine.
 */

typedef struct {

    /*
     * If you change these fields, make sure you change the definition of
     * Blt_Vector in bltInt.h and blt.h too.
     */

    double *valueArr;		/* Array of values (malloc-ed) */

    int length;			/* Current number of values in the array. */

    int size;			/* Maximum number of values that can be stored
				 * in the value array. */

    double min, max;		/* Minimum and maximum values in the vector */

    int dirty;			/* Indicates if the vector has been updated */

    int reserved;

    /* The following fields are local to this module  */

    const char *name;		/* The namespace-qualified name of the vector.
				 * It points to the hash key allocated for the
				 * entry in the vector hash table. */

    VectorInterpData *dataPtr;
    Tcl_Interp* interp;		/* Interpreter associated with the
				 * vector */

    Tcl_HashEntry *hashPtr;	/* If non-NULL, pointer in a hash table to
				 * track the vectors in use. */

    Tcl_FreeProc *freeProc;	/* Address of procedure to call to release
				 * storage for the value array, Optionally can
				 * be one of the following: TCL_STATIC,
				 * TCL_DYNAMIC, or TCL_VOLATILE. */

    const char *arrayName;	/* The name of the TCL array variable mapped
				 * to the vector (malloc'ed). If NULL,
				 * indicates that the vector isn't mapped to
				 * any variable */

    Tcl_Namespace *nsPtr;	/* Namespace context of the vector itself. */

    int offset;			/* Offset from zero of the vector's starting
				 * index */

    Tcl_Command cmdToken;	/* Token for vector's TCL command. */

    Blt_Chain chain;		/* List of clients using this vector */

    int notifyFlags;		/* Notification flags. See definitions
				 * below */

    int varFlags;		/* Indicate if the variable is global,
				 * namespace, or local */

    int freeOnUnset;		/* For backward compatibility only: If
				 * non-zero, free the vector when its variable
				 * is unset. */
    int flush;

    int first, last;		/* Selected region of vector. This is used
				 * mostly for the math routines */
} Vector;

#define NOTIFY_UPDATED		((int)BLT_VECTOR_NOTIFY_UPDATE)
#define NOTIFY_DESTROYED	((int)BLT_VECTOR_NOTIFY_DESTROY)

#define NOTIFY_NEVER		(1<<3)	/* Never notify clients of updates to
					 * the vector */
#define NOTIFY_ALWAYS		(1<<4)	/* Notify clients after each update
					 * of the vector is made */
#define NOTIFY_WHENIDLE		(1<<5)	/* Notify clients at the next idle point
					 * that the vector has been updated. */

#define NOTIFY_PENDING		(1<<6)	/* A do-when-idle notification of the
					 * vector's clients is pending. */
#define NOTIFY_NOW		(1<<7)	/* Notify clients of changes once
					 * immediately */

#define NOTIFY_WHEN_MASK	(NOTIFY_NEVER|NOTIFY_ALWAYS|NOTIFY_WHENIDLE)

#define UPDATE_RANGE		(1<<9)	/* The data of the vector has changed.
					 * Update the min and max limits when
					 * they are needed */

#define FindRange(array, first, last, min, max) \
{ \
    min = max = 0.0; \
    if (first <= last) { \
	register int i; \
	min = max = array[first]; \
	for (i = first + 1; i <= last; i++) { \
	    if (min > array[i]) { \
		min = array[i]; \
	    } else if (max < array[i]) { \
		max = array[i]; \
	    } \
	} \
    } \
}

extern void Blt_Vec_InstallSpecialIndices(Tcl_HashTable *tablePtr);

extern void Blt_Vec_InstallMathFunctions(Tcl_HashTable *tablePtr);

extern void Blt_Vec_UninstallMathFunctions(Tcl_HashTable *tablePtr);

extern VectorInterpData *Blt_Vec_GetInterpData (Tcl_Interp* interp);

extern double Blt_Vec_Max(Vector *vecObjPtr);
extern double Blt_Vec_Min(Vector *vecObjPtr);

extern Vector *Blt_Vec_New(VectorInterpData *dataPtr);

extern int Blt_Vec_Duplicate(Vector *destPtr, Vector *srcPtr);

extern int Blt_Vec_SetLength(Tcl_Interp* interp, Vector *vPtr, 
	int length);

extern int Blt_Vec_SetSize(Tcl_Interp* interp, Vector *vPtr, 
	int size);

extern int Blt_Vec_ChangeLength(Tcl_Interp* interp, Vector *vPtr, 
	int length);

extern Vector *Blt_Vec_ParseElement(Tcl_Interp* interp, 
	VectorInterpData *dataPtr, const char *start, const char **endPtr, 
	int flags);

extern void Blt_Vec_Free(Vector *vPtr);

extern size_t *Blt_Vec_SortMap(Vector **vectors, int nVectors);

extern int Blt_Vec_LookupName(VectorInterpData *dataPtr, 
	const char *vecName, Vector **vPtrPtr);

extern Vector *Blt_Vec_Create(VectorInterpData *dataPtr, 
	const char *name, const char *cmdName, const char *varName, 
	int *newPtr);

extern void Blt_Vec_UpdateRange(Vector *vPtr);

extern void Blt_Vec_UpdateClients(Vector *vPtr);

extern void Blt_Vec_FlushCache(Vector *vPtr);

extern int Blt_Vec_Reset(Vector *vPtr, double *dataArr,
	int nValues, int arraySize, Tcl_FreeProc *freeProc);

extern int  Blt_Vec_GetIndex(Tcl_Interp* interp, Vector *vPtr, 
	const char *string, int *indexPtr, int flags, 
	Blt_VectorIndexProc **procPtrPtr);

extern int  Blt_Vec_GetIndexRange(Tcl_Interp* interp, Vector *vPtr, 
	const char *string, int flags, Blt_VectorIndexProc **procPtrPtr);

extern int Blt_Vec_MapVariable(Tcl_Interp* interp, Vector *vPtr, 
	const char *name);

extern int Blt_Vec_FFT(Tcl_Interp* interp, Vector *realPtr,
	Vector *phasesPtr, Vector *freqPtr, double delta, 
	int flags, Vector *srcPtr);

extern int Blt_Vec_InverseFFT(Tcl_Interp* interp, Vector *iSrcPtr, 
	Vector *rDestPtr, Vector *iDestPtr, Vector *srcPtr);

extern Tcl_ObjCmdProc Blt_Vec_InstCmd;

extern Tcl_VarTraceProc Blt_Vec_VarTrace;

extern Tcl_IdleProc Blt_Vec_NotifyClients;