File: reflect.c

package info (click to toggle)
tcltrf 2.1.4-dfsg3-8
  • links: PTS
  • area: main
  • in suites: sid, trixie
  • size: 9,656 kB
  • sloc: ansic: 73,139; sh: 3,155; tcl: 1,343; makefile: 182; exp: 22
file content (788 lines) | stat: -rw-r--r-- 19,708 bytes parent folder | download | duplicates (6)
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
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
/*
 * reflect.c --
 *
 *	Implements and registers conversion channel relying on
 *	tcl-scripts to do the conversion. In other words: The
 *	transformation functionality is reflected up into the
 *	tcl-level. In case of binary data this will be usable
 *	only with tcl 8.0 and up.
 *
 *
 * Copyright (c) 1995 Andreas Kupries (andreas_kupries@users.sourceforge.net)
 * All rights reserved.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL I LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
 * INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS
 * SOFTWARE AND ITS DOCUMENTATION, EVEN IF I HAVE BEEN ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 *
 * I SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND
 * I HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
 * ENHANCEMENTS, OR MODIFICATIONS.
 *
 * CVS: $Id: reflect.c,v 1.25 2009/05/07 04:57:27 andreas_kupries Exp $
 */

#include "reflect.h"

/*
 * Converter description
 * ---------------------
 */


/*
 * Declarations of internal procedures.
 */

static Trf_ControlBlock
CreateEncoder  _ANSI_ARGS_ ((ClientData     writeClientData,
			     Trf_WriteProc* fun,
			     Trf_Options    optInfo,
			     Tcl_Interp*    interp,
			     ClientData     clientData));
static void
DeleteEncoder  _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     ClientData       clientData));
static int
EncodeBuffer   _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     unsigned char*   buffer,
			     int              bufLen,
			     Tcl_Interp*      interp,
			     ClientData       clientData));
static int
FlushEncoder   _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     Tcl_Interp*      interp,
			     ClientData       clientData));
static void
ClearEncoder   _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     ClientData       clientData));

static Trf_ControlBlock
CreateDecoder  _ANSI_ARGS_ ((ClientData     writeClientData,
			     Trf_WriteProc* fun,
			     Trf_Options    optInfo,
			     Tcl_Interp*    interp,
			     ClientData     clientData));
static void
DeleteDecoder  _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     ClientData       clientData));
static int
DecodeBuffer   _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     unsigned char*   buffer,
			     int              bufLen,
			     Tcl_Interp*      interp,
			     ClientData       clientData));
static int
FlushDecoder   _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     Tcl_Interp*      interp,
			     ClientData       clientData));
static void
ClearDecoder   _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     ClientData       clientData));

static int
MaxRead        _ANSI_ARGS_ ((Trf_ControlBlock ctrlBlock,
			     ClientData       clientData));

/*
 * Converter definition.
 */

static Trf_TypeDefinition reflectDefinition =
{
  "transform",
  NULL, /* filled by TrfInit_Transform, THREAD: serialize initialization */
  NULL, /* filled by TrfInit_Transform, THREAD: serialize initialization */
  {
    CreateEncoder,
    DeleteEncoder,
    NULL,
    EncodeBuffer,
    FlushEncoder,
    ClearEncoder,
    MaxRead
  }, {
    CreateDecoder,
    DeleteDecoder,
    NULL,
    DecodeBuffer,
    FlushDecoder,
    ClearDecoder,
    MaxRead
  },
  TRF_UNSEEKABLE
};



/*
 *------------------------------------------------------*
 *
 *	TrfInit_Transform --
 *
 *	------------------------------------------------*
 *	Register the conversion implemented in this file.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		As of 'Trf_Register'.
 *
 *	Result:
 *		A standard Tcl error code.
 *
 *------------------------------------------------------*
 */

int
TrfInit_Transform (interp)
Tcl_Interp* interp;
{
  TrfLock; /* THREADING: serialize initialization */
  reflectDefinition.options = TrfTransformOptions ();
  TrfUnlock;

  return Trf_Register (interp, &reflectDefinition);
}

