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 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251
|
/*
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 1, or (at your option)
** any later version.
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* Author : Alexandre Parenteau <aubonbeurre@hotmail.com> --- May 1998
* Modified : David Gravereaux <davygrvy@bigfoot.com> -- May 1999
*/
/*
* TclGlue.cpp --- glue to the TCL language
*/
#include "stdafx.h"
#ifdef TARGET_OS_MAC
# include "MacMisc.h"
#endif
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#if !defined(USE_TCL)
# define USE_TCL 1
#endif
#ifdef qMacCvsPP
# include "MacCvsApp.h"
#endif /* qMacCvsPP */
#if qCarbon
# include "TclGlue.mac.h"
#endif
// this cannot work before the stub library is linked with wrong libraries
// and it causes WinCvs to crash
//#define USE_TCL_STUBS
#if !defined(__STDC__) && (defined(TARGET_OS_MAC) || defined(WIN32))
# define __STDC__ 1
# define UNDEF_STDC
#endif
#if USE_TCL
#include "tcl.h"
#if TCL_MAJOR_VERSION != 8 && TCL_MINOR_VERSION < 1
# error "You need the Tcl 8.1.x header (or above) from Scriptics for this"
#endif
#endif
#ifdef UNDEF_STDC
# undef __STDC__
# define __STDC__ 0
#
#endif
#if 0//def WIN32
// this comes with the Scriptic release, or
// you can compile your own from generic/tclStubLib.c
// in the source release of Tcl and build it with any
// combination of the C runtime to match WinCVS, so you
// don't get those:
// LINK : warning LNK4098: defaultlib "LIBCMTD" conflicts with use of other libs; use /NODEFAULTLIB:library
#pragma comment(lib,"tclstub81.lib")
#endif
#include "TclGlue.h"
#include "AppConsole.h"
#include "AppGlue.h"
#include "CvsArgs.h"
#include "CvsEntries.h"
#include "dll_loader.h"
#include "FileTraversal.h"
#include "MacrosSetup.h"
#include "MoveToTrash.h"
#include "CvsPrefs.h"
#include "CvsCommands.h"
#ifdef WIN32
# include "wincvs.h"
# include "wincvsdebug.h"
# ifdef _DEBUG
# define new DEBUG_NEW
# undef THIS_FILE
static char THIS_FILE[] = __FILE__;
# endif
#endif /* WIN32 */
#ifndef NEW
#define NEW new
#endif
#if defined(_MSC_VER)
# define DECLC extern "C"
#else
# define DECLC
#endif
#if USE_TCL
#if defined(WIN32) || qCarbon
# define DEC_GLUE(f) (*f##_glue)
Tcl_Command DEC_GLUE(Tcl_CreateCommand)
_ANSI_ARGS_((Tcl_Interp *interp, char *cmdName, Tcl_CmdProc *proc,
ClientData clientData, Tcl_CmdDeleteProc *deleteProc));
Tcl_Interp * DEC_GLUE(Tcl_CreateInterp) _ANSI_ARGS_((void));
void DEC_GLUE(Tcl_AppendResult) _ANSI_ARGS_(TCL_VARARGS(Tcl_Interp *,interp));
void DEC_GLUE(Tcl_SetResult) _ANSI_ARGS_((Tcl_Interp *interp, char *string, Tcl_FreeProc *freeProc));
void DEC_GLUE(Tcl_DeleteInterp) _ANSI_ARGS_((Tcl_Interp *interp));
int DEC_GLUE(Tcl_Eval) _ANSI_ARGS_((Tcl_Interp *interp, char *string));
int DEC_GLUE(Tcl_EvalFile) _ANSI_ARGS_((Tcl_Interp *interp, char *fileName));
char * DEC_GLUE(Tcl_Alloc) _ANSI_ARGS_((unsigned int size));
void DEC_GLUE(Tcl_Free) _ANSI_ARGS_((char *ptr));
char * DEC_GLUE(Tcl_Realloc) _ANSI_ARGS_((char *ptr,
unsigned int size));
int DEC_GLUE(Tcl_ExprLong) _ANSI_ARGS_((Tcl_Interp *interp,
char *string, long *ptr));
char * DEC_GLUE(Tcl_Concat) _ANSI_ARGS_((int argc, char **argv));
char * DEC_GLUE(Tcl_SetVar2) _ANSI_ARGS_((Tcl_Interp *interp,
char *part1, char *part2, char *newValue,
int flags));
void DEC_GLUE(Tcl_DStringStartSublist) _ANSI_ARGS_((
Tcl_DString *dsPtr));
void DEC_GLUE(Tcl_DStringEndSublist) _ANSI_ARGS_((Tcl_DString *dsPtr));
void DEC_GLUE(Tcl_DStringFree) _ANSI_ARGS_((Tcl_DString *dsPtr));
void DEC_GLUE(Tcl_DStringInit) _ANSI_ARGS_((Tcl_DString *dsPtr));
void DEC_GLUE(Tcl_DStringResult) _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_DString *dsPtr));
char * DEC_GLUE(Tcl_DStringAppendElement) _ANSI_ARGS_((
Tcl_DString *dsPtr, CONST char *string));
void DEC_GLUE(TclFreeObj) _ANSI_ARGS_((Tcl_Obj *objPtr));
void DEC_GLUE(Tcl_SetObjResult) _ANSI_ARGS_((Tcl_Interp *interp,
Tcl_Obj *resultObjPtr));
Tcl_Obj * DEC_GLUE(Tcl_NewStringObj) _ANSI_ARGS_((CONST char *bytes,
int length));
Tcl_Obj * DEC_GLUE(Tcl_NewListObj) _ANSI_ARGS_((int objc,
Tcl_Obj *CONST objv[]));
int DEC_GLUE(Tcl_ListObjAppendElement) _ANSI_ARGS_((
Tcl_Interp *interp, Tcl_Obj *listPtr,
Tcl_Obj *objPtr));
void DEC_GLUE(Tcl_SourceRCFile) _ANSI_ARGS_((Tcl_Interp * interp));
int DEC_GLUE(Tcl_Init) _ANSI_ARGS_((Tcl_Interp * interp));
char * DEC_GLUE(Tcl_SetVar) _ANSI_ARGS_((Tcl_Interp * interp,
char * varName, char * newValue, int flags));
void DEC_GLUE(Tcl_FindExecutable) _ANSI_ARGS_((CONST char * argv0));
# define GLUE_WRAP(f) f##_glue
# define Tcl_CreateCommand GLUE_WRAP(Tcl_CreateCommand)
# define Tcl_CreateInterp GLUE_WRAP(Tcl_CreateInterp)
# define Tcl_AppendResult GLUE_WRAP(Tcl_AppendResult)
# define Tcl_SetResult GLUE_WRAP(Tcl_SetResult)
# define Tcl_DeleteInterp GLUE_WRAP(Tcl_DeleteInterp)
# define Tcl_Eval GLUE_WRAP(Tcl_Eval)
# define Tcl_EvalFile GLUE_WRAP(Tcl_EvalFile)
# define Tcl_Alloc GLUE_WRAP(Tcl_Alloc)
# define Tcl_Free GLUE_WRAP(Tcl_Free)
# define Tcl_Realloc GLUE_WRAP(Tcl_Realloc)
# define Tcl_ExprLong GLUE_WRAP(Tcl_ExprLong)
# define Tcl_Concat GLUE_WRAP(Tcl_Concat)
# define Tcl_SetVar2 GLUE_WRAP(Tcl_SetVar2)
# define Tcl_DStringStartSublist GLUE_WRAP(Tcl_DStringStartSublist)
# define Tcl_DStringEndSublist GLUE_WRAP(Tcl_DStringEndSublist)
# define Tcl_DStringFree GLUE_WRAP(Tcl_DStringFree)
# define Tcl_DStringInit GLUE_WRAP(Tcl_DStringInit)
# define Tcl_DStringResult GLUE_WRAP(Tcl_DStringResult)
# define Tcl_DStringAppendElement GLUE_WRAP(Tcl_DStringAppendElement)
# define TclFreeObj GLUE_WRAP(TclFreeObj)
# define Tcl_SetObjResult GLUE_WRAP(Tcl_SetObjResult)
# define Tcl_NewStringObj GLUE_WRAP(Tcl_NewStringObj)
# define Tcl_NewListObj GLUE_WRAP(Tcl_NewListObj)
# define Tcl_ListObjAppendElement GLUE_WRAP(Tcl_ListObjAppendElement)
# define Tcl_SourceRCFile GLUE_WRAP(Tcl_SourceRCFile)
# define Tcl_Init GLUE_WRAP(Tcl_Init)
# define Tcl_SetVar GLUE_WRAP(Tcl_SetVar)
# define Tcl_FindExecutable GLUE_WRAP(Tcl_FindExecutable)
#endif /* WIN32 */
// our app on OSX is CFM, while TCL is mach-o. We need to re-encode the function pointer
// we give to the mach-o code
#if qCarbon
# define _TCL_CALLBACK(f) ((Tcl_CmdProc *)_tcl_cfm_macho(f))
# define CompatLoadLibrary CarbonCompatLoadLibrary
# define CompatCloseLibrary CarbonCompatCloseLibrary
# define _CompatCallLibrary _CarbonCompatCallLibrary
#else
# ifdef qUnix
# define _TCL_CALLBACK(f) ((Tcl_CmdProc *)(f))
# ifdef CONST84 // is defined at tcl8.4
# define _TCL84_CONST CONST84
# endif
# else
# define _TCL_CALLBACK(f) f
# endif
#endif
#ifndef _TCL84_CONST
# define _TCL84_CONST
#endif
extern "C"
{
static int tclCvsProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
static int tclHelpProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
static int tclCvsOutProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
static int tclCvsErrProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
static int tclCvsBrowserProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
static int tclCvsEntriesProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
static void tclCvsEntriesDeleteProc(ClientData clientData);
#ifdef WIN32
static int tclDirProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
#endif /* WIN32 */
static int tclCvsExitOnErrorProc(ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
static int tclCvsLastErrorCodeProc(ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]);
/* not used at the moment
static Tcl_CmdProc tclSetDebugLevelProc(ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[]); */
}
// the tcl browser class entity
class CTCLBrowserEnt
{
public:
CTCLBrowserEnt()
{}
CTCLBrowserEnt(EntnodeData *data)
: node(data)
{}
CTCLBrowserEnt(const CTCLBrowserEnt & ent)
: node(ent.node)
{}
~CTCLBrowserEnt()
{}
CTCLBrowserEnt & operator=(const CTCLBrowserEnt & ent)
{
node = ent.node;
return *this;
}
bool IsSamePath(const char * pathstr) const
{
CStr path = pathstr;
CTcl_Interp::Deunixfy(path);
CStr file;
node.Data()->GetFullPathName(file);
CTcl_Interp::Deunixfy(file);
return path.compare(file) == 0;
}
EntnodeData* GetData() const
{
return node.Data();
}
// returns normalized path and file name (GetName() may return relative path)
void GetNormalized(CStr& path, CStr& fname) const
{
CStr file;
node.Data()->GetFullPathName(file);
CTcl_Interp::Deunixfy(file);
SplitPath(file, path, fname);
}
private:
ENTNODE node;
};
static std::vector<CTCLBrowserEnt> sTclBrowser;
class CTCLCvsConsole : public CCvsConsole
{
public:
CTCLCvsConsole(Tcl_Interp *interp) : fInterp(interp)
{
fLen = 100;
fAlloc = (char *)malloc((fLen + 1) * sizeof(char));
}
virtual ~CTCLCvsConsole()
{
if(fAlloc != 0L)
free(fAlloc);
}
virtual long cvs_out(char *txt, long len)
{
if(fAlloc == 0L)
return 0;
if(len > fLen)
{
fLen = len;
fAlloc = (char *)realloc(fAlloc, (fLen + 1) * sizeof(char));
}
if(fAlloc == 0L)
return 0;
memcpy(fAlloc, txt, len * sizeof(char));
fAlloc[len] = '\0';
Tcl_AppendResult(fInterp, fAlloc, 0L);
return len;
}
virtual long cvs_err(char *txt, long len)
{
return cvs_out(txt, len);
}
protected:
Tcl_Interp *fInterp;
int fLen;
char *fAlloc;
};
DECLC static int tclCvsProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
CTcl_Interp *tcl_interp = (CTcl_Interp*) clientData;
CvsArgs args;
for(int i = 1; i < argc; i++)
{
args.add(argv[i]);
}
CTCLCvsConsole console(interp);
int exitc = launchCVS(0L, args.Argc(), args.Argv(), &console);
//
// Set CvsLastErrorCode value. TCL script can query
// this value using cvslasterrorcode command
//
tcl_interp->SetCvsLastErrorCode(exitc);
//
// If command succeeded then return always TCL_OK and
// proceed with script. If command failed (exitc != 0)
// then exit only if CvsExitOnError is TRUE.
//
if(exitc == 0)
return TCL_OK;
else
return tcl_interp->GetCvsExitOnError() ? TCL_ERROR : TCL_OK;
}
DECLC static int tclHelpProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
Tcl_AppendResult(interp, "Help :\n", 0L);
Tcl_AppendResult(interp, " cvs : the cvs tool.\n", 0L);
Tcl_AppendResult(interp, " help : this help.\n", 0L);
Tcl_AppendResult(interp, "Others commands :\n", 0L);
Tcl_AppendResult(interp, " cd : change directory\n", 0L);
Tcl_AppendResult(interp, " pwd : print current directory\n", 0L);
Tcl_AppendResult(interp, " ls : list the current directory\n", 0L);
Tcl_AppendResult(interp, " info ? : misc. informations\n", 0L);
Tcl_AppendResult(interp, " info commands : all the TCL commands\n", 0L);
return TCL_OK;
}
DECLC static int tclCvsOutProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
for(int i = 1; i < argc; i++)
{
cvs_outstr(argv[i], strlen(argv[i]));
}
return TCL_OK;
}
DECLC static int tclCvsErrProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
for(int i = 1; i < argc; i++)
{
cvs_errstr(argv[i], strlen(argv[i]));
}
return TCL_OK;
}
DECLC static int tclCvsBrowserProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
if(argc < 2)
{
Tcl_AppendResult(interp, argv[0], " : Missing arguments\n", 0L);
return TCL_ERROR;
}
std::vector<CTCLBrowserEnt> & browser = clientData != 0L ?
*(std::vector<CTCLBrowserEnt> *)clientData : sTclBrowser;
if(strcmp(argv[1], "get") == 0)
{
if(argc != 2)
{
char *str = Tcl_Concat(argc, argv);
Tcl_AppendResult(interp, argv[0], " : Too many arguments : '", str, "'\n", 0L);
Tcl_Free(str);
return TCL_ERROR;
}
Tcl_Obj *list = Tcl_NewListObj(0, 0L);
std::vector<CTCLBrowserEnt>::const_iterator i;
for(i = browser.begin(); i != browser.end(); ++i)
{
const std::vector<CTCLBrowserEnt>::const_iterator entry = i;
CStr path;
entry->GetData()->GetFullPathName(path);
CTcl_Interp::Unixfy(path);
Tcl_Obj * obj = Tcl_NewStringObj(path, path.length());
Tcl_ListObjAppendElement(interp, list, obj);
//TclFreeObj(obj);
}
Tcl_SetObjResult(interp, list);
//TclFreeObj(list);
}
else if(strcmp(argv[1], "info") == 0)
{
if(argc != 4)
{
char *str = Tcl_Concat(argc, argv);
Tcl_AppendResult(interp, argv[0], " : Too many arguments : '", str, "'\n", 0L);
Tcl_Free(str);
return TCL_ERROR;
}
std::vector<CTCLBrowserEnt>::const_iterator i;
for(i = browser.begin(); i != browser.end(); ++i)
{
const std::vector<CTCLBrowserEnt>::const_iterator entry = i;
if(entry->IsSamePath(argv[2]))
{
EntnodeData* data = entry->GetData();
CStr path, fname, value;
entry->GetNormalized(path, fname);
const char *res = Tcl_SetVar2(interp, argv[3], "name", fname, 0);
if(res == 0L)
goto err1;
value = data->GetType() == ENT_FILE ? "file" : "folder";
res = Tcl_SetVar2(interp, argv[3], "kind", value, 0);
if(res == 0L)
goto err1;
res = Tcl_SetVar2(interp, argv[3], "path", path, 0);
if(res == 0L)
goto err1;
value = (*data)[EntnodeData::kStatus];
res = Tcl_SetVar2(interp, argv[3], "status", value, 0);
if(res == 0L)
goto err1;
value = data->IsMissing() ? "1" : "0";
res = Tcl_SetVar2(interp, argv[3], "missing", value, 0);
if(res == 0L)
goto err1;
value = data->IsUnknown() ? "1" : "0";
res = Tcl_SetVar2(interp, argv[3], "unknown", value, 0);
if(res == 0L)
goto err1;
value = data->IsIgnored() ? "1" : "0";
res = Tcl_SetVar2(interp, argv[3], "ignored", value, 0);
if(res == 0L)
goto err1;
value = data->IsLocked() ? "1" : "0";
res = Tcl_SetVar2(interp, argv[3], "locked", value, 0);
if(res == 0L)
goto err1;
value = data->IsUnmodified() ? "0" : "1";
res = Tcl_SetVar2(interp, argv[3], "modified", value, 0);
if(res == 0L)
goto err1;
value = data->GetDesc();
res = Tcl_SetVar2(interp, argv[3], "status", value, 0);
if(res == 0L)
goto err1;
if(data->GetType() == ENT_FILE)
{
value = (*data)[EntnodeFile::kVN];
res = Tcl_SetVar2(interp, argv[3], "revision", value, 0);
if(res == 0L)
goto err1;
value = (*data)[EntnodeFile::kTS];
res = Tcl_SetVar2(interp, argv[3], "timestamp", value, 0);
if(res == 0L)
goto err1;
value = (*data)[EntnodeFile::kOption];
res = Tcl_SetVar2(interp, argv[3], "option", value, 0);
if(res == 0L)
goto err1;
value = (*data)[EntnodeFile::kTag];
res = Tcl_SetVar2(interp, argv[3], "tag", value, 0);
if(res == 0L)
goto err1;
value = (*data)[EntnodeFile::kConflict];
res = Tcl_SetVar2(interp, argv[3], "conflict", value, 0);
if(res == 0L)
goto err1;
}
goto ok1;
err1:
Tcl_AppendResult(interp, argv[0], " : Error while creating '", argv[3], "'\n", 0L);
return TCL_ERROR;
ok1:
break;
}
}
}
else
{
char *str = Tcl_Concat(argc, argv);
Tcl_AppendResult(interp, argv[0], " : Wrong arguments : '", str, "'\n", 0L);
Tcl_Free(str);
return TCL_ERROR;
}
return TCL_OK;
}
class CFillTclEntries : public TraversalReport
{
public:
CSortList<ENTNODE> & m_entries;
std::vector<CStr> m_ignlist;
CFillTclEntries(CSortList<ENTNODE> & entries) :
m_entries(entries) {}
virtual ~CFillTclEntries() {}
virtual kTraversal EnterDirectory(const char *fullpath, const char *dirname, const UFSSpec * macspec)
{
Entries_Open (m_entries, fullpath);
BuildIgnoredList(m_ignlist, fullpath);
return kContinueTraversal;
}
virtual kTraversal ExitDirectory(const char *fullpath)
{
m_ignlist.erase(m_ignlist.begin(), m_ignlist.end());
return kContinueTraversal;
}
virtual kTraversal OnError(const char *err, int errcode)
{
return kTraversalError;
}
virtual kTraversal OnIdle(const char *fullpath)
{
return kContinueTraversal;
}
virtual kTraversal OnDirectory(const char *fullpath,
const char *fullname,
const char *name,
const struct stat & dir, const UFSSpec * macspec)
{
#if defined(WIN32) || defined(TARGET_OS_MAC)
if(stricmp(name, "CVS") == 0)
#else
if(strcmp(name, "CVS") == 0)
#endif
return kSkipFile;
/*EntnodeData *data = */Entries_SetVisited(fullpath, m_entries, name, dir, true, &m_ignlist);
return kSkipFile;
}
virtual kTraversal OnAlias(const char *fullpath,
const char *fullname,
const char *name,
const struct stat & dir, const UFSSpec * macspec)
{
return OnFile(fullpath, fullname, name, dir, macspec);
}
virtual kTraversal OnFile(const char *fullpath,
const char *fullname,
const char *name,
const struct stat & dir, const UFSSpec * macspec)
{
/*EntnodeData *data = */Entries_SetVisited(fullpath, m_entries, name, dir, false, &m_ignlist);
return kContinueTraversal;
}
};
DECLC static void tclCvsEntriesDeleteProc(ClientData clientData)
{
if(clientData != 0L)
delete (std::vector<CTCLBrowserEnt> *)clientData;
}
DECLC static int tclCvsEntriesProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
if(argc != 3)
{
Tcl_AppendResult(interp, argv[0], " : Wrong # of arguments\n", 0L);
return TCL_ERROR;
}
CSortList<ENTNODE> entries(200, ENTNODE::Compare);
// refetch all items
CFillTclEntries traverse(entries);
CStr path(argv[1]);
CTcl_Interp::Deunixfy(path);
/*kTraversal res = */FileTraverse(path, traverse);
// add the missing files
Entries_SetMissing(entries);
// now make the TCL entries
std::vector<CTCLBrowserEnt> *browser = NEW std::vector<CTCLBrowserEnt>;
int numEntries = entries.NumOfElements();
for(int i = 0; i < numEntries; i++)
{
const ENTNODE & theNode = entries.Get(i);
EntnodeData *data = theNode.Data();
browser->push_back(CTCLBrowserEnt(data));
}
Tcl_Command cmd = Tcl_CreateCommand (interp, argv[2], _TCL_CALLBACK(tclCvsBrowserProc),
(ClientData)browser, tclCvsEntriesDeleteProc);
return cmd != 0L ? TCL_OK : TCL_ERROR;
}
#ifdef WIN32
class LSReport : public TraversalReport
{
public:
Tcl_Interp *fInterp;
int fState;
LSReport(Tcl_Interp *interp) : fInterp(interp), fState(TCL_OK) {}
virtual kTraversal EnterDirectory(const char *fullpath, const char *dirname, const UFSSpec * macspec)
{
return kContinueTraversal;
}
virtual kTraversal ExitDirectory(const char *fullpath)
{
return kContinueTraversal;
}
virtual kTraversal OnError(const char *err, int errcode)
{
fState = TCL_ERROR;
Tcl_AppendResult(fInterp, err, "\n", 0L);
return kTraversalError;
}
virtual kTraversal OnIdle(const char *fullpath)
{
return kContinueTraversal;
}
virtual kTraversal OnAnyDevice(const char *fullpath,
const char *fullname,
const char *name,
const struct stat & dir, const UFSSpec * macspec)
{
Tcl_AppendResult(fInterp, name, "\n", 0L);
return kSkipFile;
}
};
DECLC static int tclDirProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
LSReport report(interp);
char path[256];
getcwd(path, 256);
kTraversal res = FileTraverse(path, report);
return report.fState;
}
#endif /* WIN32 */
DECLC static int tclSafeRemove (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
if(argc < 2)
{
Tcl_AppendResult(interp, argv[0], " : Missing list of files\n", 0L);
return TCL_ERROR;
}
for(int i = 1; i < argc; i++)
{
CStr fn(argv[i]);
CTcl_Interp::Deunixfy(fn);
if(!CompatMoveToTrash(fn, 0)) // dir is not needed, TCL profides fully qualified file name
{
cvs_err("Unable to trash '%s'\n", (char *)fn);
}
}
return TCL_OK;
}
DECLC static int tclCvsExitOnErrorProc(ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
CTcl_Interp *tcl_interp = (CTcl_Interp*) clientData;
//
// CvsExitOnError command can be used to define whether TCL macro
// is automatically terminated if CVS command returned error (non zero).
//
// CvsExitOnError has following modes:
// false = Do not exit automaticaly. CvsLastErrorCode constains the last error code.
// true = Exit TCL script in error (default).
//
if(argc < 2)
{
Tcl_AppendResult(interp, argv[0], " : Missing argument (true|false)\n", 0L);
return TCL_ERROR;
}
if(strcmp(argv[1], "true") == 0)
tcl_interp->SetCvsExitOnError(true);
else if(strcmp(argv[1], "false") == 0)
tcl_interp->SetCvsExitOnError(false);
else
{
char *str = Tcl_Concat(argc, argv);
Tcl_AppendResult(interp, argv[0], " : Wrong argument : '", str, "'\n", 0L);
Tcl_Free(str);
return TCL_ERROR;
}
return TCL_OK;
}
DECLC static int tclCvsLastErrorCodeProc(ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
CTcl_Interp *tcl_interp = (CTcl_Interp*) clientData;
if(argc < 2)
{
char value[35];
// CvsLastErrorCode called without arguments, so return current value
sprintf(value, "%d", tcl_interp->GetCvsLastErrorCode());
Tcl_AppendResult(interp, value, 0L);
}
else
{
// Set the value of LastErrorCode variable
tcl_interp->SetCvsLastErrorCode(atoi(argv[1]));
}
return TCL_OK;
}
#if defined(WIN32)
DECLC static int tclGetFileModTimeProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
struct wnt_stat sb;
struct tm * p_utc = NULL;
if (argc < 2)
{
Tcl_AppendResult(interp, argv[0], " : Missing argument (int)\n", 0L);
return TCL_ERROR;
}
if (argc > 2)
{
char * str = Tcl_Concat(argc, argv);
Tcl_AppendResult(interp, argv[0], " : Too many arguments : '", str, "'\n", 0L);
Tcl_Free(str);
return TCL_ERROR;
}
if (wnt_stat(argv[1], &sb) != 0)
{
Tcl_AppendResult(interp, argv[0], " : Could not find file : '", argv[1], "'\n", 0L);
return TCL_ERROR;
}
p_utc = gmtime(& sb.st_mtime);
Tcl_AppendResult(interp, asctime(p_utc), 0L);
return TCL_OK;
}
DECLC static int tclSetDebugMaskProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
if (argc < 2)
{
Tcl_AppendResult(interp, argv[0], " : Missing argument (int)\n", 0L);
return TCL_ERROR;
}
if (argc > 3)
{
char * str = Tcl_Concat(argc, argv);
Tcl_AppendResult(interp, argv[0], " : Too many arguments : '", str, "'\n", 0L);
Tcl_Free(str);
return TCL_ERROR;
}
char * endc = NULL;
unsigned long n;
bool b;
n = strtoul(argv[1], & endc, 0);
if (*endc)
{
Tcl_AppendResult(interp, argv[0], " : Could not understand argument '", argv[1], "'\n", 0L);
return TCL_ERROR;
}
if (argc == 2)
{
SetWinCvsDebugMask(n);
return TCL_OK;
}
if (!stricmp(argv[2], "true"))
{
b = true;
}
else if (!stricmp(argv[2], "false"))
{
b = false;
}
else
{
b = strtoul(argv[2], & endc, 0) != 0;
if (*endc)
{
Tcl_AppendResult(interp, argv[0], " : Could not understand argument '", argv[2], "'\n", 0L);
return TCL_ERROR;
}
}
SetWinCvsDebugMaskBit(n,b);
return TCL_OK;
}
DECLC static int tclGetDebugMaskProc (ClientData clientData, Tcl_Interp *interp, int argc, _TCL84_CONST char *argv[])
{
char retstr[32];
if (argc < 2)
{
_snprintf(retstr,32,"%u",GetWinCvsDebugMask());
Tcl_AppendResult(interp, retstr, 0L);
return TCL_OK;
}
if (argc > 3)
{
char * str = Tcl_Concat(argc, argv);
Tcl_AppendResult(interp, argv[0], " : Too many arguments : '", str, "'\n", 0L);
Tcl_Free(str);
return TCL_ERROR;
}
char * endc = NULL;
unsigned long n;
n = strtoul(argv[1], & endc, 0);
if (*endc)
{
Tcl_AppendResult(interp, argv[0], " : Could not understand argument '", argv[1], "'\n", 0L);
return TCL_ERROR;
}
_snprintf(retstr, 32, "%u", GetWinCvsDebugMaskBit(n));
Tcl_AppendResult(interp, retstr, 0L);
return TCL_OK;
}
#endif // WIN32
#endif // USE_TCL
void TclBrowserReset(void)
{
#if USE_TCL
sTclBrowser.erase(sTclBrowser.begin(), sTclBrowser.end());
#endif
}
// note that although 'path' is not used here any longer, it makes sense to retain
// that attribute since it gives you an option to figure out relative filename,
// relative to 'path' that designates the folder in which the operation takes place
void TclBrowserAppend(const char * /*path*/, EntnodeData *data)
{
#if USE_TCL
sTclBrowser.push_back(CTCLBrowserEnt(data));
#endif
}
static Tcl_Interp *myTcl_CreateInterp(void)
{
#if USE_TCL
# ifdef WIN32
CWincvsApp* app = (CWincvsApp *)AfxGetApp();
CStr path;
app->GetAppModule(path);
Tcl_FindExecutable(path);
# endif
#endif
# ifdef qMacCvsPP
CStr appPath = CMacCvsApp::GetAppPath();
Tcl_FindExecutable(appPath);
# endif
# if USE_TCL
Tcl_Interp *res = Tcl_CreateInterp();
return res;
# else
return NULL;
# endif
}
CTcl_Interp::CTcl_Interp()
{
fInterp = 0L;
fExitOnError = true;
fLastErrorCode = 0;
#if USE_TCL
if(!CTcl_Interp::IsAvail())
{
cvs_err("TCL is not available !\n");
return;
}
fInterp = myTcl_CreateInterp();
if(fInterp == 0L)
{
cvs_err("Unable to create a new TCL interpreter !\n");
return;
}
Tcl_Command cmd;
// this parameter is used to get access to CTcl_Interp::SetCvsLastErrorCode
// in tclCvsProc method
cmd = Tcl_CreateCommand (fInterp, "cvs", _TCL_CALLBACK(tclCvsProc),
(ClientData)this, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "help", _TCL_CALLBACK(tclHelpProc),
(ClientData)0L, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "cvsout", _TCL_CALLBACK(tclCvsOutProc),
(ClientData)0L, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "cvserr", _TCL_CALLBACK(tclCvsErrProc),
(ClientData)0L, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "cvsbrowser", _TCL_CALLBACK(tclCvsBrowserProc),
(ClientData)0L, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "cvsentries", _TCL_CALLBACK(tclCvsEntriesProc),
(ClientData)0L, (Tcl_CmdDeleteProc *)0L);
#ifdef WIN32
cmd = Tcl_CreateCommand (fInterp, "ls", _TCL_CALLBACK(tclDirProc),
(ClientData)0L, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "dir", _TCL_CALLBACK(tclDirProc),
(ClientData)0L, (Tcl_CmdDeleteProc *)0L);
#endif /* WIN32 */
cmd = Tcl_CreateCommand (fInterp, "trash", _TCL_CALLBACK(tclSafeRemove),
(ClientData)0L, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "cvsexitonerror", _TCL_CALLBACK(tclCvsExitOnErrorProc),
(ClientData)this, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "cvslasterrorcode", _TCL_CALLBACK(tclCvsLastErrorCodeProc),
(ClientData)this, (Tcl_CmdDeleteProc *)0L);
#if defined(WIN32)
cmd = Tcl_CreateCommand (fInterp, "cvssetdebugmask", _TCL_CALLBACK(tclSetDebugMaskProc),
(ClientData)this, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "cvsgetdebugmask", _TCL_CALLBACK(tclGetDebugMaskProc),
(ClientData)this, (Tcl_CmdDeleteProc *)0L);
cmd = Tcl_CreateCommand (fInterp, "cvsfilemodtime", _TCL_CALLBACK(tclGetFileModTimeProc),
(ClientData)this, (Tcl_CmdDeleteProc *)0L);
#endif // defined(WIN32)
CStr rcfile;
MacrosGetLoc(rcfile);
if(!rcfile.endsWith(kPathDelimiter))
rcfile << kPathDelimiter;
rcfile << "startup.tcl";
Tcl_SetVar(fInterp, "tcl_rcFileName", rcfile, TCL_GLOBAL_ONLY);
Tcl_SetVar(fInterp, "tcl_interactive", "1", TCL_GLOBAL_ONLY);
Tcl_Init(fInterp);
Tcl_SourceRCFile(fInterp);
#endif
}
CTcl_Interp::~CTcl_Interp()
{
#if USE_TCL
if(fInterp != 0L)
Tcl_DeleteInterp(fInterp);
#endif
}
bool CTcl_Interp::IsAvail(void)
{
#if USE_TCL
#if defined(TARGET_OS_MAC) && !qCarbon
return Tcl_CreateInterp != 0L;
#else /* !TARGET_OS_MAC */
static bool firstTime = true;
static bool tclAvail = false;
if(firstTime)
{
# if defined(WIN32) || qCarbon
CompatConnectID connID;
# endif
# ifdef WIN32
extern char *findTcl (char *_minVer, int _exact, int _dbgOnly);
char *tclver = 0L;
try
{
tclver = findTcl("8.1", 0, 0);
}
catch(...)
{
}
if(tclver != 0L)
tclAvail = CompatLoadLibrary(&connID, tclver) != 0;
if(!tclAvail)
tclAvail = CompatLoadLibrary(&connID, "tcl87.dll") != 0 ||
CompatLoadLibrary(&connID, "tcl86.dll") != 0 ||
CompatLoadLibrary(&connID, "tcl85.dll") != 0 ||
CompatLoadLibrary(&connID, "tcl84.dll") != 0 ||
CompatLoadLibrary(&connID, "tcl83.dll") != 0 ||
CompatLoadLibrary(&connID, "tcl82.dll") != 0 ||
CompatLoadLibrary(&connID, "tcl81.dll") != 0;
# endif
# if TARGET_RT_MAC_CFM
if (UEnvironment::GetOSVersion() >= 0x1000)
tclAvail = CompatLoadLibrary(&connID, "/System/Library/Frameworks/Tcl.framework");
else
tclAvail = CompatLoadLibrary(&connID, "tcl8.3");
# endif
# if TARGET_RT_MAC_MACHO
tclAvail = CompatLoadLibrary(&connID, "/usr/lib/libtcl.dylib");
# endif
# if defined(WIN32) || qCarbon
# define LOAD_CODEFRAG(name) \
if(tclAvail) \
tclAvail = (*(void **)&name##_glue = \
_CompatCallLibrary(connID, #name)) != 0L
# endif
# if defined(WIN32) || TARGET_API_MAC_CARBON
LOAD_CODEFRAG(Tcl_CreateCommand);
LOAD_CODEFRAG(Tcl_CreateInterp);
LOAD_CODEFRAG(Tcl_AppendResult);
LOAD_CODEFRAG(Tcl_SetResult);
LOAD_CODEFRAG(Tcl_DeleteInterp);
LOAD_CODEFRAG(Tcl_Eval);
LOAD_CODEFRAG(Tcl_EvalFile);
LOAD_CODEFRAG(Tcl_Alloc);
LOAD_CODEFRAG(Tcl_Free);
LOAD_CODEFRAG(Tcl_Realloc);
LOAD_CODEFRAG(Tcl_ExprLong);
LOAD_CODEFRAG(Tcl_Concat);
LOAD_CODEFRAG(Tcl_SetVar2);
LOAD_CODEFRAG(Tcl_DStringStartSublist);
LOAD_CODEFRAG(Tcl_DStringEndSublist);
LOAD_CODEFRAG(Tcl_DStringFree);
LOAD_CODEFRAG(Tcl_DStringInit);
LOAD_CODEFRAG(Tcl_DStringResult);
LOAD_CODEFRAG(Tcl_DStringAppendElement);
LOAD_CODEFRAG(TclFreeObj);
LOAD_CODEFRAG(Tcl_SetObjResult);
LOAD_CODEFRAG(Tcl_NewStringObj);
LOAD_CODEFRAG(Tcl_NewListObj);
LOAD_CODEFRAG(Tcl_ListObjAppendElement);
LOAD_CODEFRAG(Tcl_SourceRCFile);
LOAD_CODEFRAG(Tcl_Init);
LOAD_CODEFRAG(Tcl_SetVar);
LOAD_CODEFRAG(Tcl_FindExecutable);
if(!tclAvail)
return false;
# endif /* WIN32 */
Tcl_Interp *interp = myTcl_CreateInterp();
tclAvail = interp != 0L;
if (!tclAvail)
return false;
Tcl_Init(interp);
/* Destroy the interp we needed just for this */
Tcl_DeleteInterp(interp);
firstTime = false;
}
return tclAvail;
#endif /* !TARGET_OS_MAC */
#else
return false;
#endif
}
kTclRes CTcl_Interp::DoScript(const char *script)
{
#if USE_TCL
bool bTclFileStarted;
if(fInterp == 0L)
return false;
// If script cmd begins with "source " then this
// must be TCL file execution.
bTclFileStarted = (strncmp(script, "source ", 7) == 0);
if(bTclFileStarted)
gCvsPrefs.SetTclFileRunning(true);
int exitc = Tcl_Eval(fInterp, (char *)script);
if(bTclFileStarted)
gCvsPrefs.SetTclFileRunning(false);
size_t len = strlen(fInterp->result);
if(exitc == TCL_ERROR)
{
cvs_errstr(fInterp->result, len);
if(len != 0 && fInterp->result[len - 1] != '\n')
cvs_errstr("\n", 1);
}
else
{
cvs_outstr(fInterp->result, len);
if(len != 0 && fInterp->result[len - 1] != '\n')
cvs_outstr("\n", 1);
}
return exitc;
#else
return false;
#endif
}
kTclRes CTcl_Interp::DoScriptVar(const char *format, ...)
{
#if USE_TCL
if(fInterp == 0L)
return false;
va_list args;
char script[1024] = {'\0'};
va_start (args, format);
vsprintf (script, format, args);
va_end (args);
return DoScript(script);
#else
return false;
#endif
}
kTclRes CTcl_Interp::DoFile(const char *file)
{
#if USE_TCL
if(fInterp == 0L)
return false;
int exitc = Tcl_EvalFile(fInterp, (char *)file);
size_t len = strlen(fInterp->result);
if(exitc == TCL_ERROR)
{
cvs_errstr(fInterp->result, len);
if(len != 0 && fInterp->result[len - 1] != '\n')
cvs_errstr("\n", 1);
}
else
{
cvs_outstr(fInterp->result, len);
if(len != 0 && fInterp->result[len - 1] != '\n')
cvs_outstr("\n", 1);
}
return exitc;
#else
return false;
#endif
}
void CTcl_Interp::Unixfy(CStr & path)
{
char *ptr = path;
while((ptr = strchr(ptr, kPathDelimiter)) != 0L)
{
*ptr++ = kTCLPathDelimiter;
}
ptr = (char *)path + path.length() - 1;
if(*ptr == kTCLPathDelimiter)
{
*ptr = '\0';
}
}
void CTcl_Interp::Deunixfy(CStr & path)
{
char *ptr = path;
while((ptr = strchr(ptr, kTCLPathDelimiter)) != 0L)
{
*ptr++ = kPathDelimiter;
}
}
|