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 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
|
/*
* Implementation of most standard Tcl list processing commands
* suitable for operation on thread shared (list) variables.
*
* Copyright (c) 2002 by Zoran Vasiljevic.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
* ----------------------------------------------------------------------------
*/
#include "threadSvCmd.h"
/*
* Implementation of list commands for shared variables.
* Most of the standard Tcl list commands are implemented.
* There are also two new commands: "lpop" and "lpush".
* Those are very convenient for simple stack operations.
*
* Main difference to standard Tcl commands is that our commands
* operate on list variable per-reference instead per-value.
* This way we avoid frequent object shuffling between shared
* containers and current interpreter, thus increasing speed.
*/
static Tcl_ObjCmdProc SvLpopObjCmd; /* lpop */
static Tcl_ObjCmdProc SvLpushObjCmd; /* lpush */
static Tcl_ObjCmdProc SvLappendObjCmd; /* lappend */
static Tcl_ObjCmdProc SvLreplaceObjCmd; /* lreplace */
static Tcl_ObjCmdProc SvLlengthObjCmd; /* llength */
static Tcl_ObjCmdProc SvLindexObjCmd; /* lindex */
static Tcl_ObjCmdProc SvLinsertObjCmd; /* linsert */
static Tcl_ObjCmdProc SvLrangeObjCmd; /* lrange */
static Tcl_ObjCmdProc SvLsearchObjCmd; /* lsearch */
static Tcl_ObjCmdProc SvLsetObjCmd; /* lset */
/*
* These two are copied verbatim from the tclUtil.c
* since not found in the public stubs table.
* I was just too lazy to rewrite them from scratch.
*/
static int SvCheckBadOctal(Tcl_Interp*, const char *);
static int SvGetIntForIndex(Tcl_Interp*, Tcl_Obj *, int, int*);
/*
* Inefficient list duplicator function which,
* however, produces deep list copies, unlike
* the original, which just makes shallow copies.
*/
static void DupListObjShared(Tcl_Obj*, Tcl_Obj*);
/*
* This mutex protects a static variable which tracks
* registration of commands and object types.
*/
static Tcl_Mutex initMutex;
/*
* Functions for implementing the "lset" list command
*/
static Tcl_Obj*
SvLsetFlat(Tcl_Interp *interp, Tcl_Obj *listPtr, int indexCount,
Tcl_Obj **indexArray, Tcl_Obj *valuePtr);
/*
*-----------------------------------------------------------------------------
*
* Sv_RegisterListCommands --
*
* Register list commands with shared variable module.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* Memory gets allocated
*
*-----------------------------------------------------------------------------
*/
void
Sv_RegisterListCommands(void)
{
static int initialized = 0;
if (initialized == 0) {
Tcl_MutexLock(&initMutex);
if (initialized == 0) {
Sv_RegisterCommand("lpop", SvLpopObjCmd, NULL, NULL);
Sv_RegisterCommand("lpush", SvLpushObjCmd, NULL, NULL);
Sv_RegisterCommand("lappend", SvLappendObjCmd, NULL, NULL);
Sv_RegisterCommand("lreplace", SvLreplaceObjCmd, NULL, NULL);
Sv_RegisterCommand("linsert", SvLinsertObjCmd, NULL, NULL);
Sv_RegisterCommand("llength", SvLlengthObjCmd, NULL, NULL);
Sv_RegisterCommand("lindex", SvLindexObjCmd, NULL, NULL);
Sv_RegisterCommand("lrange", SvLrangeObjCmd, NULL, NULL);
Sv_RegisterCommand("lsearch", SvLsearchObjCmd, NULL, NULL);
Sv_RegisterCommand("lset", SvLsetObjCmd, NULL, NULL);
Sv_RegisterObjType(Tcl_GetObjType("list"), DupListObjShared);
initialized = 1;
}
Tcl_MutexUnlock(&initMutex);
}
}
/*
*-----------------------------------------------------------------------------
*
* SvLpopObjCmd --
*
* This procedure is invoked to process the "tsv::lpop" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLpopObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
int ret, off, llen, index = 0, iarg = 0;
Tcl_Obj *elPtr = NULL;
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::lpop array key ?index?
* $list lpop ?index?
*/
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, 0);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) > 1) {
Tcl_WrongNumArgs(interp, off, objv, "?index?");
goto cmd_err;
}
if ((objc - off) == 1) {
iarg = off;
}
ret = Tcl_ListObjLength(interp, svObj->tclObj, &llen);
if (ret != TCL_OK) {
goto cmd_err;
}
if (iarg) {
ret = SvGetIntForIndex(interp, objv[iarg], llen-1, &index);
if (ret != TCL_OK) {
goto cmd_err;
}
}
if (index < 0 || index >= llen) {
goto cmd_ok; /* Ignore out-of bounds, like Tcl does */
}
ret = Tcl_ListObjIndex(interp, svObj->tclObj, index, &elPtr);
if (ret != TCL_OK) {
goto cmd_err;
}
Tcl_IncrRefCount(elPtr);
ret = Tcl_ListObjReplace(interp, svObj->tclObj, index, 1, 0, NULL);
if (ret != TCL_OK) {
Tcl_DecrRefCount(elPtr);
goto cmd_err;
}
Tcl_SetObjResult(interp, elPtr);
Tcl_DecrRefCount(elPtr);
cmd_ok:
return Sv_PutContainer(interp, svObj, SV_CHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* SvLpushObjCmd --
*
* This procedure is invoked to process the "tsv::lpush" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLpushObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
int off, ret, flg, llen, index = 0;
Tcl_Obj *args[1];
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::lpush array key element ?index?
* $list lpush element ?index?
*/
flg = FLAGS_CREATEARRAY | FLAGS_CREATEVAR;
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, flg);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) < 1) {
Tcl_WrongNumArgs(interp, off, objv, "element ?index?");
goto cmd_err;
}
ret = Tcl_ListObjLength(interp, svObj->tclObj, &llen);
if (ret != TCL_OK) {
goto cmd_err;
}
if ((objc - off) == 2) {
ret = SvGetIntForIndex(interp, objv[off+1], llen, &index);
if (ret != TCL_OK) {
goto cmd_err;
}
if (index < 0) {
index = 0;
} else if (index > llen) {
index = llen;
}
}
args[0] = Sv_DuplicateObj(objv[off]);
ret = Tcl_ListObjReplace(interp, svObj->tclObj, index, 0, 1, args);
if (ret != TCL_OK) {
Tcl_DecrRefCount(args[0]);
goto cmd_err;
}
return Sv_PutContainer(interp, svObj, SV_CHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* SvLappendObjCmd --
*
* This procedure is invoked to process the "tsv::lappend" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLappendObjCmd(arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
int i, ret, flg, off;
Tcl_Obj *dup;
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::lappend array key value ?value ...?
* $list lappend value ?value ...?
*/
flg = FLAGS_CREATEARRAY | FLAGS_CREATEVAR;
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, flg);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) < 1) {
Tcl_WrongNumArgs(interp, off, objv, "value ?value ...?");
goto cmd_err;
}
for (i = off; i < objc; i++) {
dup = Sv_DuplicateObj(objv[i]);
ret = Tcl_ListObjAppendElement(interp, svObj->tclObj, dup);
if (ret != TCL_OK) {
Tcl_DecrRefCount(dup);
goto cmd_err;
}
}
Tcl_SetObjResult(interp, Sv_DuplicateObj(svObj->tclObj));
return Sv_PutContainer(interp, svObj, SV_CHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* SvLreplaceObjCmd --
*
* This procedure is invoked to process the "tsv::lreplace" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLreplaceObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
const char *firstArg;
int argLen, ret, off, llen, first, last, ndel, nargs, i, j;
Tcl_Obj **args = NULL;
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::lreplace array key first last ?element ...?
* $list lreplace first last ?element ...?
*/
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, 0);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) < 2) {
Tcl_WrongNumArgs(interp, off, objv, "first last ?element ...?");
goto cmd_err;
}
ret = Tcl_ListObjLength(interp, svObj->tclObj, &llen);
if (ret != TCL_OK) {
goto cmd_err;
}
ret = SvGetIntForIndex(interp, objv[off], llen-1, &first);
if (ret != TCL_OK) {
goto cmd_err;
}
ret = SvGetIntForIndex(interp, objv[off+1], llen-1, &last);
if (ret != TCL_OK) {
goto cmd_err;
}
firstArg = Tcl_GetStringFromObj(objv[off], &argLen);
if (first < 0) {
first = 0;
}
if (llen && first >= llen && strncmp(firstArg, "end", argLen)) {
Tcl_AppendResult(interp, "list doesn't have element ", firstArg, NULL);
goto cmd_err;
}
if (last >= llen) {
last = llen - 1;
}
if (first <= last) {
ndel = last - first + 1;
} else {
ndel = 0;
}
nargs = objc - (off + 2);
if (nargs) {
args = (Tcl_Obj**)Tcl_Alloc(nargs * sizeof(Tcl_Obj*));
for(i = off + 2, j = 0; i < objc; i++, j++) {
args[j] = Sv_DuplicateObj(objv[i]);
}
}
ret = Tcl_ListObjReplace(interp, svObj->tclObj, first, ndel, nargs, args);
if (args) {
if (ret != TCL_OK) {
for(i = off + 2, j = 0; i < objc; i++, j++) {
Tcl_DecrRefCount(args[j]);
}
}
Tcl_Free((char*)args);
}
return Sv_PutContainer(interp, svObj, SV_CHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* SvLrangeObjCmd --
*
* This procedure is invoked to process the "tsv::lrange" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLrangeObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
int ret, off, llen, first, last, nargs, i, j;
Tcl_Obj **elPtrs, **args;
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::lrange array key first last
* $list lrange first last
*/
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, 0);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) != 2) {
Tcl_WrongNumArgs(interp, off, objv, "first last");
goto cmd_err;
}
ret = Tcl_ListObjGetElements(interp, svObj->tclObj, &llen, &elPtrs);
if (ret != TCL_OK) {
goto cmd_err;
}
ret = SvGetIntForIndex(interp, objv[off], llen-1, &first);
if (ret != TCL_OK) {
goto cmd_err;
}
ret = SvGetIntForIndex(interp, objv[off+1], llen-1, &last);
if (ret != TCL_OK) {
goto cmd_err;
}
if (first < 0) {
first = 0;
}
if (last >= llen) {
last = llen - 1;
}
if (first > last) {
goto cmd_ok;
}
nargs = last - first + 1;
args = (Tcl_Obj**)Tcl_Alloc(nargs * sizeof(Tcl_Obj*));
for (i = first, j = 0; i <= last; i++, j++) {
args[j] = Sv_DuplicateObj(elPtrs[i]);
}
Tcl_ResetResult(interp);
Tcl_SetListObj(Tcl_GetObjResult(interp), nargs, args);
Tcl_Free((char*)args);
cmd_ok:
return Sv_PutContainer(interp, svObj, SV_UNCHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* SvLinsertObjCmd --
*
* This procedure is invoked to process the "tsv::linsert" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLinsertObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
int off, ret, flg, llen, nargs, index = 0, i, j;
Tcl_Obj **args;
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::linsert array key index element ?element ...?
* $list linsert element ?element ...?
*/
flg = FLAGS_CREATEARRAY | FLAGS_CREATEVAR;
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, flg);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) < 2) {
Tcl_WrongNumArgs(interp, off, objv, "index element ?element ...?");
goto cmd_err;
}
ret = Tcl_ListObjLength(interp, svObj->tclObj, &llen);
if (ret != TCL_OK) {
goto cmd_err;
}
ret = SvGetIntForIndex(interp, objv[off], llen, &index);
if (ret != TCL_OK) {
goto cmd_err;
}
if (index < 0) {
index = 0;
} else if (index > llen) {
index = llen;
}
nargs = objc - (off + 1);
args = (Tcl_Obj**)Tcl_Alloc(nargs * sizeof(Tcl_Obj*));
for (i = off + 1, j = 0; i < objc; i++, j++) {
args[j] = Sv_DuplicateObj(objv[i]);
}
ret = Tcl_ListObjReplace(interp, svObj->tclObj, index, 0, nargs, args);
if (ret != TCL_OK) {
for (i = off + 1, j = 0; i < objc; i++, j++) {
Tcl_DecrRefCount(args[j]);
}
Tcl_Free((char*)args);
goto cmd_err;
}
Tcl_Free((char*)args);
return Sv_PutContainer(interp, svObj, SV_CHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* SvLlengthObjCmd --
*
* This procedure is invoked to process the "tsv::llength" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLlengthObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
int llen, off, ret;
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::llength array key
* $list llength
*/
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, 0);
if (ret != TCL_OK) {
return TCL_ERROR;
}
ret = Tcl_ListObjLength(interp, svObj->tclObj, &llen);
if (ret == TCL_OK) {
Tcl_ResetResult(interp);
Tcl_SetIntObj(Tcl_GetObjResult(interp), llen);
}
if (Sv_PutContainer(interp, svObj, SV_UNCHANGED) != TCL_OK) {
return TCL_ERROR;
}
return ret;
}
/*
*-----------------------------------------------------------------------------
*
* SvLsearchObjCmd --
*
* This procedure is invoked to process the "tsv::lsearch" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLsearchObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
int ret, off, listc, mode, imode, ipatt, length, index, match, i;
const char *patBytes;
Tcl_Obj **listv;
Container *svObj = (Container*)arg;
static const char *modes[] = {"-exact", "-glob", "-regexp", NULL};
enum {LS_EXACT, LS_GLOB, LS_REGEXP};
mode = LS_GLOB;
/*
* Syntax:
* tsv::lsearch array key ?mode? pattern
* $list lsearch ?mode? pattern
*/
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, 0);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) == 2) {
imode = off;
ipatt = off + 1;
} else if ((objc - off) == 1) {
imode = 0;
ipatt = off;
} else {
Tcl_WrongNumArgs(interp, off, objv, "?mode? pattern");
goto cmd_err;
}
if (imode) {
ret = Tcl_GetIndexFromObj(interp, objv[imode], modes, "search mode",
0, &mode);
if (ret != TCL_OK) {
goto cmd_err;
}
}
ret = Tcl_ListObjGetElements(interp, svObj->tclObj, &listc, &listv);
if (ret != TCL_OK) {
goto cmd_err;
}
index = -1;
patBytes = Tcl_GetStringFromObj(objv[ipatt], &length);
for (i = 0; i < listc; i++) {
match = 0;
switch (mode) {
case LS_GLOB:
match = Tcl_StringMatch(Tcl_GetString(listv[i]), patBytes);
break;
case LS_EXACT: {
int elemLen;
const char *bytes = Tcl_GetStringFromObj(listv[i], &elemLen);
if (length == elemLen) {
match = (memcmp(bytes, patBytes, (size_t)length) == 0);
}
break;
}
case LS_REGEXP:
match = Tcl_RegExpMatchObj(interp, listv[i], objv[ipatt]);
if (match < 0) {
goto cmd_err;
}
break;
}
if (match) {
index = i;
break;
}
}
Tcl_ResetResult(interp);
Tcl_SetIntObj(Tcl_GetObjResult(interp), index);
return Sv_PutContainer(interp, svObj, SV_UNCHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* SvLindexObjCmd --
*
* This procedure is invoked to process the "tsv::lindex" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLindexObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
Tcl_Obj **elPtrs;
int ret, off, llen, index;
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::lindex array key index
* $list lindex index
*/
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, 0);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) != 1) {
Tcl_WrongNumArgs(interp, off, objv, "index");
goto cmd_err;
}
ret = Tcl_ListObjGetElements(interp, svObj->tclObj, &llen, &elPtrs);
if (ret != TCL_OK) {
goto cmd_err;
}
ret = SvGetIntForIndex(interp, objv[off], llen-1, &index);
if (ret != TCL_OK) {
goto cmd_err;
}
if (index >= 0 && index < llen) {
Tcl_SetObjResult(interp, Sv_DuplicateObj(elPtrs[index]));
}
return Sv_PutContainer(interp, svObj, SV_UNCHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* SvLsetObjCmd --
*
* This procedure is invoked to process the "tsv::lset" command.
* See the user documentation for details on what it does.
*
* Results:
* A standard Tcl result.
*
* Side effects:
* See the user documentation.
*
*-----------------------------------------------------------------------------
*/
static int
SvLsetObjCmd (arg, interp, objc, objv)
ClientData arg;
Tcl_Interp *interp;
int objc;
Tcl_Obj *const objv[];
{
Tcl_Obj *lPtr;
int ret, argc, off;
Container *svObj = (Container*)arg;
/*
* Syntax:
* tsv::lset array key index ?index ...? value
* $list lset index ?index ...? value
*/
ret = Sv_GetContainer(interp, objc, objv, &svObj, &off, 0);
if (ret != TCL_OK) {
return TCL_ERROR;
}
if ((objc - off) < 2) {
Tcl_WrongNumArgs(interp, off, objv, "index ?index...? value");
goto cmd_err;
}
lPtr = svObj->tclObj;
argc = objc - off - 1;
if (!SvLsetFlat(interp, lPtr, argc, (Tcl_Obj**)(objv+off),objv[objc-1])) {
return TCL_ERROR;
}
Tcl_SetObjResult(interp, Sv_DuplicateObj(lPtr));
return Sv_PutContainer(interp, svObj, SV_CHANGED);
cmd_err:
return Sv_PutContainer(interp, svObj, SV_ERROR);
}
/*
*-----------------------------------------------------------------------------
*
* DupListObjShared --
*
* Help function to make a proper deep copy of the list object.
* This is used as the replacement-hook for list object native
* DupInternalRep function. We need it since the native function
* does a shallow list copy, i.e. retains references to list
* element objects from the original list. This gives us trouble
* when making the list object shared between threads.
*
* Results:
* None.
*
* Side effects;
* This is not a very efficient implementation, but that's all what's
* available to Tcl API programmer. We could include the tclInt.h and
* get the copy more efficient using list internals, but ...
*
*-----------------------------------------------------------------------------
*/
static void
DupListObjShared(srcPtr, copyPtr)
Tcl_Obj *srcPtr; /* Object with internal rep to copy. */
Tcl_Obj *copyPtr; /* Object with internal rep to set. */
{
int i, llen;
Tcl_Obj *elObj, **newObjList;
Tcl_ListObjLength(NULL, srcPtr, &llen);
if (llen == 0) {
(*srcPtr->typePtr->dupIntRepProc)(srcPtr, copyPtr);
copyPtr->refCount = 0;
return;
}
newObjList = (Tcl_Obj**)Tcl_Alloc(llen*sizeof(Tcl_Obj*));
for (i = 0; i < llen; i++) {
Tcl_ListObjIndex(NULL, srcPtr, i, &elObj);
newObjList[i] = Sv_DuplicateObj(elObj);
}
Tcl_SetListObj(copyPtr, llen, newObjList);
Tcl_Free((char*)newObjList);
}
/*
*-----------------------------------------------------------------------------
*
* SvCheckBadOctal --
*
* Exact copy from the TclCheckBadOctal found in tclUtil.c
* since this is not in the stubs table.
*
*-----------------------------------------------------------------------------
*/
static int
SvCheckBadOctal(interp, value)
Tcl_Interp *interp; /* Interpreter to use for error reporting.
* If NULL, then no error message is left
* after errors. */
const char *value; /* String to check. */
{
register const char *p = value;
/*
* A frequent mistake is invalid octal values due to an unwanted
* leading zero. Try to generate a meaningful error message.
*/
while (isspace((unsigned char)(*p))) { /* INTL: ISO space. */
p++;
}
if (*p == '+' || *p == '-') {
p++;
}
if (*p == '0') {
while (isdigit((unsigned char)(*p))) { /* INTL: digit. */
p++;
}
while (isspace((unsigned char)(*p))) { /* INTL: ISO space. */
p++;
}
if (*p == '\0') {
/* Reached end of string */
if (interp != NULL) {
Tcl_AppendResult(interp, " (looks like invalid octal number)",
(char *) NULL);
}
return 1;
}
}
return 0;
}
/*
*-----------------------------------------------------------------------------
*
* SvGetIntForIndex --
*
* Exact copy from the TclGetIntForIndex found in tclUtil.c
* since this is not in the stubs table.
*
*-----------------------------------------------------------------------------
*/
static int
SvGetIntForIndex(interp, objPtr, endValue, indexPtr)
Tcl_Interp *interp; /* Interpreter to use for error reporting.
* If NULL, then no error message is left
* after errors. */
Tcl_Obj *objPtr; /* Points to an object containing either
* "end" or an integer. */
int endValue; /* The value to be stored at "indexPtr" if
* "objPtr" holds "end". */
int *indexPtr; /* Location filled in with an integer
* representing an index. */
{
const char *bytes;
int length, offset;
bytes = Tcl_GetStringFromObj(objPtr, &length);
if ((*bytes != 'e')
|| (strncmp(bytes, "end",(size_t)((length > 3) ? 3 : length)) != 0)) {
if (Tcl_GetIntFromObj(NULL, objPtr, &offset) != TCL_OK) {
goto intforindex_error;
}
*indexPtr = offset;
return TCL_OK;
}
if (length <= 3) {
*indexPtr = endValue;
} else if (bytes[3] == '-') {
/*
* This is our limited string expression evaluator
*/
if (Tcl_GetInt(interp, bytes+3, &offset) != TCL_OK) {
return TCL_ERROR;
}
*indexPtr = endValue + offset;
} else {
intforindex_error:
if (interp != NULL) {
Tcl_ResetResult(interp);
Tcl_AppendStringsToObj(Tcl_GetObjResult(interp), "bad index \"",
bytes, "\": must be integer or end?-integer?",(char*)NULL);
SvCheckBadOctal(interp, bytes);
}
return TCL_ERROR;
}
return TCL_OK;
}
/*
*----------------------------------------------------------------------
*
* SvLsetFlat --
*
* Almost exact copy from the TclLsetFlat found in tclListObj.c.
* Simplified in a sense that thread shared objects are guaranteed
* to be non-shared.
*
* Actual return value of this procedure is irrelevant to the caller,
* and it should be either NULL or non-NULL.
*
*----------------------------------------------------------------------
*/
static Tcl_Obj*
SvLsetFlat(interp, listPtr, indexCount, indexArray, valuePtr)
Tcl_Interp *interp; /* Tcl interpreter */
Tcl_Obj *listPtr; /* Pointer to the list being modified */
int indexCount; /* Number of index args */
Tcl_Obj **indexArray;
Tcl_Obj *valuePtr; /* Value arg to 'lset' */
{
int elemCount, index, result, i;
Tcl_Obj **elemPtrs, *chainPtr, *subListPtr;
/*
* Determine whether the index arg designates a list
* or a single index.
*/
if (indexCount == 1 &&
Tcl_ListObjGetElements(interp, indexArray[0], &indexCount,
&indexArray) != TCL_OK) {
/*
* Index arg designates something that is neither an index
* nor a well formed list.
*/
return NULL;
}
/*
* If there are no indices, then simply return the new value,
* counting the returned pointer as a reference
*/
if (indexCount == 0) {
return valuePtr;
}
/*
* Anchor the linked list of Tcl_Obj's whose string reps must be
* invalidated if the operation succeeds.
*/
chainPtr = NULL;
/*
* Handle each index arg by diving into the appropriate sublist
*/
for (i = 0; ; ++i) {
/*
* Take the sublist apart.
*/
result = Tcl_ListObjGetElements(interp,listPtr,&elemCount,&elemPtrs);
if (result != TCL_OK) {
break;
}
listPtr->internalRep.twoPtrValue.ptr2 = (VOID*)chainPtr;
/*
* Determine the index of the requested element.
*/
result = SvGetIntForIndex(interp, indexArray[i], elemCount-1, &index);
if (result != TCL_OK) {
break;
}
/*
* Check that the index is in range.
*/
if (index < 0 || index >= elemCount) {
Tcl_SetObjResult(interp,
Tcl_NewStringObj("list index out of range", -1));
result = TCL_ERROR;
break;
}
/*
* Break the loop after extracting the innermost sublist
*/
if (i >= (indexCount - 1)) {
result = TCL_OK;
break;
}
/*
* Extract the appropriate sublist and chain it onto the linked
* list of Tcl_Obj's whose string reps must be spoilt.
*/
subListPtr = elemPtrs[index];
chainPtr = listPtr;
listPtr = subListPtr;
}
/* Store the result in the list element */
if (result == TCL_OK) {
result = Tcl_ListObjGetElements(interp,listPtr,&elemCount,&elemPtrs);
if (result == TCL_OK) {
Tcl_DecrRefCount(elemPtrs[index]);
elemPtrs[index] = Sv_DuplicateObj(valuePtr);
Tcl_IncrRefCount(elemPtrs[index]);
}
}
if (result == TCL_OK) {
listPtr->internalRep.twoPtrValue.ptr2 = (VOID*)chainPtr;
/* Spoil all the string reps */
while (listPtr != NULL) {
subListPtr = (Tcl_Obj*)listPtr->internalRep.twoPtrValue.ptr2;
Tcl_InvalidateStringRep(listPtr);
listPtr->internalRep.twoPtrValue.ptr2 = NULL;
listPtr = subListPtr;
}
return valuePtr;
}
return NULL;
}
/* EOF $RCSfile: threadSvListCmd.c,v $ */
/* Emacs Setup Variables */
/* Local Variables: */
/* mode: C */
/* indent-tabs-mode: nil */
/* c-basic-offset: 4 */
/* End: */
|