/*
 *------------------------------------------------------*
 *
 *	CreateEncoder --
 *
 *	------------------------------------------------*
 *	Allocate and initialize the control block of a
 *	data encoder.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		Allocates memory.
 *
 *	Result:
 *		An opaque reference to the control block.
 *
 *------------------------------------------------------*
 */

static Trf_ControlBlock
CreateEncoder (writeClientData, fun, optInfo, interp, clientData)
ClientData     writeClientData;
Trf_WriteProc* fun;
Trf_Options    optInfo;
Tcl_Interp*    interp;
ClientData     clientData;
{
  ReflectControl*          c;
  TrfTransformOptionBlock* o = (TrfTransformOptionBlock*) optInfo;
  int                    res;

  c = (ReflectControl*) ckalloc (sizeof (ReflectControl));
  c->write           = fun;
  c->writeClientData = writeClientData;
  c->interp          = interp;

  /* Store reference, tell the interpreter about it. */
  c->command      = o->command;
  Tcl_IncrRefCount (c->command);

  c->maxRead = -1;
  c->naturalRatio.numBytesTransform = 0;
  c->naturalRatio.numBytesDown = 0;

  res = RefExecuteCallback (c, interp,
			    (unsigned char*) "create/write",
			    NULL, 0, TRANSMIT_DONT, 0);

  if (res != TCL_OK) {
    Tcl_DecrRefCount (c->command);
    ckfree ((VOID*) c);
    return (ClientData) NULL;
  }

  return (ClientData) c;
}

/*
 *------------------------------------------------------*
 *
 *	DeleteEncoder --
 *
 *	------------------------------------------------*
 *	Destroy the control block of an encoder.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		Releases the memory allocated by 'CreateEncoder'
 *
 *	Result:
 *		None.
 *
 *------------------------------------------------------*
 */

static void
DeleteEncoder (ctrlBlock, clientData)
Trf_ControlBlock ctrlBlock;
ClientData clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  RefExecuteCallback (c, NULL, (unsigned char*) "delete/write",
		      NULL, 0, TRANSMIT_DONT, 0);

  Tcl_DecrRefCount (c->command);
  ckfree ((VOID*) c);
}

/*
 *------------------------------------------------------*
 *
 *	EncodeBuffer --
 *
 *	------------------------------------------------*
 *	Encode the given buffer and write the result.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		As of the called WriteFun.
 *
 *	Result:
 *		Generated bytes implicitly via WriteFun.
 *		A standard Tcl error code.
 *
 *------------------------------------------------------*
 */

static int
EncodeBuffer (ctrlBlock, buffer, bufLen, interp, clientData)
Trf_ControlBlock ctrlBlock;
unsigned char* buffer;
int bufLen;
Tcl_Interp* interp;
ClientData clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  return RefExecuteCallback (c, interp,
			     (unsigned char*) "write",
			     buffer, bufLen, TRANSMIT_DOWN, 1);
}

/*
 *------------------------------------------------------*
 *
 *	FlushEncoder --
 *
 *	------------------------------------------------*
 *	Encode an incomplete character sequence (if possible).
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		As of the called WriteFun.
 *
 *	Result:
 *		Generated bytes implicitly via WriteFun.
 *		A standard Tcl error code.
 *
 *------------------------------------------------------*
 */

static int
FlushEncoder (ctrlBlock, interp, clientData)
Trf_ControlBlock ctrlBlock;
Tcl_Interp* interp;
ClientData clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  return RefExecuteCallback (c, interp,
			     (unsigned char*) "flush/write",
			     NULL, 0, TRANSMIT_DOWN, 1);
}

/*
 *------------------------------------------------------*
 *
 *	ClearEncoder --
 *
 *	------------------------------------------------*
 *	Discard an incomplete character sequence.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		See above.
 *
 *	Result:
 *		None.
 *
 *------------------------------------------------------*
 */

