-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtclobj.cxx
executable file
·514 lines (440 loc) · 12.4 KB
/
tclobj.cxx
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
/**********************************************************************
- TCLODBC COPYRIGHT NOTICE -
This software is copyrighted by Roy Nurmi, contact address by email at
Roy.Nurmi@iki.fi. The following terms apply to all files associated with
the software unless explicitly disclaimed in individual files.
The author hereby grant permission to use, copy, modify, distribute,
and license this software and its documentation for any purpose, provided
that existing copyright notices are retained in all copies and that this
notice is included verbatim in any distributions. No written agreement,
license, or royalty fee is required for any of the authorized uses.
Modifications to this software may be copyrighted by their authors
and need not follow the licensing terms described here, provided that
the new terms are clearly indicated on the first page of each file where
they apply.
IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
MODIFICATIONS.
GOVERNMENT USE: If you are acquiring this software on behalf of the
U.S. government, the Government shall have only "Restricted Rights"
in the software and related documentation as defined in the Federal
Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
are acquiring the software on behalf of the Department of Defense, the
software shall be classified as "Commercial Computer Software" and the
Government shall have only "Restricted Rights" as defined in Clause
252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
authors grant the U.S. Government and others acting in its behalf
permission to use and distribute the software in accordance with the
terms specified in this license.
***********************************************************************/
#include <string.h>
#include "tclobj.hxx"
#ifdef TCL_UTF_MAX
extern Tcl_ObjType TclodbcEncodedString;
#endif
extern char* strMemoryAllocationFailed;
const char* strFunctionSequenceError = "Function sequence error in tclodbc.";
TclObj::TclObj(const char* s, int len) : p (NULL)
{
#if TCL_MAJOR_VERSION >= 8
p = Tcl_NewStringObj((char*) s, len);
#else
p = allocObj();
Tcl_DStringAppend(&p->s, (char*) s, len);
#endif
Tcl_IncrRefCount(p);
}
void TclObj::setLength(int len)
{
#if TCL_MAJOR_VERSION >= 8
Tcl_SetObjLength((Tcl_Obj*)(*this), len);
#else
Tcl_DStringSetLength((Tcl_DString*)(*this), len);
#endif
}
TclObj::TclObj(const long i) : p (NULL)
{
#if TCL_MAJOR_VERSION >= 8
p = Tcl_NewLongObj(i);
#else
p = allocObj();
char s[30];
sprintf(s, "%ld", i);
Tcl_DStringAppend(&p->s, s, -1);
p->refCount = 0;
#endif
Tcl_IncrRefCount(p);
}
TclObj::TclObj(const TclObj& o) : p (NULL)
{
p = o.p;
if (p) {
Tcl_IncrRefCount(p);
}
}
#if TCL_MAJOR_VERSION >= 8
TclObj::TclObj(Tcl_Obj* o) : p (NULL)
{
p = o;
if (p) {
Tcl_IncrRefCount(p);
}
}
TclObj::operator Tcl_Obj* ()
{
if (!p) {
p = Tcl_NewObj();
Tcl_IncrRefCount(p);
}
return p;
}
#else
TclObj::TclObj(DStringObj* s) : p (NULL)
{
p = s;
if (p) {
Tcl_IncrRefCount(p);
}
}
TclObj::operator DStringObj* ()
{
if (!p) {
p = allocObj();
Tcl_IncrRefCount(p);
}
return p;
}
TclObj::operator Tcl_DString* ()
{
return &((DStringObj*)*this)->s;
}
DStringObj* TclObj::allocObj()
{
DStringObj* p;
p = (DStringObj*) Tcl_Alloc(sizeof(DStringObj));
if (!p) {
THROWSTR(strMemoryAllocationFailed);
}
Tcl_DStringInit(&p->s);
p->refCount = 0;
p->list = NULL;
p->llength = 0;
return p;
}
void TclObj::splitList (Tcl_Interp* interp) {
char** argv = NULL;
if (p) {
invalidateList();
// split the original into char array
if (Tcl_SplitList(interp, *this, &p->llength, &argv) && interp) {
THROWSTR(interp->result);
}
// organize character array to array of DStringObj's
if (p->llength) {
p->list = (DStringObj**) Tcl_Alloc(sizeof(DStringObj*)*p->llength);
if (!p->list) {
THROWSTR(strMemoryAllocationFailed);
}
for (int i=0; i < p->llength; ++i) {
p->list[i] = TclObj::allocObj();
Tcl_DStringAppend(&(p->list[i]->s), argv[i], -1);
Tcl_IncrRefCount(p->list[i]);
}
}
// free character array space
if (argv) Tcl_Free ((char*) argv);
}
}
void TclObj::invalidateList () {
if (p) {
if (p->list) {
for (int i=0; i < p->llength; ++i) {
Tcl_DecrRefCount(p->list[i]);
}
Tcl_Free ((char*) p->list);
}
p->list = NULL;
p->llength = 0;
}
}
void TclFreeObj(DStringObj* p)
{
Tcl_DStringFree(&p->s);
if (p->list) {
for (int i=0; i < p->llength; ++i) {
Tcl_DecrRefCount(p->list[i]);
}
Tcl_Free((char*) p->list);
}
Tcl_Free((char*) p);
}
#endif
TclObj::~TclObj()
{
if (p) {
Tcl_DecrRefCount(p);
}
}
TclObj& TclObj::operator= (const TclObj& o)
{
if (p != o.p) { // check for equality
if (p) Tcl_DecrRefCount(p);
p = o.p;
if (p) Tcl_IncrRefCount(p);
}
return *this;
}
TclObj& TclObj::set (const char* s, int len)
{
if (p) Tcl_DecrRefCount(p);
if (s) {
#if TCL_MAJOR_VERSION >= 8
p = Tcl_NewStringObj((char*) s, len);
#else
p = allocObj();
Tcl_DStringAppend(&p->s, (char*) s, len);
#endif
Tcl_IncrRefCount(p);
} else {
p = NULL;
}
return *this;
}
TclObj::operator char* () const
{
if (p) {
#if TCL_MAJOR_VERSION >= 8
return Tcl_GetStringFromObj(p,NULL);
#else
return Tcl_DStringValue(&p->s);
#endif
} else {
return (char*)"";
}
}
TclObj TclObj::appendElement (TclObj obj, Tcl_Interp* interp) {
#if TCL_MAJOR_VERSION >= 8
if (Tcl_ListObjAppendElement(interp, *this, obj) != TCL_OK && interp) {
THROWOBJ(TclObj(Tcl_GetObjResult(interp)));
}
#else
Tcl_DStringAppendElement(*this, obj);
invalidateList();
#endif
return *this;
};
TclObj TclObj::append (const char* c, int len) {
#if TCL_MAJOR_VERSION >= 8
Tcl_AppendToObj(*this, (char*) c, len);
#else
Tcl_DStringAppend(*this, (char*) c, len);
invalidateList();
#endif
return *this;
};
TclObj TclObj::lindex (int pos, Tcl_Interp* interp) {
#if TCL_MAJOR_VERSION >= 8
Tcl_Obj* objPtr;
if (Tcl_ListObjIndex(interp, *this, pos, &objPtr) != TCL_OK && interp) {
THROWOBJ(TclObj(Tcl_GetObjResult(interp)));
}
return TclObj(objPtr);
#else
if (!p->list) {
splitList(interp);
}
if (pos < 0 || p->llength <= pos) {
THROWSTR("Invalid list index");
}
return TclObj(p->list[pos]);
#endif
};
int TclObj::llenght (Tcl_Interp* interp) {
#if TCL_MAJOR_VERSION >= 8
int i;
if (Tcl_ListObjLength(interp, *this, &i) != TCL_OK && interp) {
THROWOBJ(TclObj(Tcl_GetObjResult(interp)));
}
return i;
#else
if (!p->list) {
splitList(interp);
}
return p->llength;
#endif
};
int TclObj::lenght () {
int i;
if (p) {
#if TCL_MAJOR_VERSION >= 8
Tcl_GetStringFromObj(p, &i);
#else
i = Tcl_DStringLength(&p->s);
#endif
return i;
} else {
return 0;
}
};
int TclObj::asInt (Tcl_Interp* interp)
{
int i = 0;
#if TCL_MAJOR_VERSION >= 8
if (Tcl_GetIntFromObj(interp, *this, &i) != TCL_OK && interp) {
THROWOBJ(TclObj(Tcl_GetObjResult(interp)));
}
#else
if (Tcl_GetInt(interp, *this, &i) != TCL_OK && interp) {
THROWSTR(interp->result);
}
#endif
return i;
}
int TclObj::isNull() {
return (p == NULL);
}
TclObj::TclObj(const char* s, const Tcl_Encoding e, int len) : p (NULL)
{
*this = TclObj(s, len);
#ifdef TCL_UTF_MAX
Decode(e);
#endif
}
int TclObj::Encode(const Tcl_Encoding e, Tcl_Interp* interp)
{
#ifdef TCL_UTF_MAX
char* c;
int len;
Tcl_DString ds;
Tcl_DString *pds;
Tcl_Obj* o;
o = *this;
if (!o) {
THROWSTR(strFunctionSequenceError);
}
// initialize DString
Tcl_DStringInit(&ds);
// if the string is already encoded with the same encoding, do not encode
// again
if (o->typePtr == &TclodbcEncodedString
&& o->internalRep.twoPtrValue.ptr1 == e) {
return TCL_OK;
}
// get utf string representation
c = Tcl_GetStringFromObj(o, &len);
// free old internal representation, if any
if (o->typePtr && o->typePtr->freeIntRepProc) {
o->typePtr->freeIntRepProc(o);
}
// store type pointer and encoding
o->typePtr = &TclodbcEncodedString;
o->internalRep.twoPtrValue.ptr1 = e;
o->internalRep.twoPtrValue.ptr2 = NULL;
// increment encoding reference count
if (e) { Tcl_GetEncoding(NULL,Tcl_GetEncodingName(e)); }
// encode using a DString stored in the stack
Tcl_UtfToExternalDString(e, c, len, &ds);
// check, if the strings differ
if (len != Tcl_DStringLength(&ds)
|| memcmp(Tcl_DStringValue(&ds), c, len)) {
// allocate permanent storage for encoded data
pds = (Tcl_DString*) Tcl_Alloc(sizeof(Tcl_DString));
// init structure
Tcl_DStringInit(pds);
// store values to the struct
Tcl_DStringAppend(pds, Tcl_DStringValue(&ds), Tcl_DStringLength(&ds));
o->internalRep.twoPtrValue.ptr2 = pds;
}
// finalize
Tcl_DStringFree(&ds);
#endif
return TCL_OK;
}
int TclObj::Decode(const Tcl_Encoding e)
{
#ifdef TCL_UTF_MAX
// if p == NULL, nothing has to be done here
if (p) {
Tcl_DString ds;
Tcl_DString* pds;
int len;
char* s;
// decode in the stack, and store the utf representation
Tcl_DStringInit(&ds);
s = (char*) *this;
len = this->lenght();
Tcl_ExternalToUtfDString (e, s, len, &ds);
// check, if the strings differ, store encoded value only when
// necessary
if (len != Tcl_DStringLength(&ds)
|| memcmp(Tcl_DStringValue(&ds), s, len)) {
// allocate permanent storage for encoded data, init structure
pds = (Tcl_DString*) Tcl_Alloc(sizeof(Tcl_DString));
Tcl_DStringInit(pds);
// save encoded representation
Tcl_DStringAppend(pds, s, len);
// replace original string representation with decoded value
Tcl_SetStringObj(p, Tcl_DStringValue(&ds), Tcl_DStringLength(&ds));
// encoded representation is saved to the object struct, saves
// encoding effort if the same string is passed as encoded string
// later.
p->internalRep.twoPtrValue.ptr2 = pds;
} else {
p->internalRep.twoPtrValue.ptr2 = NULL;
}
// store decoded value to object and set object type
p->typePtr = &TclodbcEncodedString;
p->internalRep.twoPtrValue.ptr1 = e;
// increment encoding reference count
if (e) { Tcl_GetEncoding(NULL,Tcl_GetEncodingName(e)); }
// finalize
Tcl_DStringFree(&ds);
}
#endif
return TCL_OK;
}
int TclObj::EncodedLenght()
{
#ifdef TCL_UTF_MAX
if (p && p->typePtr == &TclodbcEncodedString
&& p->internalRep.twoPtrValue.ptr2) {
return
Tcl_DStringLength((Tcl_DString*)(p->internalRep.twoPtrValue.ptr2));
} else
#endif
return lenght();
}
char* TclObj::EncodedValue()
{
#ifdef TCL_UTF_MAX
if (p && p->typePtr == &TclodbcEncodedString
&& p->internalRep.twoPtrValue.ptr2) {
return
Tcl_DStringValue((Tcl_DString*)(p->internalRep.twoPtrValue.ptr2));
} else
#endif
return (char*) *this;
}
void TclObj::eval (Tcl_Interp* interp) {
#if TCL_MAJOR_VERSION == 8
//#if TCL_MINOR_VERSION >= 1
// if (Tcl_EvalObj(interp, (Tcl_Obj*) *this, TCL_EVAL_DIRECT) == TCL_ERROR)
//#else
if (Tcl_EvalObj(interp, (Tcl_Obj*) *this) == TCL_ERROR) {
//#endif
THROWOBJ(TclObj(Tcl_GetObjResult(interp)));
}
#elif TCL_MAJOR_VERSION == 7
if (Tcl_Eval(interp, (char*) *this) == TCL_ERROR) {
THROWSTR(interp->result);
}
#endif
}