tclVar.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:161k
源码类别:

通讯编程

开发平台:

Visual C++

  1.      /* Initialized to avoid compiler
  2.          * warning. */
  3.     int i;
  4.     if (objc < 2) {
  5. Tcl_WrongNumArgs(interp, 1, objv, "varName ?value value ...?");
  6. return TCL_ERROR;
  7.     }
  8.     if (objc == 2) {
  9. varValuePtr = Tcl_ObjGetVar2(interp, objv[1], NULL, TCL_LEAVE_ERR_MSG);
  10. if (varValuePtr == NULL) {
  11.     return TCL_ERROR;
  12. }
  13.     } else {
  14. varPtr = TclObjLookupVar(interp, objv[1], NULL, TCL_LEAVE_ERR_MSG,
  15. "set", /*createPart1*/ 1, /*createPart2*/ 1, &arrayPtr);
  16. part1 = TclGetString(objv[1]);
  17. if (varPtr == NULL) {
  18.     return TCL_ERROR;
  19. }
  20. for (i = 2;  i < objc;  i++) {   
  21.     /*
  22.      * Note that we do not need to increase the refCount of
  23.      * the Var pointers: should a trace delete the variable,
  24.      * the return value of TclPtrSetVar will be NULL, and we 
  25.      * will not access the variable again.
  26.      */
  27.     varValuePtr = TclPtrSetVar(interp, varPtr, arrayPtr, part1, NULL, 
  28.             objv[i], (TCL_APPEND_VALUE | TCL_LEAVE_ERR_MSG));
  29.     if (varValuePtr == NULL) {
  30. return TCL_ERROR;
  31.     }
  32. }
  33.     }
  34.     Tcl_SetObjResult(interp, varValuePtr);
  35.     return TCL_OK;
  36. }
  37. /*
  38.  *----------------------------------------------------------------------
  39.  *
  40.  * Tcl_LappendObjCmd --
  41.  *
  42.  * This object-based procedure is invoked to process the "lappend" 
  43.  * Tcl command. See the user documentation for details on what it does.
  44.  *
  45.  * Results:
  46.  * A standard Tcl object result value.
  47.  *
  48.  * Side effects:
  49.  * A variable's value may be changed.
  50.  *
  51.  *----------------------------------------------------------------------
  52.  */
  53. /* ARGSUSED */
  54. int
  55. Tcl_LappendObjCmd(dummy, interp, objc, objv)
  56.     ClientData dummy; /* Not used. */
  57.     Tcl_Interp *interp; /* Current interpreter. */
  58.     int objc; /* Number of arguments. */
  59.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  60. {
  61.     Tcl_Obj *varValuePtr, *newValuePtr;
  62.     register List *listRepPtr;
  63.     register Tcl_Obj **elemPtrs;
  64.     int numElems, numRequired, createdNewObj, i, j;
  65.     Var *varPtr, *arrayPtr;
  66.     char *part1;
  67.     if (objc < 2) {
  68. Tcl_WrongNumArgs(interp, 1, objv, "varName ?value value ...?");
  69. return TCL_ERROR;
  70.     }
  71.     if (objc == 2) {
  72. newValuePtr = Tcl_ObjGetVar2(interp, objv[1], (Tcl_Obj *) NULL, 0);
  73. if (newValuePtr == NULL) {
  74.     /*
  75.      * The variable doesn't exist yet. Just create it with an empty
  76.      * initial value.
  77.      */
  78.     
  79.     varValuePtr = Tcl_NewObj();
  80.     Tcl_IncrRefCount(varValuePtr);
  81.     newValuePtr = Tcl_ObjSetVar2(interp, objv[1], NULL, varValuePtr,
  82.     TCL_LEAVE_ERR_MSG);
  83.     Tcl_DecrRefCount(varValuePtr);
  84.     if (newValuePtr == NULL) {
  85. return TCL_ERROR;
  86.     }
  87. } else {
  88.     int result;
  89.     
  90.     result = Tcl_ListObjLength(interp, newValuePtr, &numElems);
  91.     if (result != TCL_OK) {
  92. return result;
  93.     }
  94. }     
  95.     } else {
  96. /*
  97.  * We have arguments to append. We used to call Tcl_SetVar2 to
  98.  * append each argument one at a time to ensure that traces were run
  99.  * for each append step. We now append the arguments all at once
  100.  * because it's faster. Note that a read trace and a write trace for
  101.  * the variable will now each only be called once. Also, if the
  102.  * variable's old value is unshared we modify it directly, otherwise
  103.  * we create a new copy to modify: this is "copy on write".
  104.  *
  105.  * Note that you have to protect the variable pointers around
  106.  * the TclPtrGetVar call to insure that they remain valid 
  107.  * even if the variable was undefined and unused.
  108.  */
  109. varPtr = TclObjLookupVar(interp, objv[1], NULL, TCL_LEAVE_ERR_MSG,
  110. "set", /*createPart1*/ 1, /*createPart2*/ 1, &arrayPtr);
  111. if (varPtr == NULL) {
  112.     return TCL_ERROR;
  113. }
  114. varPtr->refCount++;
  115. if (arrayPtr != NULL) {
  116.     arrayPtr->refCount++;
  117. }
  118. part1 = TclGetString(objv[1]);
  119. varValuePtr = TclPtrGetVar(interp, varPtr, arrayPtr, part1, NULL, 
  120.         TCL_LEAVE_ERR_MSG);
  121. varPtr->refCount--;
  122. if (arrayPtr != NULL) {
  123.     arrayPtr->refCount--;
  124. }
  125. createdNewObj = 0;
  126. if (varValuePtr == NULL) {
  127.     /*
  128.      * We couldn't read the old value: either the var doesn't yet
  129.      * exist or it's an array element.  If it's new, we will try to
  130.      * create it with Tcl_ObjSetVar2 below.
  131.      */
  132.     
  133.     varValuePtr = Tcl_NewObj();
  134.     createdNewObj = 1;
  135. } else if (Tcl_IsShared(varValuePtr)) {
  136.     varValuePtr = Tcl_DuplicateObj(varValuePtr);
  137.     createdNewObj = 1;
  138. }
  139. /*
  140.  * Convert the variable's old value to a list object if necessary.
  141.  */
  142. if (varValuePtr->typePtr != &tclListType) {
  143.     int result = tclListType.setFromAnyProc(interp, varValuePtr);
  144.     if (result != TCL_OK) {
  145. if (createdNewObj) {
  146.     Tcl_DecrRefCount(varValuePtr); /* free unneeded obj. */
  147. }
  148. return result;
  149.     }
  150. }
  151. listRepPtr = (List *) varValuePtr->internalRep.twoPtrValue.ptr1;
  152. elemPtrs = listRepPtr->elements;
  153. numElems = listRepPtr->elemCount;
  154. /*
  155.  * If there is no room in the current array of element pointers,
  156.  * allocate a new, larger array and copy the pointers to it.
  157.  */
  158. numRequired = numElems + (objc-2);
  159. if (numRequired > listRepPtr->maxElemCount) {
  160.     int newMax = (2 * numRequired);
  161.     Tcl_Obj **newElemPtrs = (Tcl_Obj **)
  162. ckalloc((unsigned) (newMax * sizeof(Tcl_Obj *)));
  163.     
  164.     memcpy((VOID *) newElemPtrs, (VOID *) elemPtrs,
  165.     (size_t) (numElems * sizeof(Tcl_Obj *)));
  166.     listRepPtr->maxElemCount = newMax;
  167.     listRepPtr->elements = newElemPtrs;
  168.     ckfree((char *) elemPtrs);
  169.     elemPtrs = newElemPtrs;
  170. }
  171. /*
  172.  * Insert the new elements at the end of the list.
  173.  */
  174. for (i = 2, j = numElems;  i < objc;  i++, j++) {
  175.             elemPtrs[j] = objv[i];
  176.             Tcl_IncrRefCount(objv[i]);
  177.         }
  178. listRepPtr->elemCount = numRequired;
  179. /*
  180.  * Invalidate and free any old string representation since it no
  181.  * longer reflects the list's internal representation.
  182.  */
  183. Tcl_InvalidateStringRep(varValuePtr);
  184. /*
  185.  * Now store the list object back into the variable. If there is an
  186.  * error setting the new value, decrement its ref count if it
  187.  * was new and we didn't create the variable.
  188.  */
  189. Tcl_IncrRefCount(varValuePtr);
  190. newValuePtr = TclPtrSetVar(interp, varPtr, arrayPtr, part1, NULL, 
  191.             varValuePtr, TCL_LEAVE_ERR_MSG);
  192. Tcl_DecrRefCount(varValuePtr);
  193. if (newValuePtr == NULL) {
  194.     return TCL_ERROR;
  195. }
  196.     }
  197.     /*
  198.      * Set the interpreter's object result to refer to the variable's value
  199.      * object.
  200.      */
  201.     Tcl_SetObjResult(interp, newValuePtr);
  202.     return TCL_OK;
  203. }
  204. /*
  205.  *----------------------------------------------------------------------
  206.  *
  207.  * Tcl_ArrayObjCmd --
  208.  *
  209.  * This object-based procedure is invoked to process the "array" Tcl
  210.  * command. See the user documentation for details on what it does.
  211.  *
  212.  * Results:
  213.  * A standard Tcl result object.
  214.  *
  215.  * Side effects:
  216.  * See the user documentation.
  217.  *
  218.  *----------------------------------------------------------------------
  219.  */
  220. /* ARGSUSED */
  221. int
  222. Tcl_ArrayObjCmd(dummy, interp, objc, objv)
  223.     ClientData dummy; /* Not used. */
  224.     Tcl_Interp *interp; /* Current interpreter. */
  225.     int objc; /* Number of arguments. */
  226.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  227. {
  228.     /*
  229.      * The list of constants below should match the arrayOptions string array
  230.      * below.
  231.      */
  232.     enum {ARRAY_ANYMORE, ARRAY_DONESEARCH,  ARRAY_EXISTS, ARRAY_GET,
  233.   ARRAY_NAMES, ARRAY_NEXTELEMENT, ARRAY_SET, ARRAY_SIZE,
  234.   ARRAY_STARTSEARCH, ARRAY_STATISTICS, ARRAY_UNSET}; 
  235.     static CONST char *arrayOptions[] = {
  236. "anymore", "donesearch", "exists", "get", "names", "nextelement",
  237. "set", "size", "startsearch", "statistics", "unset", (char *) NULL
  238.     };
  239.     Interp *iPtr = (Interp *) interp;
  240.     Var *varPtr, *arrayPtr;
  241.     Tcl_HashEntry *hPtr;
  242.     Tcl_Obj *resultPtr, *varNamePtr;
  243.     int notArray;
  244.     char *varName;
  245.     int index, result;
  246.     if (objc < 3) {
  247. Tcl_WrongNumArgs(interp, 1, objv, "option arrayName ?arg ...?");
  248. return TCL_ERROR;
  249.     }
  250.     if (Tcl_GetIndexFromObj(interp, objv[1], arrayOptions, "option",
  251.     0, &index) != TCL_OK) {
  252.      return TCL_ERROR;
  253.     }
  254.     /*
  255.      * Locate the array variable
  256.      */
  257.     
  258.     varNamePtr = objv[2];
  259.     varName = TclGetString(varNamePtr);
  260.     varPtr = TclObjLookupVar(interp, varNamePtr, NULL, /*flags*/ 0,
  261.             /*msg*/ 0, /*createPart1*/ 0, /*createPart2*/ 0, &arrayPtr);
  262.     /*
  263.      * Special array trace used to keep the env array in sync for
  264.      * array names, array get, etc.
  265.      */
  266.     if (varPtr != NULL && varPtr->tracePtr != NULL
  267.     && (TclIsVarArray(varPtr) || TclIsVarUndefined(varPtr))) {
  268. if (TCL_ERROR == CallVarTraces(iPtr, arrayPtr, varPtr, varName, NULL,
  269. (TCL_LEAVE_ERR_MSG|TCL_NAMESPACE_ONLY|TCL_GLOBAL_ONLY|
  270. TCL_TRACE_ARRAY), /* leaveErrMsg */ 1)) {
  271.     return TCL_ERROR;
  272. }
  273.     }
  274.     /*
  275.      * Verify that it is indeed an array variable. This test comes after
  276.      * the traces - the variable may actually become an array as an effect 
  277.      * of said traces.
  278.      */
  279.     notArray = 0;
  280.     if ((varPtr == NULL) || !TclIsVarArray(varPtr)
  281.     || TclIsVarUndefined(varPtr)) {
  282. notArray = 1;
  283.     }
  284.     /*
  285.      * We have to wait to get the resultPtr until here because
  286.      * CallVarTraces can affect the result.
  287.      */
  288.     resultPtr = Tcl_GetObjResult(interp);
  289.     switch (index) {
  290.         case ARRAY_ANYMORE: {
  291.     ArraySearch *searchPtr;
  292.     
  293.     if (objc != 4) {
  294.         Tcl_WrongNumArgs(interp, 2, objv, 
  295.                         "arrayName searchId");
  296. return TCL_ERROR;
  297.     }
  298.     if (notArray) {
  299.         goto error;
  300.     }
  301.     searchPtr = ParseSearchId(interp, varPtr, varName, objv[3]);
  302.     if (searchPtr == NULL) {
  303.         return TCL_ERROR;
  304.     }
  305.     while (1) {
  306.         Var *varPtr2;
  307. if (searchPtr->nextEntry != NULL) {
  308.     varPtr2 = (Var *) Tcl_GetHashValue(searchPtr->nextEntry);
  309.     if (!TclIsVarUndefined(varPtr2)) {
  310.         break;
  311.     }
  312. }
  313. searchPtr->nextEntry = Tcl_NextHashEntry(&searchPtr->search);
  314. if (searchPtr->nextEntry == NULL) {
  315.     Tcl_SetIntObj(resultPtr, 0);
  316.     return TCL_OK;
  317. }
  318.     }
  319.     Tcl_SetIntObj(resultPtr, 1);
  320.     break;
  321. }
  322.         case ARRAY_DONESEARCH: {
  323.     ArraySearch *searchPtr, *prevPtr;
  324.     if (objc != 4) {
  325.         Tcl_WrongNumArgs(interp, 2, objv, 
  326.                         "arrayName searchId");
  327. return TCL_ERROR;
  328.     }
  329.     if (notArray) {
  330.         goto error;
  331.     }
  332.     searchPtr = ParseSearchId(interp, varPtr, varName, objv[3]);
  333.     if (searchPtr == NULL) {
  334.         return TCL_ERROR;
  335.     }
  336.     if (varPtr->searchPtr == searchPtr) {
  337.         varPtr->searchPtr = searchPtr->nextPtr;
  338.     } else {
  339.         for (prevPtr = varPtr->searchPtr;  ;
  340.      prevPtr = prevPtr->nextPtr) {
  341.     if (prevPtr->nextPtr == searchPtr) {
  342.         prevPtr->nextPtr = searchPtr->nextPtr;
  343. break;
  344.     }
  345. }
  346.     }
  347.     ckfree((char *) searchPtr);
  348.     break;
  349. }
  350.         case ARRAY_EXISTS: {
  351.     if (objc != 3) {
  352.         Tcl_WrongNumArgs(interp, 2, objv, "arrayName");
  353.         return TCL_ERROR;
  354.     }
  355.     Tcl_SetIntObj(resultPtr, !notArray);
  356.     break;
  357. }
  358.         case ARRAY_GET: {
  359.     Tcl_HashSearch search;
  360.     Var *varPtr2;
  361.     char *pattern = NULL;
  362.     char *name;
  363.     Tcl_Obj *namePtr, *valuePtr, *nameLstPtr, *tmpResPtr, **namePtrPtr;
  364.     int i, count;
  365.     
  366.     if ((objc != 3) && (objc != 4)) {
  367.         Tcl_WrongNumArgs(interp, 2, objv, "arrayName ?pattern?");
  368. return TCL_ERROR;
  369.     }
  370.     if (notArray) {
  371.         return TCL_OK;
  372.     }
  373.     if (objc == 4) {
  374.         pattern = TclGetString(objv[3]);
  375.     }
  376.     /*
  377.      * Store the array names in a new object.
  378.      */
  379.     nameLstPtr = Tcl_NewObj();
  380.     Tcl_IncrRefCount(nameLstPtr);
  381.     for (hPtr = Tcl_FirstHashEntry(varPtr->value.tablePtr, &search);
  382.  hPtr != NULL;  hPtr = Tcl_NextHashEntry(&search)) {
  383.         varPtr2 = (Var *) Tcl_GetHashValue(hPtr);
  384. if (TclIsVarUndefined(varPtr2)) {
  385.     continue;
  386. }
  387. name = Tcl_GetHashKey(varPtr->value.tablePtr, hPtr);
  388. if ((objc == 4) && !Tcl_StringMatch(name, pattern)) {
  389.     continue; /* element name doesn't match pattern */
  390. }
  391. namePtr = Tcl_NewStringObj(name, -1);
  392. result = Tcl_ListObjAppendElement(interp, nameLstPtr,
  393.         namePtr);
  394. if (result != TCL_OK) {
  395.     Tcl_DecrRefCount(namePtr); /* free unneeded name obj */
  396.     Tcl_DecrRefCount(nameLstPtr);
  397.     return result;
  398. }
  399.     }
  400.     /*
  401.      * Make sure the Var structure of the array is not removed by
  402.      * a trace while we're working.
  403.      */
  404.     varPtr->refCount++;
  405.     /*
  406.      * Get the array values corresponding to each element name 
  407.      */
  408.     tmpResPtr = Tcl_NewObj();
  409.     result = Tcl_ListObjGetElements(interp, nameLstPtr,
  410.     &count, &namePtrPtr);
  411.     if (result != TCL_OK) {
  412. goto errorInArrayGet;
  413.     }
  414.     
  415.     for (i = 0; i < count; i++) { 
  416. namePtr = *namePtrPtr++;
  417. valuePtr = Tcl_ObjGetVar2(interp, objv[2], namePtr,
  418.                 TCL_LEAVE_ERR_MSG);
  419. if (valuePtr == NULL) {
  420.     /*
  421.      * Some trace played a trick on us; we need to diagnose to
  422.      * adapt our behaviour: was the array element unset, or did
  423.      * the modification modify the complete array?
  424.      */
  425.     if (TclIsVarArray(varPtr) && !TclIsVarUndefined(varPtr)) {
  426. /*
  427.  * The array itself looks OK, the variable was
  428.  * undefined: forget it.
  429.  */
  430. continue;
  431.     } else {
  432. result = TCL_ERROR;
  433. goto errorInArrayGet;
  434.     }
  435. }
  436. result = Tcl_ListObjAppendElement(interp, tmpResPtr, namePtr);
  437. if (result != TCL_OK) {
  438.     goto errorInArrayGet;
  439. }
  440. result = Tcl_ListObjAppendElement(interp, tmpResPtr, valuePtr);
  441. if (result != TCL_OK) {
  442.     goto errorInArrayGet;
  443. }
  444.     }
  445.     varPtr->refCount--;
  446.     Tcl_SetObjResult(interp, tmpResPtr);
  447.     Tcl_DecrRefCount(nameLstPtr);
  448.     break;
  449.     errorInArrayGet:
  450.     varPtr->refCount--;
  451.     Tcl_DecrRefCount(nameLstPtr);
  452.     Tcl_DecrRefCount(tmpResPtr); /* free unneeded temp result obj */
  453.     return result;
  454. }
  455.         case ARRAY_NAMES: {
  456.     Tcl_HashSearch search;
  457.     Var *varPtr2;
  458.     char *pattern = NULL;
  459.     char *name;
  460.     Tcl_Obj *namePtr;
  461.     int mode, matched = 0;
  462.     static CONST char *options[] = {
  463. "-exact", "-glob", "-regexp", (char *) NULL
  464.     };
  465.     enum options { OPT_EXACT, OPT_GLOB, OPT_REGEXP };
  466.     mode = OPT_GLOB;
  467.     
  468.     if ((objc < 3) || (objc > 5)) {
  469.            Tcl_WrongNumArgs(interp, 2, objv,
  470. "arrayName ?mode? ?pattern?");
  471. return TCL_ERROR;
  472.     }
  473.     if (notArray) {
  474.         return TCL_OK;
  475.     }
  476.     if (objc == 4) {
  477.         pattern = Tcl_GetString(objv[3]);
  478.     } else if (objc == 5) {
  479. pattern = Tcl_GetString(objv[4]);
  480. if (Tcl_GetIndexFromObj(interp, objv[3], options, "option",
  481. 0, &mode) != TCL_OK) {
  482.     return TCL_ERROR;
  483. }
  484.     }       
  485.     for (hPtr = Tcl_FirstHashEntry(varPtr->value.tablePtr, &search);
  486.  hPtr != NULL; hPtr = Tcl_NextHashEntry(&search)) {
  487.         varPtr2 = (Var *) Tcl_GetHashValue(hPtr);
  488. if (TclIsVarUndefined(varPtr2)) {
  489.     continue;
  490. }
  491. name = Tcl_GetHashKey(varPtr->value.tablePtr, hPtr);
  492. if (objc > 3) {
  493.     switch ((enum options) mode) {
  494. case OPT_EXACT:
  495.     matched = (strcmp(name, pattern) == 0);
  496.     break;
  497. case OPT_GLOB:
  498.     matched = Tcl_StringMatch(name, pattern);
  499.     break;
  500. case OPT_REGEXP:
  501.     matched = Tcl_RegExpMatch(interp, name,
  502.     pattern);
  503.     if (matched < 0) {
  504. return TCL_ERROR;
  505.     }
  506.     break;
  507.     }
  508.     if (matched == 0) {
  509. continue;
  510.     }
  511. }
  512. namePtr = Tcl_NewStringObj(name, -1);
  513. result = Tcl_ListObjAppendElement(interp, resultPtr, namePtr);
  514. if (result != TCL_OK) {
  515.     Tcl_DecrRefCount(namePtr); /* free unneeded name obj */
  516.     return result;
  517. }
  518.     }
  519.     break;
  520. }
  521.         case ARRAY_NEXTELEMENT: {
  522.     ArraySearch *searchPtr;
  523.     Tcl_HashEntry *hPtr;
  524.     
  525.     if (objc != 4) {
  526.         Tcl_WrongNumArgs(interp, 2, objv, 
  527.                         "arrayName searchId");
  528. return TCL_ERROR;
  529.     }
  530.     if (notArray) {
  531.            goto error;
  532.     }
  533.     searchPtr = ParseSearchId(interp, varPtr, varName, objv[3]);
  534.     if (searchPtr == NULL) {
  535.         return TCL_ERROR;
  536.     }
  537.     while (1) {
  538.         Var *varPtr2;
  539. hPtr = searchPtr->nextEntry;
  540. if (hPtr == NULL) {
  541.     hPtr = Tcl_NextHashEntry(&searchPtr->search);
  542.     if (hPtr == NULL) {
  543.         return TCL_OK;
  544.     }
  545. } else {
  546.     searchPtr->nextEntry = NULL;
  547. }
  548. varPtr2 = (Var *) Tcl_GetHashValue(hPtr);
  549. if (!TclIsVarUndefined(varPtr2)) {
  550.     break;
  551. }
  552.     }
  553.     Tcl_SetStringObj(resultPtr,
  554.             Tcl_GetHashKey(varPtr->value.tablePtr, hPtr), -1);
  555.     break;
  556. }
  557.         case ARRAY_SET: {
  558.     if (objc != 4) {
  559.         Tcl_WrongNumArgs(interp, 2, objv, "arrayName list");
  560. return TCL_ERROR;
  561.     }
  562.     return(TclArraySet(interp, objv[2], objv[3]));
  563. }
  564.         case ARRAY_SIZE: {
  565.     Tcl_HashSearch search;
  566.     Var *varPtr2;
  567.     int size;
  568.     if (objc != 3) {
  569.         Tcl_WrongNumArgs(interp, 2, objv, "arrayName");
  570. return TCL_ERROR;
  571.     }
  572.     size = 0;
  573.     if (!notArray) {
  574.         for (hPtr = Tcl_FirstHashEntry(varPtr->value.tablePtr, 
  575.                         &search);
  576.      hPtr != NULL;  hPtr = Tcl_NextHashEntry(&search)) {
  577.     varPtr2 = (Var *) Tcl_GetHashValue(hPtr);
  578.     if (TclIsVarUndefined(varPtr2)) {
  579.         continue;
  580.     }
  581.     size++;
  582. }
  583.     }
  584.     Tcl_SetIntObj(resultPtr, size);
  585.     break;
  586. }
  587.         case ARRAY_STARTSEARCH: {
  588.     ArraySearch *searchPtr;
  589.     if (objc != 3) {
  590.         Tcl_WrongNumArgs(interp, 2, objv, "arrayName");
  591. return TCL_ERROR;
  592.     }
  593.     if (notArray) {
  594.         goto error;
  595.     }
  596.     searchPtr = (ArraySearch *) ckalloc(sizeof(ArraySearch));
  597.     if (varPtr->searchPtr == NULL) {
  598.         searchPtr->id = 1;
  599. Tcl_AppendStringsToObj(resultPtr, "s-1-", varName,
  600.         (char *) NULL);
  601.     } else {
  602.         char string[TCL_INTEGER_SPACE];
  603. searchPtr->id = varPtr->searchPtr->id + 1;
  604. TclFormatInt(string, searchPtr->id);
  605. Tcl_AppendStringsToObj(resultPtr, "s-", string, "-", varName,
  606. (char *) NULL);
  607.     }
  608.     searchPtr->varPtr = varPtr;
  609.     searchPtr->nextEntry = Tcl_FirstHashEntry(varPtr->value.tablePtr,
  610.     &searchPtr->search);
  611.     searchPtr->nextPtr = varPtr->searchPtr;
  612.     varPtr->searchPtr = searchPtr;
  613.     break;
  614. }
  615. case ARRAY_STATISTICS: {
  616.     CONST char *stats;
  617.     if (notArray) {
  618. goto error;
  619.     }
  620.     stats = Tcl_HashStats(varPtr->value.tablePtr);
  621.     if (stats != NULL) {
  622. Tcl_SetStringObj(Tcl_GetObjResult(interp), stats, -1);
  623. ckfree((void *)stats);
  624.     } else {
  625. Tcl_SetResult(interp, "error reading array statistics",
  626. TCL_STATIC);
  627. return TCL_ERROR;
  628.     }
  629.     break;
  630.         }
  631. case ARRAY_UNSET: {
  632.     Tcl_HashSearch search;
  633.     Var *varPtr2;
  634.     char *pattern = NULL;
  635.     char *name;
  636.           
  637.     if ((objc != 3) && (objc != 4)) {
  638. Tcl_WrongNumArgs(interp, 2, objv, "arrayName ?pattern?");
  639. return TCL_ERROR;
  640.     }
  641.     if (notArray) {
  642. return TCL_OK;
  643.     }
  644.     if (objc == 3) {
  645. /*
  646.  * When no pattern is given, just unset the whole array
  647.  */
  648. if (TclObjUnsetVar2(interp, varNamePtr, NULL, 0)
  649. != TCL_OK) {
  650.     return TCL_ERROR;
  651. }
  652.     } else {
  653. pattern = Tcl_GetString(objv[3]);
  654. for (hPtr = Tcl_FirstHashEntry(varPtr->value.tablePtr,
  655. &search);
  656.      hPtr != NULL; hPtr = Tcl_NextHashEntry(&search)) {
  657.     varPtr2 = (Var *) Tcl_GetHashValue(hPtr);
  658.     if (TclIsVarUndefined(varPtr2)) {
  659. continue;
  660.     }
  661.     name = Tcl_GetHashKey(varPtr->value.tablePtr, hPtr);
  662.     if (Tcl_StringMatch(name, pattern) &&
  663.     (TclObjUnsetVar2(interp, varNamePtr, name, 0)
  664.     != TCL_OK)) {
  665. return TCL_ERROR;
  666.     }
  667. }
  668.     }
  669.     break;
  670. }
  671.     }
  672.     return TCL_OK;
  673.     error:
  674.     Tcl_AppendStringsToObj(resultPtr, """, varName, "" isn't an array",
  675.     (char *) NULL);
  676.     return TCL_ERROR;
  677. }
  678. /*
  679.  *----------------------------------------------------------------------
  680.  *
  681.  * TclArraySet --
  682.  *
  683.  * Set the elements of an array.  If there are no elements to
  684.  * set, create an empty array.  This routine is used by the
  685.  * Tcl_ArrayObjCmd and by the TclSetupEnv routine.
  686.  *
  687.  * Results:
  688.  * A standard Tcl result object.
  689.  *
  690.  * Side effects:
  691.  * A variable will be created if one does not already exist.
  692.  *
  693.  *----------------------------------------------------------------------
  694.  */
  695. int
  696. TclArraySet(interp, arrayNameObj, arrayElemObj)
  697.     Tcl_Interp *interp; /* Current interpreter. */
  698.     Tcl_Obj *arrayNameObj; /* The array name. */
  699.     Tcl_Obj *arrayElemObj; /* The array elements list.  If this is
  700.  * NULL, create an empty array. */
  701. {
  702.     Var *varPtr, *arrayPtr;
  703.     Tcl_Obj **elemPtrs;
  704.     int result, elemLen, i, nameLen;
  705.     char *varName, *p;
  706.     
  707.     varName = Tcl_GetStringFromObj(arrayNameObj, &nameLen);
  708.     p = varName + nameLen - 1;
  709.     if (*p == ')') {
  710. while (--p >= varName) {
  711.     if (*p == '(') {
  712. VarErrMsg(interp, varName, NULL, "set", needArray);
  713. return TCL_ERROR;
  714.     }
  715. }
  716.     }
  717.     varPtr = TclObjLookupVar(interp, arrayNameObj, NULL,
  718.     /*flags*/ TCL_LEAVE_ERR_MSG, /*msg*/ "set", /*createPart1*/ 1,
  719.     /*createPart2*/ 0, &arrayPtr);
  720.     if (varPtr == NULL) {
  721. return TCL_ERROR;
  722.     }
  723.     if (arrayElemObj != NULL) {
  724. result = Tcl_ListObjGetElements(interp, arrayElemObj,
  725. &elemLen, &elemPtrs);
  726. if (result != TCL_OK) {
  727.     return result;
  728. }
  729. if (elemLen & 1) {
  730.     Tcl_ResetResult(interp);
  731.     Tcl_AppendToObj(Tcl_GetObjResult(interp),
  732.     "list must have an even number of elements", -1);
  733.     return TCL_ERROR;
  734. }
  735. if (elemLen > 0) {
  736.     /*
  737.      * We needn't worry about traces invalidating arrayPtr:
  738.      * should that be the case, TclPtrSetVar will return NULL
  739.      * so that we break out of the loop and return an error.
  740.      */
  741.     for (i = 0;  i < elemLen;  i += 2) {
  742. char *part2 = TclGetString(elemPtrs[i]);
  743. Var *elemVarPtr = TclLookupArrayElement(interp, varName, 
  744.                         part2, TCL_LEAVE_ERR_MSG, "set", 1, 1, varPtr);
  745. if ((elemVarPtr == NULL) ||
  746.         (TclPtrSetVar(interp, elemVarPtr, varPtr, varName,
  747.  part2, elemPtrs[i+1], TCL_LEAVE_ERR_MSG) == NULL)) {
  748.     result = TCL_ERROR;
  749.     break;
  750. }
  751. /*
  752.  * The TclPtrSetVar call might have shimmered
  753.  * arrayElemObj to another type, so re-fetch
  754.  * the pointers for safety.
  755.  */
  756. Tcl_ListObjGetElements(NULL, arrayElemObj,
  757. &elemLen, &elemPtrs);
  758.     }
  759.     return result;
  760. }
  761.     }
  762.     
  763.     /*
  764.      * The list is empty make sure we have an array, or create
  765.      * one if necessary.
  766.      */
  767.     
  768.     if (varPtr != NULL) {
  769. if (!TclIsVarUndefined(varPtr) && TclIsVarArray(varPtr)) {
  770.     /*
  771.      * Already an array, done.
  772.      */
  773.     
  774.     return TCL_OK;
  775. }
  776. if (TclIsVarArrayElement(varPtr) || !TclIsVarUndefined(varPtr)) {
  777.     /*
  778.      * Either an array element, or a scalar: lose!
  779.      */
  780.     
  781.     VarErrMsg(interp, varName, (char *)NULL, "array set", needArray);
  782.     return TCL_ERROR;
  783. }
  784.     }
  785.     TclSetVarArray(varPtr);
  786.     TclClearVarUndefined(varPtr);
  787.     varPtr->value.tablePtr =
  788. (Tcl_HashTable *) ckalloc(sizeof(Tcl_HashTable));
  789.     Tcl_InitHashTable(varPtr->value.tablePtr, TCL_STRING_KEYS);
  790.     return TCL_OK;
  791. }
  792. /*
  793.  *----------------------------------------------------------------------
  794.  *
  795.  * ObjMakeUpvar --
  796.  *
  797.  * This procedure does all of the work of the "global" and "upvar"
  798.  * commands.
  799.  *
  800.  * Results:
  801.  * A standard Tcl completion code. If an error occurs then an
  802.  * error message is left in iPtr->result.
  803.  *
  804.  * Side effects:
  805.  * The variable given by myName is linked to the variable in framePtr
  806.  * given by otherP1 and otherP2, so that references to myName are
  807.  * redirected to the other variable like a symbolic link.
  808.  *
  809.  *----------------------------------------------------------------------
  810.  */
  811. static int
  812. ObjMakeUpvar(interp, framePtr, otherP1Ptr, otherP2, otherFlags, myName, myFlags, index)
  813.     Tcl_Interp *interp; /* Interpreter containing variables. Used
  814.          * for error messages, too. */
  815.     CallFrame *framePtr; /* Call frame containing "other" variable.
  816.  * NULL means use global :: context. */
  817.     Tcl_Obj *otherP1Ptr;
  818.     CONST char *otherP2; /* Two-part name of variable in framePtr. */
  819.     CONST int otherFlags; /* 0, TCL_GLOBAL_ONLY or TCL_NAMESPACE_ONLY:
  820.  * indicates scope of "other" variable. */
  821.     CONST char *myName; /* Name of variable which will refer to
  822.  * otherP1/otherP2. Must be a scalar. */
  823.     int myFlags; /* 0, TCL_GLOBAL_ONLY or TCL_NAMESPACE_ONLY:
  824.  * indicates scope of myName. */
  825.     int index;                  /* If the variable to be linked is an indexed
  826.  * scalar, this is its index. Otherwise, -1. */
  827. {
  828.     Interp *iPtr = (Interp *) interp;
  829.     Var *otherPtr, *varPtr, *arrayPtr;
  830.     CallFrame *varFramePtr;
  831.     CONST char *errMsg;
  832.     /*
  833.      * Find "other" in "framePtr". If not looking up other in just the
  834.      * current namespace, temporarily replace the current var frame
  835.      * pointer in the interpreter in order to use TclObjLookupVar.
  836.      */
  837.     varFramePtr = iPtr->varFramePtr;
  838.     if (!(otherFlags & TCL_NAMESPACE_ONLY)) {
  839. iPtr->varFramePtr = framePtr;
  840.     }
  841.     otherPtr = TclObjLookupVar(interp, otherP1Ptr, otherP2,
  842.     (otherFlags | TCL_LEAVE_ERR_MSG), "access",
  843.             /*createPart1*/ 1, /*createPart2*/ 1, &arrayPtr);
  844.     if (!(otherFlags & TCL_NAMESPACE_ONLY)) {
  845. iPtr->varFramePtr = varFramePtr;
  846.     }
  847.     if (otherPtr == NULL) {
  848. return TCL_ERROR;
  849.     }
  850.     if (index >= 0) {
  851. if (!varFramePtr->isProcCallFrame) {
  852.     panic("ObjMakeUpvar called with an index outside from a proc.n");
  853. }
  854. varPtr = &(varFramePtr->compiledLocals[index]);
  855.     } else {
  856. /*
  857.  * Check that we are not trying to create a namespace var linked to
  858.  * a local variable in a procedure. If we allowed this, the local
  859.  * variable in the shorter-lived procedure frame could go away
  860.  * leaving the namespace var's reference invalid.
  861.  */
  862. if (((otherP2 ? arrayPtr->nsPtr : otherPtr->nsPtr) == NULL) 
  863.     && ((myFlags & (TCL_GLOBAL_ONLY | TCL_NAMESPACE_ONLY))
  864. || (varFramePtr == NULL)
  865. || !varFramePtr->isProcCallFrame
  866. || (strstr(myName, "::") != NULL))) {
  867.     Tcl_AppendResult((Tcl_Interp *) iPtr, "bad variable name "",
  868.     myName, "": upvar won't create namespace variable that ",
  869.     "refers to procedure variable", (char *) NULL);
  870.     return TCL_ERROR;
  871. }
  872. /*
  873.  * Lookup and eventually create the new variable. Set the flag bit
  874.  * LOOKUP_FOR_UPVAR to indicate the special resolution rules for 
  875.  * upvar purposes: 
  876.  *   - Bug #696893 - variable is either proc-local or in the current
  877.  *     namespace; never follow the second (global) resolution path 
  878.  *   - Bug #631741 - do not use special namespace or interp resolvers
  879.  */
  880. varPtr = TclLookupSimpleVar(interp, myName, (myFlags | LOOKUP_FOR_UPVAR), 
  881.         /* create */ 1, &errMsg, &index);
  882. if (varPtr == NULL) {
  883.     VarErrMsg(interp, myName, NULL, "create", errMsg);
  884.     return TCL_ERROR;
  885. }
  886.     }
  887.     if (varPtr == otherPtr) {
  888. Tcl_SetResult((Tcl_Interp *) iPtr,
  889.       "can't upvar from variable to itself", TCL_STATIC);
  890. return TCL_ERROR;
  891.     }
  892.     if (varPtr->tracePtr != NULL) {
  893. Tcl_AppendResult((Tcl_Interp *) iPtr, "variable "", myName,
  894.         "" has traces: can't use for upvar", (char *) NULL);
  895. return TCL_ERROR;
  896.     } else if (!TclIsVarUndefined(varPtr)) {
  897. /*
  898.  * The variable already existed. Make sure this variable "varPtr"
  899.  * isn't the same as "otherPtr" (avoid circular links). Also, if
  900.  * it's not an upvar then it's an error. If it is an upvar, then
  901.  * just disconnect it from the thing it currently refers to.
  902.  */
  903. if (TclIsVarLink(varPtr)) {
  904.     Var *linkPtr = varPtr->value.linkPtr;
  905.     if (linkPtr == otherPtr) {
  906. return TCL_OK;
  907.     }
  908.     linkPtr->refCount--;
  909.     if (TclIsVarUndefined(linkPtr)) {
  910. CleanupVar(linkPtr, (Var *) NULL);
  911.     }
  912. } else {
  913.     Tcl_AppendResult((Tcl_Interp *) iPtr, "variable "", myName,
  914.     "" already exists", (char *) NULL);
  915.     return TCL_ERROR;
  916. }
  917.     }
  918.     TclSetVarLink(varPtr);
  919.     TclClearVarUndefined(varPtr);
  920.     varPtr->value.linkPtr = otherPtr;
  921.     otherPtr->refCount++;
  922.     return TCL_OK;
  923. }
  924. /*
  925.  *----------------------------------------------------------------------
  926.  *
  927.  * Tcl_UpVar --
  928.  *
  929.  * This procedure links one variable to another, just like
  930.  * the "upvar" command.
  931.  *
  932.  * Results:
  933.  * A standard Tcl completion code.  If an error occurs then
  934.  * an error message is left in the interp's result.
  935.  *
  936.  * Side effects:
  937.  * The variable in frameName whose name is given by varName becomes
  938.  * accessible under the name localName, so that references to
  939.  * localName are redirected to the other variable like a symbolic
  940.  * link.
  941.  *
  942.  *----------------------------------------------------------------------
  943.  */
  944. int
  945. Tcl_UpVar(interp, frameName, varName, localName, flags)
  946.     Tcl_Interp *interp; /* Command interpreter in which varName is
  947.  * to be looked up. */
  948.     CONST char *frameName; /* Name of the frame containing the source
  949.  * variable, such as "1" or "#0". */
  950.     CONST char *varName; /* Name of a variable in interp to link to.
  951.  * May be either a scalar name or an
  952.  * element in an array. */
  953.     CONST char *localName; /* Name of link variable. */
  954.     int flags; /* 0, TCL_GLOBAL_ONLY or TCL_NAMESPACE_ONLY:
  955.  * indicates scope of localName. */
  956. {
  957.     return Tcl_UpVar2(interp, frameName, varName, NULL, localName, flags);
  958. }
  959. /*
  960.  *----------------------------------------------------------------------
  961.  *
  962.  * Tcl_UpVar2 --
  963.  *
  964.  * This procedure links one variable to another, just like
  965.  * the "upvar" command.
  966.  *
  967.  * Results:
  968.  * A standard Tcl completion code.  If an error occurs then
  969.  * an error message is left in the interp's result.
  970.  *
  971.  * Side effects:
  972.  * The variable in frameName whose name is given by part1 and
  973.  * part2 becomes accessible under the name localName, so that
  974.  * references to localName are redirected to the other variable
  975.  * like a symbolic link.
  976.  *
  977.  *----------------------------------------------------------------------
  978.  */
  979. int
  980. Tcl_UpVar2(interp, frameName, part1, part2, localName, flags)
  981.     Tcl_Interp *interp; /* Interpreter containing variables.  Used
  982.  * for error messages too. */
  983.     CONST char *frameName; /* Name of the frame containing the source
  984.  * variable, such as "1" or "#0". */
  985.     CONST char *part1;
  986.     CONST char *part2; /* Two parts of source variable name to
  987.  * link to. */
  988.     CONST char *localName; /* Name of link variable. */
  989.     int flags; /* 0, TCL_GLOBAL_ONLY or TCL_NAMESPACE_ONLY:
  990.  * indicates scope of localName. */
  991. {
  992.     int result;
  993.     CallFrame *framePtr;
  994.     Tcl_Obj *part1Ptr;
  995.     if (TclGetFrame(interp, frameName, &framePtr) == -1) {
  996. return TCL_ERROR;
  997.     }
  998.     part1Ptr = Tcl_NewStringObj(part1, -1);
  999.     Tcl_IncrRefCount(part1Ptr);
  1000.     result = ObjMakeUpvar(interp, framePtr, part1Ptr, part2, 0,
  1001.     localName, flags, -1);
  1002.     TclDecrRefCount(part1Ptr);
  1003.     return result;
  1004. }
  1005. /*
  1006.  *----------------------------------------------------------------------
  1007.  *
  1008.  * Tcl_GetVariableFullName --
  1009.  *
  1010.  * Given a Tcl_Var token returned by Tcl_FindNamespaceVar, this
  1011.  * procedure appends to an object the namespace variable's full
  1012.  * name, qualified by a sequence of parent namespace names.
  1013.  *
  1014.  * Results:
  1015.  *      None.
  1016.  *
  1017.  * Side effects:
  1018.  *      The variable's fully-qualified name is appended to the string
  1019.  * representation of objPtr.
  1020.  *
  1021.  *----------------------------------------------------------------------
  1022.  */
  1023. void
  1024. Tcl_GetVariableFullName(interp, variable, objPtr)
  1025.     Tcl_Interp *interp;         /* Interpreter containing the variable. */
  1026.     Tcl_Var variable; /* Token for the variable returned by a
  1027.  * previous call to Tcl_FindNamespaceVar. */
  1028.     Tcl_Obj *objPtr; /* Points to the object onto which the
  1029.  * variable's full name is appended. */
  1030. {
  1031.     Interp *iPtr = (Interp *) interp;
  1032.     register Var *varPtr = (Var *) variable;
  1033.     char *name;
  1034.     /*
  1035.      * Add the full name of the containing namespace (if any), followed by
  1036.      * the "::" separator, then the variable name.
  1037.      */
  1038.     if (varPtr != NULL) {
  1039. if (!TclIsVarArrayElement(varPtr)) {
  1040.     if (varPtr->nsPtr != NULL) {
  1041. Tcl_AppendToObj(objPtr, varPtr->nsPtr->fullName, -1);
  1042. if (varPtr->nsPtr != iPtr->globalNsPtr) {
  1043.     Tcl_AppendToObj(objPtr, "::", 2);
  1044. }
  1045.     }
  1046.     if (varPtr->name != NULL) {
  1047. Tcl_AppendToObj(objPtr, varPtr->name, -1);
  1048.     } else if (varPtr->hPtr != NULL) {
  1049. name = Tcl_GetHashKey(varPtr->hPtr->tablePtr, varPtr->hPtr);
  1050. Tcl_AppendToObj(objPtr, name, -1);
  1051.     }
  1052. }
  1053.     }
  1054. }
  1055. /*
  1056.  *----------------------------------------------------------------------
  1057.  *
  1058.  * Tcl_GlobalObjCmd --
  1059.  *
  1060.  * This object-based procedure is invoked to process the "global" Tcl
  1061.  * command. See the user documentation for details on what it does.
  1062.  *
  1063.  * Results:
  1064.  * A standard Tcl object result value.
  1065.  *
  1066.  * Side effects:
  1067.  * See the user documentation.
  1068.  *
  1069.  *----------------------------------------------------------------------
  1070.  */
  1071. int
  1072. Tcl_GlobalObjCmd(dummy, interp, objc, objv)
  1073.     ClientData dummy; /* Not used. */
  1074.     Tcl_Interp *interp; /* Current interpreter. */
  1075.     int objc; /* Number of arguments. */
  1076.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  1077. {
  1078.     Interp *iPtr = (Interp *) interp;
  1079.     register Tcl_Obj *objPtr;
  1080.     char *varName;
  1081.     register char *tail;
  1082.     int result, i;
  1083.     if (objc < 2) {
  1084. Tcl_WrongNumArgs(interp, 1, objv, "varName ?varName ...?");
  1085. return TCL_ERROR;
  1086.     }
  1087.     /*
  1088.      * If we are not executing inside a Tcl procedure, just return.
  1089.      */
  1090.     
  1091.     if ((iPtr->varFramePtr == NULL)
  1092.     || !iPtr->varFramePtr->isProcCallFrame) {
  1093. return TCL_OK;
  1094.     }
  1095.     for (i = 1;  i < objc;  i++) {
  1096. /*
  1097.  * Make a local variable linked to its counterpart in the global ::
  1098.  * namespace.
  1099.  */
  1100. objPtr = objv[i];
  1101. varName = TclGetString(objPtr);
  1102. /*
  1103.  * The variable name might have a scope qualifier, but the name for
  1104.          * the local "link" variable must be the simple name at the tail.
  1105.  */
  1106. for (tail = varName;  *tail != '';  tail++) {
  1107.     /* empty body */
  1108. }
  1109.         while ((tail > varName) && ((*tail != ':') || (*(tail-1) != ':'))) {
  1110.             tail--;
  1111. }
  1112.         if ((*tail == ':') && (tail > varName)) {
  1113.             tail++;
  1114. }
  1115. /*
  1116.  * Link to the variable "varName" in the global :: namespace.
  1117.  */
  1118. result = ObjMakeUpvar(interp, (CallFrame *) NULL,
  1119. objPtr, NULL, /*otherFlags*/ TCL_GLOBAL_ONLY,
  1120.         /*myName*/ tail, /*myFlags*/ 0, -1);
  1121. if (result != TCL_OK) {
  1122.     return result;
  1123. }
  1124.     }
  1125.     return TCL_OK;
  1126. }
  1127. /*
  1128.  *----------------------------------------------------------------------
  1129.  *
  1130.  * Tcl_VariableObjCmd --
  1131.  *
  1132.  * Invoked to implement the "variable" command that creates one or more
  1133.  * global variables. Handles the following syntax:
  1134.  *
  1135.  *     variable ?name value...? name ?value?
  1136.  *
  1137.  * One or more variables can be created. The variables are initialized
  1138.  * with the specified values. The value for the last variable is
  1139.  * optional.
  1140.  *
  1141.  * If the variable does not exist, it is created and given the optional
  1142.  * value. If it already exists, it is simply set to the optional
  1143.  * value. Normally, "name" is an unqualified name, so it is created in
  1144.  * the current namespace. If it includes namespace qualifiers, it can
  1145.  * be created in another namespace.
  1146.  *
  1147.  * If the variable command is executed inside a Tcl procedure, it
  1148.  * creates a local variable linked to the newly-created namespace
  1149.  * variable.
  1150.  *
  1151.  * Results:
  1152.  * Returns TCL_OK if the variable is found or created. Returns
  1153.  * TCL_ERROR if anything goes wrong.
  1154.  *
  1155.  * Side effects:
  1156.  * If anything goes wrong, this procedure returns an error message
  1157.  * as the result in the interpreter's result object.
  1158.  *
  1159.  *----------------------------------------------------------------------
  1160.  */
  1161. int
  1162. Tcl_VariableObjCmd(dummy, interp, objc, objv)
  1163.     ClientData dummy; /* Not used. */
  1164.     Tcl_Interp *interp; /* Current interpreter. */
  1165.     int objc; /* Number of arguments. */
  1166.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  1167. {
  1168.     Interp *iPtr = (Interp *) interp;
  1169.     char *varName, *tail, *cp;
  1170.     Var *varPtr, *arrayPtr;
  1171.     Tcl_Obj *varValuePtr;
  1172.     int i, result;
  1173.     Tcl_Obj *varNamePtr;
  1174.     if (objc < 2) {
  1175. Tcl_WrongNumArgs(interp, 1, objv, "?name value...? name ?value?");
  1176. return TCL_ERROR;
  1177.     }
  1178.     for (i = 1;  i < objc;  i = i+2) {
  1179. /*
  1180.  * Look up each variable in the current namespace context, creating
  1181.  * it if necessary.
  1182.  */
  1183. varNamePtr = objv[i];
  1184. varName = TclGetString(varNamePtr);
  1185. varPtr = TclObjLookupVar(interp, varNamePtr, NULL,
  1186.                 (TCL_NAMESPACE_ONLY | TCL_LEAVE_ERR_MSG), "define",
  1187.                 /*createPart1*/ 1, /*createPart2*/ 0, &arrayPtr);
  1188.         if (arrayPtr != NULL) {
  1189.             /*
  1190.              * Variable cannot be an element in an array.  If arrayPtr is
  1191.              * non-null, it is, so throw up an error and return.
  1192.              */
  1193.             VarErrMsg(interp, varName, NULL, "define", isArrayElement);
  1194.             return TCL_ERROR;
  1195.         }
  1196. if (varPtr == NULL) {
  1197.     return TCL_ERROR;
  1198. }
  1199. /*
  1200.  * Mark the variable as a namespace variable and increment its 
  1201.  * reference count so that it will persist until its namespace is
  1202.  * destroyed or until the variable is unset.
  1203.  */
  1204. if (!(varPtr->flags & VAR_NAMESPACE_VAR)) {
  1205.     varPtr->flags |= VAR_NAMESPACE_VAR;
  1206.     varPtr->refCount++;
  1207. }
  1208. /*
  1209.  * If a value was specified, set the variable to that value.
  1210.  * Otherwise, if the variable is new, leave it undefined.
  1211.  * (If the variable already exists and no value was specified,
  1212.  * leave its value unchanged; just create the local link if
  1213.  * we're in a Tcl procedure).
  1214.  */
  1215. if (i+1 < objc) { /* a value was specified */
  1216.     varValuePtr = TclPtrSetVar(interp, varPtr, arrayPtr, varName, NULL,
  1217.     objv[i+1], (TCL_NAMESPACE_ONLY | TCL_LEAVE_ERR_MSG));
  1218.     if (varValuePtr == NULL) {
  1219. return TCL_ERROR;
  1220.     }
  1221. }
  1222. /*
  1223.  * If we are executing inside a Tcl procedure, create a local
  1224.  * variable linked to the new namespace variable "varName".
  1225.  */
  1226. if ((iPtr->varFramePtr != NULL)
  1227.         && iPtr->varFramePtr->isProcCallFrame) {
  1228.     /*
  1229.      * varName might have a scope qualifier, but the name for the
  1230.      * local "link" variable must be the simple name at the tail.
  1231.      *
  1232.      * Locate tail in one pass: drop any prefix after two *or more*
  1233.      * consecutive ":" characters).
  1234.      */
  1235.     for (tail = cp = varName;  *cp != ''; ) {
  1236. if (*cp++ == ':') {
  1237.     while (*cp == ':') {
  1238. tail = ++cp;
  1239.     }
  1240. }
  1241.     }
  1242.     
  1243.     /*
  1244.      * Create a local link "tail" to the variable "varName" in the
  1245.      * current namespace.
  1246.      */
  1247.     
  1248.     result = ObjMakeUpvar(interp, (CallFrame *) NULL,
  1249.     /*otherP1*/ varNamePtr, /*otherP2*/ NULL,
  1250.                     /*otherFlags*/ TCL_NAMESPACE_ONLY,
  1251.     /*myName*/ tail, /*myFlags*/ 0, -1);
  1252.     if (result != TCL_OK) {
  1253. return result;
  1254.     }
  1255. }
  1256.     }
  1257.     return TCL_OK;
  1258. }
  1259. /*
  1260.  *----------------------------------------------------------------------
  1261.  *
  1262.  * Tcl_UpvarObjCmd --
  1263.  *
  1264.  * This object-based procedure is invoked to process the "upvar"
  1265.  * Tcl command. See the user documentation for details on what it does.
  1266.  *
  1267.  * Results:
  1268.  * A standard Tcl object result value.
  1269.  *
  1270.  * Side effects:
  1271.  * See the user documentation.
  1272.  *
  1273.  *----------------------------------------------------------------------
  1274.  */
  1275. /* ARGSUSED */
  1276. int
  1277. Tcl_UpvarObjCmd(dummy, interp, objc, objv)
  1278.     ClientData dummy; /* Not used. */
  1279.     Tcl_Interp *interp; /* Current interpreter. */
  1280.     int objc; /* Number of arguments. */
  1281.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  1282. {
  1283.     CallFrame *framePtr;
  1284.     char *frameSpec, *localName;
  1285.     int result;
  1286.     if (objc < 3) {
  1287. upvarSyntax:
  1288. Tcl_WrongNumArgs(interp, 1, objv,
  1289. "?level? otherVar localVar ?otherVar localVar ...?");
  1290. return TCL_ERROR;
  1291.     }
  1292.     /*
  1293.      * Find the call frame containing each of the "other variables" to be
  1294.      * linked to. 
  1295.      */
  1296.     frameSpec = TclGetString(objv[1]);
  1297.     result = TclGetFrame(interp, frameSpec, &framePtr);
  1298.     if (result == -1) {
  1299. return TCL_ERROR;
  1300.     }
  1301.     objc -= result+1;
  1302.     if ((objc & 1) != 0) {
  1303. goto upvarSyntax;
  1304.     }
  1305.     objv += result+1;
  1306.     /*
  1307.      * Iterate over each (other variable, local variable) pair.
  1308.      * Divide the other variable name into two parts, then call
  1309.      * MakeUpvar to do all the work of linking it to the local variable.
  1310.      */
  1311.     for ( ;  objc > 0;  objc -= 2, objv += 2) {
  1312. localName = TclGetString(objv[1]);
  1313. result = ObjMakeUpvar(interp, framePtr, /* othervarName */ objv[0],
  1314. NULL, 0, /* myVarName */ localName, /*flags*/ 0, -1);
  1315. if (result != TCL_OK) {
  1316.     return TCL_ERROR;
  1317. }
  1318.     }
  1319.     return TCL_OK;
  1320. }
  1321. /*
  1322.  *----------------------------------------------------------------------
  1323.  *
  1324.  * DisposeTraceResult--
  1325.  *
  1326.  * This procedure is called to dispose of the result returned from
  1327.  * a trace procedure.  The disposal method appropriate to the type
  1328.  * of result is determined by flags.
  1329.  *
  1330.  * Results:
  1331.  * None.
  1332.  *
  1333.  * Side effects:
  1334.  * The memory allocated for the trace result may be freed.
  1335.  *
  1336.  *----------------------------------------------------------------------
  1337.  */
  1338. static void
  1339. DisposeTraceResult(flags, result)
  1340.     int flags; /* Indicates type of result to determine
  1341.  * proper disposal method */
  1342.     char *result; /* The result returned from a trace
  1343.  * procedure to be disposed */
  1344. {
  1345.     if (flags & TCL_TRACE_RESULT_DYNAMIC) {
  1346. ckfree(result);
  1347.     } else if (flags & TCL_TRACE_RESULT_OBJECT) {
  1348. Tcl_DecrRefCount((Tcl_Obj *) result);
  1349.     }
  1350. }
  1351. /*
  1352.  *----------------------------------------------------------------------
  1353.  *
  1354.  * CallVarTraces --
  1355.  *
  1356.  * This procedure is invoked to find and invoke relevant
  1357.  * trace procedures associated with a particular operation on
  1358.  * a variable. This procedure invokes traces both on the
  1359.  * variable and on its containing array (where relevant).
  1360.  *
  1361.  * Results:
  1362.  *      Returns TCL_OK to indicate normal operation.  Returns TCL_ERROR
  1363.  *      if invocation of a trace procedure indicated an error.  When
  1364.  *      TCL_ERROR is returned and leaveErrMsg is true, then the
  1365.  *      ::errorInfo variable of iPtr has information about the error
  1366.  *      appended to it.
  1367.  *
  1368.  * Side effects:
  1369.  * Almost anything can happen, depending on trace; this procedure
  1370.  * itself doesn't have any side effects.
  1371.  *
  1372.  *----------------------------------------------------------------------
  1373.  */
  1374. static int
  1375. CallVarTraces(iPtr, arrayPtr, varPtr, part1, part2, flags, leaveErrMsg)
  1376.     Interp *iPtr; /* Interpreter containing variable. */
  1377.     register Var *arrayPtr; /* Pointer to array variable that contains
  1378.  * the variable, or NULL if the variable
  1379.  * isn't an element of an array. */
  1380.     Var *varPtr; /* Variable whose traces are to be
  1381.  * invoked. */
  1382.     CONST char *part1;
  1383.     CONST char *part2; /* Variable's two-part name. */
  1384.     int flags; /* Flags passed to trace procedures:
  1385.  * indicates what's happening to variable,
  1386.  * plus other stuff like TCL_GLOBAL_ONLY,
  1387.  * or TCL_NAMESPACE_ONLY. */
  1388.     CONST int leaveErrMsg; /* If true, and one of the traces indicates an
  1389.  * error, then leave an error message and stack
  1390.  * trace information in *iPTr. */
  1391. {
  1392.     register VarTrace *tracePtr;
  1393.     ActiveVarTrace active;
  1394.     char *result;
  1395.     CONST char *openParen, *p;
  1396.     Tcl_DString nameCopy;
  1397.     int copiedName;
  1398.     int code = TCL_OK;
  1399.     int disposeFlags = 0;
  1400.     int saveErrFlags = iPtr->flags 
  1401.     & (ERR_IN_PROGRESS | ERR_ALREADY_LOGGED | ERROR_CODE_SET);
  1402.     /*
  1403.      * If there are already similar trace procedures active for the
  1404.      * variable, don't call them again.
  1405.      */
  1406.     if (varPtr->flags & VAR_TRACE_ACTIVE) {
  1407. return code;
  1408.     }
  1409.     varPtr->flags |= VAR_TRACE_ACTIVE;
  1410.     varPtr->refCount++;
  1411.     if (arrayPtr != NULL) {
  1412. arrayPtr->refCount++;
  1413.     }
  1414.     /*
  1415.      * If the variable name hasn't been parsed into array name and
  1416.      * element, do it here.  If there really is an array element,
  1417.      * make a copy of the original name so that NULLs can be
  1418.      * inserted into it to separate the names (can't modify the name
  1419.      * string in place, because the string might get used by the
  1420.      * callbacks we invoke).
  1421.      */
  1422.     copiedName = 0;
  1423.     if (part2 == NULL) {
  1424. for (p = part1; *p ; p++) {
  1425.     if (*p == '(') {
  1426. openParen = p;
  1427. do {
  1428.     p++;
  1429. } while (*p != '');
  1430. p--;
  1431. if (*p == ')') {
  1432.     int offset = (openParen - part1);
  1433.     char *newPart1;
  1434.     Tcl_DStringInit(&nameCopy);
  1435.     Tcl_DStringAppend(&nameCopy, part1, (p-part1));
  1436.     newPart1 = Tcl_DStringValue(&nameCopy);
  1437.     newPart1[offset] = 0;
  1438.     part1 = newPart1;
  1439.     part2 = newPart1 + offset + 1;
  1440.     copiedName = 1;
  1441. }
  1442. break;
  1443.     }
  1444. }
  1445.     }
  1446.     /*
  1447.      * Invoke traces on the array containing the variable, if relevant.
  1448.      */
  1449.     result = NULL;
  1450.     active.nextPtr = iPtr->activeVarTracePtr;
  1451.     iPtr->activeVarTracePtr = &active;
  1452.     Tcl_Preserve((ClientData) iPtr);
  1453.     if (arrayPtr != NULL && !(arrayPtr->flags & VAR_TRACE_ACTIVE)) {
  1454. active.varPtr = arrayPtr;
  1455. for (tracePtr = arrayPtr->tracePtr;  tracePtr != NULL;
  1456.      tracePtr = active.nextTracePtr) {
  1457.     active.nextTracePtr = tracePtr->nextPtr;
  1458.     if (!(tracePtr->flags & flags)) {
  1459. continue;
  1460.     }
  1461.     Tcl_Preserve((ClientData) tracePtr);
  1462.     if (Tcl_InterpDeleted((Tcl_Interp *)iPtr)) {
  1463. flags |= TCL_INTERP_DESTROYED;
  1464.     }
  1465.     result = (*tracePtr->traceProc)(tracePtr->clientData,
  1466.     (Tcl_Interp *) iPtr, part1, part2, flags);
  1467.     if (result != NULL) {
  1468. if (flags & TCL_TRACE_UNSETS) {
  1469.     /* Ignore errors in unset traces */
  1470.     DisposeTraceResult(tracePtr->flags, result);
  1471. } else {
  1472.             disposeFlags = tracePtr->flags;
  1473.     code = TCL_ERROR;
  1474. }
  1475.     }
  1476.     Tcl_Release((ClientData) tracePtr);
  1477.     if (code == TCL_ERROR) {
  1478. goto done;
  1479.     }
  1480. }
  1481.     }
  1482.     /*
  1483.      * Invoke traces on the variable itself.
  1484.      */
  1485.     if (flags & TCL_TRACE_UNSETS) {
  1486. flags |= TCL_TRACE_DESTROYED;
  1487.     }
  1488.     active.varPtr = varPtr;
  1489.     for (tracePtr = varPtr->tracePtr; tracePtr != NULL;
  1490.  tracePtr = active.nextTracePtr) {
  1491. active.nextTracePtr = tracePtr->nextPtr;
  1492. if (!(tracePtr->flags & flags)) {
  1493.     continue;
  1494. }
  1495. Tcl_Preserve((ClientData) tracePtr);
  1496. if (Tcl_InterpDeleted((Tcl_Interp *)iPtr)) {
  1497.     flags |= TCL_INTERP_DESTROYED;
  1498. }
  1499. result = (*tracePtr->traceProc)(tracePtr->clientData,
  1500. (Tcl_Interp *) iPtr, part1, part2, flags);
  1501. if (result != NULL) {
  1502.     if (flags & TCL_TRACE_UNSETS) {
  1503. /* Ignore errors in unset traces */
  1504. DisposeTraceResult(tracePtr->flags, result);
  1505.     } else {
  1506. disposeFlags = tracePtr->flags;
  1507. code = TCL_ERROR;
  1508.     }
  1509. }
  1510. Tcl_Release((ClientData) tracePtr);
  1511. if (code == TCL_ERROR) {
  1512.     goto done;
  1513. }
  1514.     }
  1515.     /*
  1516.      * Restore the variable's flags, remove the record of our active
  1517.      * traces, and then return.
  1518.      */
  1519.     done:
  1520.     if (code == TCL_OK) {
  1521. iPtr->flags |= saveErrFlags;
  1522.     }
  1523.     if (code == TCL_ERROR) {
  1524. if (leaveErrMsg) {
  1525.     CONST char *type = "";
  1526.     switch (flags&(TCL_TRACE_READS|TCL_TRACE_WRITES|TCL_TRACE_ARRAY)) {
  1527. case TCL_TRACE_READS: {
  1528.     type = "read";
  1529.     break;
  1530. }
  1531. case TCL_TRACE_WRITES: {
  1532.     type = "set";
  1533.     break;
  1534. }
  1535. case TCL_TRACE_ARRAY: {
  1536.     type = "trace array";
  1537.     break;
  1538. }
  1539.     }
  1540.     if (disposeFlags & TCL_TRACE_RESULT_OBJECT) {
  1541. VarErrMsg((Tcl_Interp *) iPtr, part1, part2, type,
  1542. Tcl_GetString((Tcl_Obj *) result));
  1543.     } else {
  1544. VarErrMsg((Tcl_Interp *) iPtr, part1, part2, type, result);
  1545.     }
  1546. }
  1547. DisposeTraceResult(disposeFlags,result);
  1548.     }
  1549.     if (arrayPtr != NULL) {
  1550. arrayPtr->refCount--;
  1551.     }
  1552.     if (copiedName) {
  1553. Tcl_DStringFree(&nameCopy);
  1554.     }
  1555.     varPtr->flags &= ~VAR_TRACE_ACTIVE;
  1556.     varPtr->refCount--;
  1557.     iPtr->activeVarTracePtr = active.nextPtr;
  1558.     Tcl_Release((ClientData) iPtr);
  1559.     return code;
  1560. }
  1561. /*
  1562.  *----------------------------------------------------------------------
  1563.  *
  1564.  * NewVar --
  1565.  *
  1566.  * Create a new heap-allocated variable that will eventually be
  1567.  * entered into a hashtable.
  1568.  *
  1569.  * Results:
  1570.  * The return value is a pointer to the new variable structure. It is
  1571.  * marked as a scalar variable (and not a link or array variable). Its
  1572.  * value initially is NULL. The variable is not part of any hash table
  1573.  * yet. Since it will be in a hashtable and not in a call frame, its
  1574.  * name field is set NULL. It is initially marked as undefined.
  1575.  *
  1576.  * Side effects:
  1577.  * Storage gets allocated.
  1578.  *
  1579.  *----------------------------------------------------------------------
  1580.  */
  1581. static Var *
  1582. NewVar()
  1583. {
  1584.     register Var *varPtr;
  1585.     varPtr = (Var *) ckalloc(sizeof(Var));
  1586.     varPtr->value.objPtr = NULL;
  1587.     varPtr->name = NULL;
  1588.     varPtr->nsPtr = NULL;
  1589.     varPtr->hPtr = NULL;
  1590.     varPtr->refCount = 0;
  1591.     varPtr->tracePtr = NULL;
  1592.     varPtr->searchPtr = NULL;
  1593.     varPtr->flags = (VAR_SCALAR | VAR_UNDEFINED | VAR_IN_HASHTABLE);
  1594.     return varPtr;
  1595. }
  1596. /*
  1597.  *----------------------------------------------------------------------
  1598.  *
  1599.  * SetArraySearchObj --
  1600.  *
  1601.  * This function converts the given tcl object into one that
  1602.  * has the "array search" internal type.
  1603.  *
  1604.  * Results:
  1605.  * TCL_OK if the conversion succeeded, and TCL_ERROR if it failed
  1606.  * (when an error message will be placed in the interpreter's
  1607.  * result.)
  1608.  *
  1609.  * Side effects:
  1610.  * Updates the internal type and representation of the object to
  1611.  * make this an array-search object.  See the tclArraySearchType
  1612.  * declaration above for details of the internal representation.
  1613.  *
  1614.  *----------------------------------------------------------------------
  1615.  */
  1616. static int
  1617. SetArraySearchObj(interp, objPtr)
  1618.     Tcl_Interp *interp;
  1619.     Tcl_Obj *objPtr;
  1620. {
  1621.     char *string;
  1622.     char *end;
  1623.     int id;
  1624.     size_t offset;
  1625.     /*
  1626.      * Get the string representation. Make it up-to-date if necessary.
  1627.      */
  1628.     string = Tcl_GetString(objPtr);
  1629.     /*
  1630.      * Parse the id into the three parts separated by dashes.
  1631.      */
  1632.     if ((string[0] != 's') || (string[1] != '-')) {
  1633. syntax:
  1634. Tcl_AppendResult(interp, "illegal search identifier "", string,
  1635. """, (char *) NULL);
  1636. return TCL_ERROR;
  1637.     }
  1638.     id = strtoul(string+2, &end, 10);
  1639.     if ((end == (string+2)) || (*end != '-')) {
  1640. goto syntax;
  1641.     }
  1642.     /*
  1643.      * Can't perform value check in this context, so place reference
  1644.      * to place in string to use for the check in the object instead.
  1645.      */
  1646.     end++;
  1647.     offset = end - string;
  1648.     if (objPtr->typePtr != NULL && objPtr->typePtr->freeIntRepProc != NULL) {
  1649. objPtr->typePtr->freeIntRepProc(objPtr);
  1650.     }
  1651.     objPtr->typePtr = &tclArraySearchType;
  1652.     objPtr->internalRep.twoPtrValue.ptr1 = (VOID *)(((char *)NULL)+id);
  1653.     objPtr->internalRep.twoPtrValue.ptr2 = (VOID *)(((char *)NULL)+offset);
  1654.     return TCL_OK;
  1655. }
  1656. /*
  1657.  *----------------------------------------------------------------------
  1658.  *
  1659.  * ParseSearchId --
  1660.  *
  1661.  * This procedure translates from a tcl object to a pointer to an
  1662.  * active array search (if there is one that matches the string).
  1663.  *
  1664.  * Results:
  1665.  * The return value is a pointer to the array search indicated
  1666.  * by string, or NULL if there isn't one.  If NULL is returned,
  1667.  * the interp's result contains an error message.
  1668.  *
  1669.  * Side effects:
  1670.  * The tcl object might have its internal type and representation
  1671.  * modified.
  1672.  *
  1673.  *----------------------------------------------------------------------
  1674.  */
  1675. static ArraySearch *
  1676. ParseSearchId(interp, varPtr, varName, handleObj)
  1677.     Tcl_Interp *interp; /* Interpreter containing variable. */
  1678.     CONST Var *varPtr; /* Array variable search is for. */
  1679.     CONST char *varName; /* Name of array variable that search is
  1680.  * supposed to be for. */
  1681.     Tcl_Obj *handleObj; /* Object containing id of search. Must have
  1682.  * form "search-num-var" where "num" is a
  1683.  * decimal number and "var" is a variable
  1684.  * name. */
  1685. {
  1686.     register char *string;
  1687.     register size_t offset;
  1688.     int id;
  1689.     ArraySearch *searchPtr;
  1690.     /*
  1691.      * Parse the id.
  1692.      */
  1693.     if (Tcl_ConvertToType(interp, handleObj, &tclArraySearchType) != TCL_OK) {
  1694. return NULL;
  1695.     }
  1696.     /*
  1697.      * Cast is safe, since always came from an int in the first place.
  1698.      */
  1699.     id = (int)(((char*)handleObj->internalRep.twoPtrValue.ptr1) -
  1700.        ((char*)NULL));
  1701.     string = Tcl_GetString(handleObj);
  1702.     offset = (((char*)handleObj->internalRep.twoPtrValue.ptr2) -
  1703.       ((char*)NULL));
  1704.     /*
  1705.      * This test cannot be placed inside the Tcl_Obj machinery, since
  1706.      * it is dependent on the variable context.
  1707.      */
  1708.     if (strcmp(string+offset, varName) != 0) {
  1709. Tcl_AppendResult(interp, "search identifier "", string,
  1710. "" isn't for variable "", varName, """, (char *) NULL);
  1711. return NULL;
  1712.     }
  1713.     /*
  1714.      * Search through the list of active searches on the interpreter
  1715.      * to see if the desired one exists.
  1716.      *
  1717.      * Note that we cannot store the searchPtr directly in the Tcl_Obj
  1718.      * as that would run into trouble when DeleteSearches() was called
  1719.      * so we must scan this list every time.
  1720.      */
  1721.     for (searchPtr = varPtr->searchPtr; searchPtr != NULL;
  1722.  searchPtr = searchPtr->nextPtr) {
  1723. if (searchPtr->id == id) {
  1724.     return searchPtr;
  1725. }
  1726.     }
  1727.     Tcl_AppendResult(interp, "couldn't find search "", string, """,
  1728.     (char *) NULL);
  1729.     return NULL;
  1730. }
  1731. /*
  1732.  *----------------------------------------------------------------------
  1733.  *
  1734.  * DeleteSearches --
  1735.  *
  1736.  * This procedure is called to free up all of the searches
  1737.  * associated with an array variable.
  1738.  *
  1739.  * Results:
  1740.  * None.
  1741.  *
  1742.  * Side effects:
  1743.  * Memory is released to the storage allocator.
  1744.  *
  1745.  *----------------------------------------------------------------------
  1746.  */
  1747. static void
  1748. DeleteSearches(arrayVarPtr)
  1749.     register Var *arrayVarPtr; /* Variable whose searches are
  1750.  * to be deleted. */
  1751. {
  1752.     ArraySearch *searchPtr;
  1753.     while (arrayVarPtr->searchPtr != NULL) {
  1754. searchPtr = arrayVarPtr->searchPtr;
  1755. arrayVarPtr->searchPtr = searchPtr->nextPtr;
  1756. ckfree((char *) searchPtr);
  1757.     }
  1758. }
  1759. /*
  1760.  *----------------------------------------------------------------------
  1761.  *
  1762.  * TclDeleteNamespaceVars --
  1763.  *
  1764.  * This procedure is called to recycle all the storage space
  1765.  * associated with a namespace's table of variables. 
  1766.  *
  1767.  * Results:
  1768.  * None.
  1769.  *
  1770.  * Side effects:
  1771.  * Variables are deleted and trace procedures are invoked, if
  1772.  * any are declared.
  1773.  *
  1774.  *----------------------------------------------------------------------
  1775.  */
  1776. void
  1777. TclDeleteNamespaceVars(nsPtr)
  1778.     Namespace *nsPtr;
  1779. {
  1780.     Tcl_HashTable *tablePtr = &nsPtr->varTable;
  1781.     Tcl_Interp *interp = nsPtr->interp;
  1782.     Interp *iPtr = (Interp *)interp;
  1783.     Tcl_HashSearch search;
  1784.     Tcl_HashEntry *hPtr;
  1785.     int flags = 0;
  1786.     Namespace *currNsPtr = (Namespace *) Tcl_GetCurrentNamespace(interp);
  1787.     /*
  1788.      * Determine what flags to pass to the trace callback procedures.
  1789.      */
  1790.     if (nsPtr == iPtr->globalNsPtr) {
  1791. flags = TCL_GLOBAL_ONLY;
  1792.     } else if (nsPtr == currNsPtr) {
  1793. flags = TCL_NAMESPACE_ONLY;
  1794.     }
  1795.     for (hPtr = Tcl_FirstHashEntry(tablePtr, &search);  hPtr != NULL;
  1796.  hPtr = Tcl_FirstHashEntry(tablePtr, &search)) {
  1797. register Var *varPtr = (Var *) Tcl_GetHashValue(hPtr);
  1798. Tcl_Obj *objPtr = Tcl_NewObj();
  1799. varPtr->refCount++; /* Make sure we get to remove from hash */
  1800. Tcl_IncrRefCount(objPtr); 
  1801. Tcl_GetVariableFullName(interp, (Tcl_Var) varPtr, objPtr);
  1802. UnsetVarStruct(varPtr, NULL, iPtr, Tcl_GetString(objPtr), NULL, flags);
  1803. Tcl_DecrRefCount(objPtr); /* free no longer needed obj */
  1804. varPtr->refCount--;
  1805. /* Remove the variable from the table and force it undefined
  1806.  * in case an unset trace brought it back from the dead */
  1807. Tcl_DeleteHashEntry(hPtr);
  1808. varPtr->hPtr = NULL;
  1809. TclSetVarUndefined(varPtr);
  1810. TclSetVarScalar(varPtr);
  1811. while (varPtr->tracePtr != NULL) {
  1812.     VarTrace *tracePtr = varPtr->tracePtr;
  1813.     varPtr->tracePtr = tracePtr->nextPtr;
  1814.     Tcl_EventuallyFree((ClientData) tracePtr, TCL_DYNAMIC);
  1815. }
  1816. CleanupVar(varPtr, NULL);
  1817.     }
  1818.     Tcl_DeleteHashTable(tablePtr);
  1819. }
  1820. /*
  1821.  *----------------------------------------------------------------------
  1822.  *
  1823.  * TclDeleteVars --
  1824.  *
  1825.  * This procedure is called to recycle all the storage space
  1826.  * associated with a table of variables. For this procedure
  1827.  * to work correctly, it must not be possible for any of the
  1828.  * variables in the table to be accessed from Tcl commands
  1829.  * (e.g. from trace procedures).
  1830.  *
  1831.  * Results:
  1832.  * None.
  1833.  *
  1834.  * Side effects:
  1835.  * Variables are deleted and trace procedures are invoked, if
  1836.  * any are declared.
  1837.  *
  1838.  *----------------------------------------------------------------------
  1839.  */
  1840. void
  1841. TclDeleteVars(iPtr, tablePtr)
  1842.     Interp *iPtr; /* Interpreter to which variables belong. */
  1843.     Tcl_HashTable *tablePtr; /* Hash table containing variables to
  1844.  * delete. */
  1845. {
  1846.     Tcl_Interp *interp = (Tcl_Interp *) iPtr;
  1847.     Tcl_HashSearch search;
  1848.     Tcl_HashEntry *hPtr;
  1849.     register Var *varPtr;
  1850.     Var *linkPtr;
  1851.     int flags;
  1852.     ActiveVarTrace *activePtr;
  1853.     Tcl_Obj *objPtr;
  1854.     Namespace *currNsPtr = (Namespace *) Tcl_GetCurrentNamespace(interp);
  1855.     /*
  1856.      * Determine what flags to pass to the trace callback procedures.
  1857.      */
  1858.     flags = TCL_TRACE_UNSETS;
  1859.     if (tablePtr == &iPtr->globalNsPtr->varTable) {
  1860. flags |= TCL_GLOBAL_ONLY;
  1861.     } else if (tablePtr == &currNsPtr->varTable) {
  1862. flags |= TCL_NAMESPACE_ONLY;
  1863.     }
  1864.     for (hPtr = Tcl_FirstHashEntry(tablePtr, &search);  hPtr != NULL;
  1865.  hPtr = Tcl_NextHashEntry(&search)) {
  1866. varPtr = (Var *) Tcl_GetHashValue(hPtr);
  1867. /*
  1868.  * For global/upvar variables referenced in procedures, decrement
  1869.  * the reference count on the variable referred to, and free
  1870.  * the referenced variable if it's no longer needed. Don't delete
  1871.  * the hash entry for the other variable if it's in the same table
  1872.  * as us: this will happen automatically later on.
  1873.  */
  1874. if (TclIsVarLink(varPtr)) {
  1875.     linkPtr = varPtr->value.linkPtr;
  1876.     linkPtr->refCount--;
  1877.     if ((linkPtr->refCount == 0) && TclIsVarUndefined(linkPtr)
  1878.     && (linkPtr->tracePtr == NULL)
  1879.     && (linkPtr->flags & VAR_IN_HASHTABLE)) {
  1880. if (linkPtr->hPtr == NULL) {
  1881.     ckfree((char *) linkPtr);
  1882. } else if (linkPtr->hPtr->tablePtr != tablePtr) {
  1883.     Tcl_DeleteHashEntry(linkPtr->hPtr);
  1884.     ckfree((char *) linkPtr);
  1885. }
  1886.     }
  1887. }
  1888. /*
  1889.  * Invoke traces on the variable that is being deleted, then
  1890.  * free up the variable's space (no need to free the hash entry
  1891.  * here, unless we're dealing with a global variable: the
  1892.  * hash entries will be deleted automatically when the whole
  1893.  * table is deleted). Note that we give CallVarTraces the variable's
  1894.  * fully-qualified name so that any called trace procedures can
  1895.  * refer to these variables being deleted.
  1896.  */
  1897. if (varPtr->tracePtr != NULL) {
  1898.     objPtr = Tcl_NewObj();
  1899.     Tcl_IncrRefCount(objPtr); /* until done with traces */
  1900.     Tcl_GetVariableFullName(interp, (Tcl_Var) varPtr, objPtr);
  1901.     CallVarTraces(iPtr, (Var *) NULL, varPtr, Tcl_GetString(objPtr),
  1902.     NULL, flags, /* leaveErrMsg */ 0);
  1903.     Tcl_DecrRefCount(objPtr); /* free no longer needed obj */
  1904.     while (varPtr->tracePtr != NULL) {
  1905. VarTrace *tracePtr = varPtr->tracePtr;
  1906. varPtr->tracePtr = tracePtr->nextPtr;
  1907. Tcl_EventuallyFree((ClientData) tracePtr, TCL_DYNAMIC);
  1908.     }
  1909.     for (activePtr = iPtr->activeVarTracePtr; activePtr != NULL;
  1910.  activePtr = activePtr->nextPtr) {
  1911. if (activePtr->varPtr == varPtr) {
  1912.     activePtr->nextTracePtr = NULL;
  1913. }
  1914.     }
  1915. }
  1916.     
  1917. if (TclIsVarArray(varPtr)) {
  1918.     DeleteArray(iPtr, Tcl_GetHashKey(tablePtr, hPtr), varPtr,
  1919.             flags);
  1920.     varPtr->value.tablePtr = NULL;
  1921. }
  1922. if (TclIsVarScalar(varPtr) && (varPtr->value.objPtr != NULL)) {
  1923.     objPtr = varPtr->value.objPtr;
  1924.     TclDecrRefCount(objPtr);
  1925.     varPtr->value.objPtr = NULL;
  1926. }
  1927. varPtr->hPtr = NULL;
  1928. varPtr->tracePtr = NULL;
  1929. TclSetVarUndefined(varPtr);
  1930. TclSetVarScalar(varPtr);
  1931. /*
  1932.  * If the variable was a namespace variable, decrement its 
  1933.  * reference count. We are in the process of destroying its
  1934.  * namespace so that namespace will no longer "refer" to the
  1935.  * variable.
  1936.  */
  1937. if (varPtr->flags & VAR_NAMESPACE_VAR) {
  1938.     varPtr->flags &= ~VAR_NAMESPACE_VAR;
  1939.     varPtr->refCount--;
  1940. }
  1941. /*
  1942.  * Recycle the variable's memory space if there aren't any upvar's
  1943.  * pointing to it. If there are upvars to this variable, then the
  1944.  * variable will get freed when the last upvar goes away.
  1945.  */
  1946. if (varPtr->refCount == 0) {
  1947.     ckfree((char *) varPtr); /* this Var must be VAR_IN_HASHTABLE */
  1948. }
  1949.     }
  1950.     Tcl_DeleteHashTable(tablePtr);
  1951. }
  1952. /*
  1953.  *----------------------------------------------------------------------
  1954.  *
  1955.  * TclDeleteCompiledLocalVars --
  1956.  *
  1957.  * This procedure is called to recycle storage space associated with
  1958.  * the compiler-allocated array of local variables in a procedure call
  1959.  * frame. This procedure resembles TclDeleteVars above except that each
  1960.  * variable is stored in a call frame and not a hash table. For this
  1961.  * procedure to work correctly, it must not be possible for any of the
  1962.  * variable in the table to be accessed from Tcl commands (e.g. from
  1963.  * trace procedures).
  1964.  *
  1965.  * Results:
  1966.  * None.
  1967.  *
  1968.  * Side effects:
  1969.  * Variables are deleted and trace procedures are invoked, if
  1970.  * any are declared.
  1971.  *
  1972.  *----------------------------------------------------------------------
  1973.  */
  1974. void
  1975. TclDeleteCompiledLocalVars(iPtr, framePtr)
  1976.     Interp *iPtr; /* Interpreter to which variables belong. */
  1977.     CallFrame *framePtr; /* Procedure call frame containing
  1978.  * compiler-assigned local variables to
  1979.  * delete. */
  1980. {
  1981.     register Var *varPtr;
  1982.     int flags; /* Flags passed to trace procedures. */
  1983.     Var *linkPtr;
  1984.     ActiveVarTrace *activePtr;
  1985.     int numLocals, i;
  1986.     flags = TCL_TRACE_UNSETS;
  1987.     numLocals = framePtr->numCompiledLocals;
  1988.     varPtr = framePtr->compiledLocals;
  1989.     for (i = 0;  i < numLocals;  i++) {
  1990. /*
  1991.  * For global/upvar variables referenced in procedures, decrement
  1992.  * the reference count on the variable referred to, and free
  1993.  * the referenced variable if it's no longer needed. Don't delete
  1994.  * the hash entry for the other variable if it's in the same table
  1995.  * as us: this will happen automatically later on.
  1996.  */
  1997. if (TclIsVarLink(varPtr)) {
  1998.     linkPtr = varPtr->value.linkPtr;
  1999.     linkPtr->refCount--;
  2000.     if ((linkPtr->refCount == 0) && TclIsVarUndefined(linkPtr)
  2001.     && (linkPtr->tracePtr == NULL)
  2002.     && (linkPtr->flags & VAR_IN_HASHTABLE)) {
  2003. if (linkPtr->hPtr == NULL) {
  2004.     ckfree((char *) linkPtr);
  2005. } else {
  2006.     Tcl_DeleteHashEntry(linkPtr->hPtr);
  2007.     ckfree((char *) linkPtr);
  2008. }
  2009.     }
  2010. }
  2011. /*
  2012.  * Invoke traces on the variable that is being deleted. Then delete
  2013.  * the variable's trace records.
  2014.  */
  2015. if (varPtr->tracePtr != NULL) {
  2016.     CallVarTraces(iPtr, (Var *) NULL, varPtr, varPtr->name, NULL,
  2017.     flags, /* leaveErrMsg */ 0);
  2018.     while (varPtr->tracePtr != NULL) {
  2019. VarTrace *tracePtr = varPtr->tracePtr;
  2020. varPtr->tracePtr = tracePtr->nextPtr;
  2021. Tcl_EventuallyFree((ClientData) tracePtr, TCL_DYNAMIC);
  2022.     }
  2023.     for (activePtr = iPtr->activeVarTracePtr; activePtr != NULL;
  2024.  activePtr = activePtr->nextPtr) {
  2025. if (activePtr->varPtr == varPtr) {
  2026.     activePtr->nextTracePtr = NULL;
  2027. }
  2028.     }
  2029. }
  2030.         /*
  2031.  * Now if the variable is an array, delete its element hash table.
  2032.  * Otherwise, if it's a scalar variable, decrement the ref count
  2033.  * of its value.
  2034.  */
  2035.     
  2036. if (TclIsVarArray(varPtr) && (varPtr->value.tablePtr != NULL)) {
  2037.     DeleteArray(iPtr, varPtr->name, varPtr, flags);
  2038. }
  2039. if (TclIsVarScalar(varPtr) && (varPtr->value.objPtr != NULL)) {
  2040.     TclDecrRefCount(varPtr->value.objPtr);
  2041.     varPtr->value.objPtr = NULL;
  2042. }
  2043. varPtr->hPtr = NULL;
  2044. varPtr->tracePtr = NULL;
  2045. TclSetVarUndefined(varPtr);
  2046. TclSetVarScalar(varPtr);
  2047. varPtr++;
  2048.     }
  2049. }
  2050. /*
  2051.  *----------------------------------------------------------------------
  2052.  *
  2053.  * DeleteArray --
  2054.  *
  2055.  * This procedure is called to free up everything in an array
  2056.  * variable.  It's the caller's responsibility to make sure
  2057.  * that the array is no longer accessible before this procedure
  2058.  * is called.
  2059.  *
  2060.  * Results:
  2061.  * None.
  2062.  *
  2063.  * Side effects:
  2064.  * All storage associated with varPtr's array elements is deleted
  2065.  * (including the array's hash table). Deletion trace procedures for
  2066.  * array elements are invoked, then deleted. Any pending traces for
  2067.  * array elements are also deleted.
  2068.  *
  2069.  *----------------------------------------------------------------------
  2070.  */
  2071. static void
  2072. DeleteArray(iPtr, arrayName, varPtr, flags)
  2073.     Interp *iPtr; /* Interpreter containing array. */
  2074.     CONST char *arrayName;         /* Name of array (used for trace
  2075.  * callbacks). */
  2076.     Var *varPtr; /* Pointer to variable structure. */
  2077.     int flags; /* Flags to pass to CallVarTraces:
  2078.  * TCL_TRACE_UNSETS and sometimes
  2079.  * TCL_NAMESPACE_ONLY, or
  2080.  * TCL_GLOBAL_ONLY. */
  2081. {
  2082.     Tcl_HashSearch search;
  2083.     register Tcl_HashEntry *hPtr;
  2084.     register Var *elPtr;
  2085.     ActiveVarTrace *activePtr;
  2086.     Tcl_Obj *objPtr;
  2087.     DeleteSearches(varPtr);
  2088.     for (hPtr = Tcl_FirstHashEntry(varPtr->value.tablePtr, &search);
  2089.  hPtr != NULL;  hPtr = Tcl_NextHashEntry(&search)) {
  2090. elPtr = (Var *) Tcl_GetHashValue(hPtr);
  2091. if (TclIsVarScalar(elPtr) && (elPtr->value.objPtr != NULL)) {
  2092.     objPtr = elPtr->value.objPtr;
  2093.     TclDecrRefCount(objPtr);
  2094.     elPtr->value.objPtr = NULL;
  2095. }
  2096. elPtr->hPtr = NULL;
  2097. if (elPtr->tracePtr != NULL) {
  2098.     elPtr->flags &= ~VAR_TRACE_ACTIVE;
  2099.     CallVarTraces(iPtr, (Var *) NULL, elPtr, arrayName,
  2100.     Tcl_GetHashKey(varPtr->value.tablePtr, hPtr), flags,
  2101.     /* leaveErrMsg */ 0);
  2102.     while (elPtr->tracePtr != NULL) {
  2103. VarTrace *tracePtr = elPtr->tracePtr;
  2104. elPtr->tracePtr = tracePtr->nextPtr;
  2105. Tcl_EventuallyFree((ClientData) tracePtr,TCL_DYNAMIC);
  2106.     }
  2107.     for (activePtr = iPtr->activeVarTracePtr; activePtr != NULL;
  2108.  activePtr = activePtr->nextPtr) {
  2109. if (activePtr->varPtr == elPtr) {
  2110.     activePtr->nextTracePtr = NULL;
  2111. }
  2112.     }
  2113. }
  2114. TclSetVarUndefined(elPtr);
  2115. TclSetVarScalar(elPtr);
  2116. /*
  2117.  * Even though array elements are not supposed to be namespace
  2118.  * variables, some combinations of [upvar] and [variable] may
  2119.  * create such beasts - see [Bug 604239]. This is necessary to
  2120.  * avoid leaking the corresponding Var struct, and is otherwise
  2121.  * harmless. 
  2122.  */
  2123. if (elPtr->flags & VAR_NAMESPACE_VAR) {
  2124.     elPtr->flags &= ~VAR_NAMESPACE_VAR;
  2125.     elPtr->refCount--;
  2126. }
  2127. if (elPtr->refCount == 0) {
  2128.     ckfree((char *) elPtr); /* element Vars are VAR_IN_HASHTABLE */
  2129. }
  2130.     }
  2131.     Tcl_DeleteHashTable(varPtr->value.tablePtr);
  2132.     ckfree((char *) varPtr->value.tablePtr);
  2133. }
  2134. /*
  2135.  *----------------------------------------------------------------------
  2136.  *
  2137.  * CleanupVar --
  2138.  *
  2139.  * This procedure is called when it looks like it may be OK to free up
  2140.  * a variable's storage. If the variable is in a hashtable, its Var
  2141.  * structure and hash table entry will be freed along with those of its
  2142.  * containing array, if any. This procedure is called, for example,
  2143.  * when a trace on a variable deletes a variable.
  2144.  *
  2145.  * Results:
  2146.  * None.
  2147.  *
  2148.  * Side effects:
  2149.  * If the variable (or its containing array) really is dead and in a
  2150.  * hashtable, then its Var structure, and possibly its hash table
  2151.  * entry, is freed up.
  2152.  *
  2153.  *----------------------------------------------------------------------
  2154.  */
  2155. static void
  2156. CleanupVar(varPtr, arrayPtr)
  2157.     Var *varPtr; /* Pointer to variable that may be a
  2158.  * candidate for being expunged. */
  2159.     Var *arrayPtr; /* Array that contains the variable, or
  2160.  * NULL if this variable isn't an array
  2161.  * element. */
  2162. {
  2163.     if (TclIsVarUndefined(varPtr) && (varPtr->refCount == 0)
  2164.     && (varPtr->tracePtr == NULL)
  2165.     && (varPtr->flags & VAR_IN_HASHTABLE)) {
  2166. if (varPtr->hPtr != NULL) {
  2167.     Tcl_DeleteHashEntry(varPtr->hPtr);
  2168. }
  2169. ckfree((char *) varPtr);
  2170.     }
  2171.     if (arrayPtr != NULL) {
  2172. if (TclIsVarUndefined(arrayPtr) && (arrayPtr->refCount == 0)
  2173. && (arrayPtr->tracePtr == NULL)
  2174.         && (arrayPtr->flags & VAR_IN_HASHTABLE)) {
  2175.     if (arrayPtr->hPtr != NULL) {
  2176. Tcl_DeleteHashEntry(arrayPtr->hPtr);
  2177.     }
  2178.     ckfree((char *) arrayPtr);
  2179. }
  2180.     }
  2181. }
  2182. /*
  2183.  *----------------------------------------------------------------------
  2184.  *
  2185.  * VarErrMsg --
  2186.  *
  2187.  *      Generate a reasonable error message describing why a variable
  2188.  *      operation failed.
  2189.  *
  2190.  * Results:
  2191.  *      None.
  2192.  *
  2193.  * Side effects:
  2194.  *      The interp's result is set to hold a message identifying the
  2195.  *      variable given by part1 and part2 and describing why the
  2196.  *      variable operation failed.
  2197.  *
  2198.  *----------------------------------------------------------------------
  2199.  */
  2200. static void
  2201. VarErrMsg(interp, part1, part2, operation, reason)
  2202.     Tcl_Interp *interp;         /* Interpreter in which to record message. */
  2203.     CONST char *part1;
  2204.     CONST char *part2; /* Variable's two-part name. */
  2205.     CONST char *operation;      /* String describing operation that failed,
  2206.                                  * e.g. "read", "set", or "unset". */
  2207.     CONST char *reason;         /* String describing why operation failed. */
  2208. {
  2209.     Tcl_ResetResult(interp);
  2210.     Tcl_AppendResult(interp, "can't ", operation, " "", part1,
  2211.     (char *) NULL);
  2212.     if (part2 != NULL) {
  2213.         Tcl_AppendResult(interp, "(", part2, ")", (char *) NULL);
  2214.     }
  2215.     Tcl_AppendResult(interp, "": ", reason, (char *) NULL);
  2216. }
  2217. /*
  2218.  *----------------------------------------------------------------------
  2219.  *
  2220.  * TclTraceVarExists --
  2221.  *
  2222.  * This is called from info exists.  We need to trigger read
  2223.  * and/or array traces because they may end up creating a
  2224.  * variable that doesn't currently exist.
  2225.  *
  2226.  * Results:
  2227.  * A pointer to the Var structure, or NULL.
  2228.  *
  2229.  * Side effects:
  2230.  * May fill in error messages in the interp.
  2231.  *
  2232.  *----------------------------------------------------------------------
  2233.  */
  2234. Var *
  2235. TclVarTraceExists(interp, varName)
  2236.     Tcl_Interp *interp; /* The interpreter */
  2237.     CONST char *varName; /* The variable name */
  2238. {
  2239.     Var *varPtr;
  2240.     Var *arrayPtr;
  2241.     /*
  2242.      * The choice of "create" flag values is delicate here, and
  2243.      * matches the semantics of GetVar.  Things are still not perfect,
  2244.      * however, because if you do "info exists x" you get a varPtr
  2245.      * and therefore trigger traces.  However, if you do 
  2246.      * "info exists x(i)", then you only get a varPtr if x is already
  2247.      * known to be an array.  Otherwise you get NULL, and no trace
  2248.      * is triggered.  This matches Tcl 7.6 semantics.
  2249.      */
  2250.     varPtr = TclLookupVar(interp, varName, (char *) NULL,
  2251.             0, "access", /*createPart1*/ 0, /*createPart2*/ 1, &arrayPtr);
  2252.     if (varPtr == NULL) {
  2253. return NULL;
  2254.     }
  2255.     if ((varPtr->tracePtr != NULL)
  2256.     || ((arrayPtr != NULL) && (arrayPtr->tracePtr != NULL))) {
  2257. CallVarTraces((Interp *)interp, arrayPtr, varPtr, varName, NULL,
  2258. TCL_TRACE_READS, /* leaveErrMsg */ 0);
  2259.     }
  2260.     /*
  2261.      * If the variable doesn't exist anymore and no-one's using
  2262.      * it, then free up the relevant structures and hash table entries.
  2263.      */
  2264.     if (TclIsVarUndefined(varPtr)) {
  2265. CleanupVar(varPtr, arrayPtr);
  2266. return NULL;
  2267.     }
  2268.     return varPtr;
  2269. }
  2270. /*
  2271.  *----------------------------------------------------------------------
  2272.  *
  2273.  * Internal functions for variable name object types --
  2274.  *
  2275.  *----------------------------------------------------------------------
  2276.  */
  2277. /* 
  2278.  * localVarName -
  2279.  *
  2280.  * INTERNALREP DEFINITION:
  2281.  *   twoPtrValue.ptr1 = pointer to the corresponding Proc 
  2282.  *   twoPtrValue.ptr2 = index into locals table
  2283. */
  2284. static void 
  2285. FreeLocalVarName(objPtr)
  2286.     Tcl_Obj *objPtr;
  2287. {
  2288.     register Proc *procPtr = (Proc *) objPtr->internalRep.twoPtrValue.ptr1;
  2289.     procPtr->refCount--;
  2290.     if (procPtr->refCount <= 0) {
  2291. TclProcCleanupProc(procPtr);
  2292.     }
  2293. }
  2294. static void
  2295. DupLocalVarName(srcPtr, dupPtr)
  2296.     Tcl_Obj *srcPtr;
  2297.     Tcl_Obj *dupPtr;
  2298. {
  2299.     register Proc *procPtr = (Proc *) srcPtr->internalRep.twoPtrValue.ptr1;
  2300.     dupPtr->internalRep.twoPtrValue.ptr1 = (VOID *) procPtr;
  2301.     dupPtr->internalRep.twoPtrValue.ptr2 = srcPtr->internalRep.twoPtrValue.ptr2;
  2302.     procPtr->refCount++;
  2303.     dupPtr->typePtr = &tclLocalVarNameType;
  2304. }
  2305. static void
  2306. UpdateLocalVarName(objPtr)
  2307.     Tcl_Obj *objPtr;
  2308. {
  2309.     Proc *procPtr = (Proc *) objPtr->internalRep.twoPtrValue.ptr1;
  2310.     unsigned int index = (unsigned int) objPtr->internalRep.twoPtrValue.ptr2;
  2311.     CompiledLocal *localPtr = procPtr->firstLocalPtr;
  2312.     unsigned int nameLen;
  2313.     if (localPtr == NULL) {
  2314. goto emptyName;
  2315.     }
  2316.     while (index--) {
  2317. localPtr = localPtr->nextPtr;
  2318. if (localPtr == NULL) {
  2319.     goto emptyName;
  2320. }
  2321.     }
  2322.     nameLen = (unsigned int) localPtr->nameLength;
  2323.     objPtr->bytes = ckalloc(nameLen + 1);
  2324.     memcpy(objPtr->bytes, localPtr->name, nameLen + 1);
  2325.     objPtr->length = nameLen;
  2326.     return;
  2327.     emptyName:
  2328.     objPtr->bytes = ckalloc(1);
  2329.     *(objPtr->bytes) = '';
  2330.     objPtr->length = 0;
  2331. }
  2332. /* 
  2333.  * nsVarName -
  2334.  *
  2335.  * INTERNALREP DEFINITION:
  2336.  *   twoPtrValue.ptr1: pointer to the namespace containing the 
  2337.  *                     reference.
  2338.  *   twoPtrValue.ptr2: pointer to the corresponding Var 
  2339. */
  2340. static void 
  2341. FreeNsVarName(objPtr)
  2342.     Tcl_Obj *objPtr;
  2343. {
  2344.     register Var *varPtr = (Var *) objPtr->internalRep.twoPtrValue.ptr2;
  2345.     varPtr->refCount--;
  2346.     if (TclIsVarUndefined(varPtr) && (varPtr->refCount <= 0)) {
  2347. if (TclIsVarLink(varPtr)) {
  2348.     Var *linkPtr = varPtr->value.linkPtr;
  2349.     linkPtr->refCount--;
  2350.     if (TclIsVarUndefined(linkPtr) && (linkPtr->refCount <= 0)) {
  2351. CleanupVar(linkPtr, (Var *) NULL);
  2352.     }
  2353. }
  2354. CleanupVar(varPtr, NULL);
  2355.     }
  2356. }
  2357. static void
  2358. DupNsVarName(srcPtr, dupPtr)
  2359.     Tcl_Obj *srcPtr;
  2360.     Tcl_Obj *dupPtr;
  2361. {
  2362.     Namespace *nsPtr = (Namespace *) srcPtr->internalRep.twoPtrValue.ptr1;
  2363.     register Var *varPtr = (Var *) srcPtr->internalRep.twoPtrValue.ptr2;
  2364.     dupPtr->internalRep.twoPtrValue.ptr1 =  (VOID *) nsPtr;
  2365.     dupPtr->internalRep.twoPtrValue.ptr2 = (VOID *) varPtr;
  2366.     varPtr->refCount++;
  2367.     dupPtr->typePtr = &tclNsVarNameType;
  2368. }
  2369. /* 
  2370.  * parsedVarName -
  2371.  *
  2372.  * INTERNALREP DEFINITION:
  2373.  *   twoPtrValue.ptr1 = pointer to the array name Tcl_Obj
  2374.  *                      (NULL if scalar)
  2375.  *   twoPtrValue.ptr2 = pointer to the element name string
  2376.  *                      (owned by this Tcl_Obj), or NULL if 
  2377.  *                      it is a scalar variable
  2378.  */
  2379. static void 
  2380. FreeParsedVarName(objPtr)
  2381.     Tcl_Obj *objPtr;
  2382. {
  2383.     register Tcl_Obj *arrayPtr =
  2384.     (Tcl_Obj *) objPtr->internalRep.twoPtrValue.ptr1;
  2385.     register char *elem = (char *) objPtr->internalRep.twoPtrValue.ptr2;
  2386.     
  2387.     if (arrayPtr != NULL) {
  2388. TclDecrRefCount(arrayPtr);
  2389. ckfree(elem);
  2390.     }
  2391. }
  2392. static void
  2393. DupParsedVarName(srcPtr, dupPtr)
  2394.     Tcl_Obj *srcPtr;
  2395.     Tcl_Obj *dupPtr;
  2396. {
  2397.     register Tcl_Obj *arrayPtr =
  2398.     (Tcl_Obj *) srcPtr->internalRep.twoPtrValue.ptr1;
  2399.     register char *elem = (char *) srcPtr->internalRep.twoPtrValue.ptr2;
  2400.     char *elemCopy;
  2401.     unsigned int elemLen;
  2402.     if (arrayPtr != NULL) {
  2403. Tcl_IncrRefCount(arrayPtr);
  2404. elemLen = strlen(elem);
  2405. elemCopy = ckalloc(elemLen+1);
  2406. memcpy(elemCopy, elem, elemLen);
  2407. *(elemCopy + elemLen) = '';
  2408. elem = elemCopy;
  2409.     }
  2410.     dupPtr->internalRep.twoPtrValue.ptr1 = (VOID *) arrayPtr;
  2411.     dupPtr->internalRep.twoPtrValue.ptr2 = (VOID *) elem;
  2412.     dupPtr->typePtr = &tclParsedVarNameType;
  2413. }
  2414. static void
  2415. UpdateParsedVarName(objPtr)
  2416.     Tcl_Obj *objPtr;
  2417. {
  2418.     Tcl_Obj *arrayPtr = (Tcl_Obj *) objPtr->internalRep.twoPtrValue.ptr1;
  2419.     char *part2 = (char *) objPtr->internalRep.twoPtrValue.ptr2;
  2420.     char *part1, *p;
  2421.     int len1, len2, totalLen;
  2422.     if (arrayPtr == NULL) {
  2423. /*
  2424.  * This is a parsed scalar name: what is it
  2425.  * doing here?
  2426.  */
  2427. panic("ERROR: scalar parsedVarName without a string rep.n");
  2428.     }
  2429.     part1 = Tcl_GetStringFromObj(arrayPtr, &len1);
  2430.     len2 = strlen(part2);
  2431.     totalLen = len1 + len2 + 2;
  2432.     p = ckalloc((unsigned int) totalLen + 1);
  2433.     objPtr->bytes = p;
  2434.     objPtr->length = totalLen;
  2435.     memcpy(p, part1, (unsigned int) len1);
  2436.     p += len1;
  2437.     *p++ = '(';
  2438.     memcpy(p, part2, (unsigned int) len2);
  2439.     p += len2;
  2440.     *p++ = ')';
  2441.     *p   = '';
  2442. }