static void
ClearEncoder (ctrlBlock, clientData)
Trf_ControlBlock ctrlBlock;
ClientData clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  RefExecuteCallback (c, (Tcl_Interp*) NULL,
		      (unsigned char*) "clear/write",
		      NULL, 0, TRANSMIT_DONT, 0);
}

/*
 *------------------------------------------------------*
 *
 *	CreateDecoder --
 *
 *	------------------------------------------------*
 *	Allocate and initialize the control block of a
 *	data decoder.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		Allocates memory.
 *
 *	Result:
 *		An opaque reference to the control block.
 *
 *------------------------------------------------------*
 */

static Trf_ControlBlock
CreateDecoder (writeClientData, fun, optInfo, interp, clientData)
ClientData     writeClientData;
Trf_WriteProc* fun;
Trf_Options    optInfo;
Tcl_Interp*    interp;
ClientData     clientData;
{
  ReflectControl*          c;
  TrfTransformOptionBlock* o = (TrfTransformOptionBlock*) optInfo;
  int                      res;

  c = (ReflectControl*) ckalloc (sizeof (ReflectControl));
  c->write           = fun;
  c->writeClientData = writeClientData;
  c->interp          = interp;

  c->maxRead = -1;
  c->naturalRatio.numBytesTransform = 0;
  c->naturalRatio.numBytesDown = 0;

  /* Store reference, tell the interpreter about it. */
  c->command      = o->command;
  Tcl_IncrRefCount (c->command);

  res = RefExecuteCallback (c, interp,
			    (unsigned char*) "create/read",
			    NULL, 0, TRANSMIT_DONT, 0);

  if (res != TCL_OK) {
    Tcl_DecrRefCount (c->command);

    ckfree ((VOID*) c);
    return (ClientData) NULL;
  }

  return (ClientData) c;
}

/*
 *------------------------------------------------------*
 *
 *	DeleteDecoder --
 *
 *	------------------------------------------------*
 *	Destroy the control block of an decoder.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		Releases the memory allocated by 'CreateDecoder'
 *
 *	Result:
 *		None.
 *
 *------------------------------------------------------*
 */

static void
DeleteDecoder (ctrlBlock, clientData)
Trf_ControlBlock ctrlBlock;
ClientData clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  RefExecuteCallback (c, NULL, (unsigned char*) "delete/read",
		      NULL, 0, TRANSMIT_DONT, 0);

  Tcl_DecrRefCount (c->command);
  ckfree ((VOID*) c);
}

/*
 *------------------------------------------------------*
 *
 *	DecodeBuffer --
 *
 *	------------------------------------------------*
 *	Decode the given buffer and write the result.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		As of the called WriteFun.
 *
 *	Result:
 *		Generated bytes implicitly via WriteFun.
 *		A standard Tcl error code.
 *
 *------------------------------------------------------*
 */

static int
DecodeBuffer (ctrlBlock, buffer, bufLen, interp, clientData)
Trf_ControlBlock ctrlBlock;
unsigned char* buffer;
int bufLen;
Tcl_Interp* interp;
ClientData clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  return RefExecuteCallback (c, interp,
			     (unsigned char*) "read",
			     buffer, bufLen, TRANSMIT_DOWN, 1);
}

/*
 *------------------------------------------------------*
 *
 *	FlushDecoder --
 *
 *	------------------------------------------------*
 *	Decode an incomplete character sequence (if possible).
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		As of the called WriteFun.
 *
 *	Result:
 *		Generated bytes implicitly via WriteFun.
 *		A standard Tcl error code.
 *
 *------------------------------------------------------*
 */

static int
FlushDecoder (ctrlBlock, interp, clientData)
Trf_ControlBlock ctrlBlock;
Tcl_Interp* interp;
ClientData clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  return RefExecuteCallback (c, interp,
			     (unsigned char*) "flush/read",
			     NULL, 0, TRANSMIT_DOWN, 1);
}

/*
 *------------------------------------------------------*
 *
 *	ClearDecoder --
 *
 *	------------------------------------------------*
 *	Discard an incomplete character sequence.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		See above.
 *
 *	Result:
 *		None.
 *
 *------------------------------------------------------*
 */

static void
ClearDecoder (ctrlBlock, clientData)
Trf_ControlBlock ctrlBlock;
ClientData clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  RefExecuteCallback (c, (Tcl_Interp*) NULL,
		      (unsigned char*) "clear/read",
		      NULL, 0, TRANSMIT_DONT, 0);
}

/*
 *------------------------------------------------------*
 *
 *	MaxRead --
 *
 *	------------------------------------------------*
 *	Query the tcl level of the transformation about
 *      the max. number of bytes to read next time.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		As of the tcl level.
 *
 *	Result:
 *		The max. number of bytes to read.
 *
 *------------------------------------------------------*
 */

static int
MaxRead (ctrlBlock, clientData) 
Trf_ControlBlock ctrlBlock;
ClientData       clientData;
{
  ReflectControl* c = (ReflectControl*) ctrlBlock;

  c->maxRead = -1; /* unbounded consumption */

  RefExecuteCallback (c, (Tcl_Interp*) NULL,
		      (unsigned char*) "query/maxRead",
		      NULL, 0, TRANSMIT_NUM /* -> maxRead */, 1);

  return c->maxRead;
}

/*
 *------------------------------------------------------*
 *
 *	RefExecuteCallback --
 *
 *	------------------------------------------------*
 *	Execute callback for buffer and operation.
 *	------------------------------------------------*
 *
 *	Sideeffects:
 *		Everything possible, depending on the
 *		script executed.
 *
 *	Result:
 *		A standard TCL error code. In case of an
 *		error a message is left in the result area
 *		of the specified interpreter.
 *
 *------------------------------------------------------*
 */

int
RefExecuteCallback (c, interp, op, buf, bufLen, transmit, preserve)
ReflectControl* c;        /* Transformation instance */
Tcl_Interp*     interp;   /* Interpreter we are running in, possibly NULL */
unsigned char*  op;       /* Operation to perform by the tcl-level */
unsigned char*  buf;      /* Data for the operation */
int             bufLen;   /* Length of data above */
int             transmit; /* What to do with the result, see TRANSMIT_xxx */
int             preserve; /* Preserve result of transformation interp ? y/n */
{
  /*
   * Step 1, create the complete command to execute. Do this by appending
   * operation and buffer to operate upon to a copy of the callback
   * definition. We *cannot* create a list containing 3 objects and then use
   * 'Tcl_EvalObjv', because the command may contain additional prefixed
   * arguments. Feathers curried commands would come in handy here.
   */

  int             res = TCL_OK;
  Tcl_Obj*        resObj; /* See below, switch (transmit) */
  Tcl_Obj**       listObj;
  int             resLen;
  unsigned char*  resBuf;
#if GT81
  Tcl_SavedResult ciSave;
#endif
  Tcl_Obj* command;
  Tcl_Obj* temp;

  START (RefExecuteCallback);
  PRINT ("args = (%s | %d | %d | %d)\n", op, bufLen, transmit, preserve); FL;

  command = Tcl_DuplicateObj (c->command);

#if GT81
  if (preserve) {
    PRINTLN ("preserve");
    Tcl_SaveResult (c->interp, &ciSave);
  }
#endif

  if (command == (Tcl_Obj*) NULL) {
    /* Memory allocation problem */
    res = TCL_ERROR;
    PRINT ("command not duplicated @ %d\n", __LINE__);
    goto cleanup;
  }

  Tcl_IncrRefCount (command);

  temp = Tcl_NewStringObj ((char*) op, -1);

  if (temp == (Tcl_Obj*) NULL) {
    /* Memory allocation problem */
    PRINT ("op object not allocated @ %d\n", __LINE__);
    res = TCL_ERROR;
    goto cleanup;
  }

  res = Tcl_ListObjAppendElement (interp, command, temp);

  if (res != TCL_OK)
    goto cleanup;

  /*
   * Use a byte-array to prevent the misinterpretation of binary data
   * coming through as UTF while at the tcl level.
   */

#if GT81
  temp = Tcl_NewByteArrayObj (buf, bufLen);
#else
  temp = Tcl_NewStringObj    ((char*) buf, bufLen);
#endif

  if (temp == (Tcl_Obj*) NULL) {
    /* Memory allocation problem */
#if GT81
    PRINT ("bytearray not allocated @ %d\n", __LINE__);
#else
    PRINT ("string not allocated @ %d\n", __LINE__);
#endif
    res = TCL_ERROR;
    goto cleanup;
  }

  res = Tcl_ListObjAppendElement (interp, command, temp);

  if (res != TCL_OK)
    goto cleanup;

  /*
   * Step 2, execute the command at the global level of the interpreter
   * used to create the transformation. Destroy the command afterward.
   * If an error occured, the current interpreter is defined and not equal
   * to the interpreter for the callback, then copy the error message into
   * current interpreter. Don't copy if in preservation mode.
   */

  res = Tcl_GlobalEvalObj (c->interp, command);
  Tcl_DecrRefCount (command);
  command = (Tcl_Obj*) NULL;

  if (res != TCL_OK) {
    /* copy error message from 'c->interp' to actual 'interp'. */

    if ((interp != (Tcl_Interp*) NULL) &&
	(c->interp != interp) &&
	!preserve) {
    
        Tcl_SetObjResult (interp, Tcl_GetObjResult (c->interp));
    }

    PRINTLN ("!error"); FL;
    goto cleanup;
  }

  /*
   * Step 3, transmit a possible conversion result to the underlying
   * channel, or ourselves
   */

  switch (transmit) {
  case TRANSMIT_DONT:
    /* nothing to do */
    break;

  case TRANSMIT_DOWN:
    /* Caller said to expect data in interpreter result area.
     * Take it, then write it out to the channel system.
     */
    resObj = Tcl_GetObjResult (c->interp);
#if GT81
    resBuf = (unsigned char*) Tcl_GetByteArrayFromObj (resObj, &resLen);
#else
    resBuf = (unsigned char*) Tcl_GetStringFromObj (resObj, &resLen);
#endif
    res = c->write (c->writeClientData, resBuf, resLen, interp);
    break;

  case TRANSMIT_NUM:
    /* Interpret result as integer number */
    resObj = Tcl_GetObjResult (c->interp);

    Tcl_GetIntFromObj (c->interp, resObj, &c->maxRead);
    break;

  case TRANSMIT_RATIO:
    /* Result should be 2-element list. Ignore superfluous list elements.
     */
    resObj = Tcl_GetObjResult (c->interp);
    resLen = -1;
    res = Tcl_ListObjLength(c->interp, resObj, &resLen);

    c->naturalRatio.numBytesTransform = 0;
    c->naturalRatio.numBytesDown      = 0;

    if ((res != TCL_OK) || (resLen < 2)) {
      PRINT ("TRANSMIT_RATIO problem (%d, %d)\n",
	     res == TCL_OK, resLen);
      PRINTLN ("reset result");

      Tcl_ResetResult (c->interp);
      goto cleanup;
    }

    res = Tcl_ListObjGetElements(c->interp, resObj, &resLen, &listObj);

    Tcl_GetIntFromObj (c->interp, listObj [0],
		       &c->naturalRatio.numBytesTransform);
    Tcl_GetIntFromObj (c->interp, listObj [1],
		       &c->naturalRatio.numBytesDown);
    break;
  }

  PRINTLN ("reset result");
  Tcl_ResetResult (c->interp);

#if GT81
  if (preserve) {
    PRINTLN ("restore");
    Tcl_RestoreResult (c->interp, &ciSave);
  }
#endif

  DONE (RefExecuteCallback);
  return res;

cleanup:
  PRINTLN ("cleanup...");

#if GT81
  if (preserve) {
    PRINTLN ("restore");
    Tcl_RestoreResult (c->interp, &ciSave);
  }
#endif

  if (command != (Tcl_Obj*) NULL) {
    PRINTLN ("decr-ref command");
    Tcl_DecrRefCount (command);
  }

  DONE (RefExecuteCallback);
  return res;
}