Changeset 1707 for trunk/dll/grep2.c
- Timestamp:
- Feb 8, 2014, 9:14:08 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/grep2.c ¶
r1544 r1707 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2004, 201 0Steven H. Levine9 Copyright (c) 2004, 2014 Steven H. Levine 10 10 11 11 01 Aug 04 SHL Rework lstrip/rstrip usage … … 27 27 08 Mar 09 GKY Additional strings move to PCSZs in init.c 28 28 07 Oct 09 SHL Remember last search mask across runs 29 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 30 31 fixme for more excess locals to be gone 29 17 Jan 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *. 30 08 Feb 14 SHL Support svn git hg CVS etc. metadata directory ignore 31 32 FIXME for more excess locals to be gone 32 33 33 34 ***********************************************************************/ … … 184 185 } 185 186 187 /** 188 * Add mask to mask list 189 * If mask contains both path an wildcard components if is just appended 190 * If mask contains only wildcard component, path is extracted from last mask in masks 191 * If mask contains only path components, wildcard is extracted from last mask in masks 192 * @param masks is semicolon separated mask string to be updated 193 * @param newMask is mask to append 194 * @note code limits mask length to 8192 to match GrepDlgProc 195 * @returns true if OK 196 */ 197 198 #if 0 // 2010-09-27 SHL FIXME to use 199 200 static BOOL updateMaskString(CHAR masks[8192], PCSZ newMask) 201 { 202 BOOL ok = TRUE; 203 BOOL isPath; 204 BOOL isWild; 205 UINT len; 206 CHAR mask[CCHMAXPATH + 2]; // 2 for semicolons 207 CHAR wildcard[CCHMAXPATH]; 208 PSZ p; 209 210 // 2010-09-27 SHL FIXME to be globally available 211 #define CH_QMARK '?' 212 #define CH_STAR '*' 213 #define CH_BACKSLASH '\\' 214 #define CH_SEMICOLON ';' 215 static PCSZ PCSZ_SEMICOLON = ";"; // 2010-09-27 SHL FIXME to be globally available from init.c 216 217 // Extract last mask 218 len = strlen(masks); 219 if (!len) 220 *mask = 0; 221 else { 222 if (len < CCHMAXPATH + 2) 223 strcpy(mask, masks); 224 else { 225 strcpy(mask, masks + len - (CCHMAXPATH + 1)); 226 len = strlen(mask); 227 } 228 } 229 if (len) { 230 p = mask + len - 1; 231 if (*p == CH_SEMICOLON) 232 *p = 0; // Chop trailing 233 p = strrchr(mask, CH_SEMICOLON); // Find last 234 if (p) 235 memmove(mask, p + 1, strlen(p + 1) + 1); // Move to front 236 } 237 238 isPath = strchr(newMask, CH_BACKSLASH) != NULL; // 2010-09-27 SHL FIXME if test too weak 239 // 2010-09-27 SHL FIXME to have function 240 isWild = strchr(newMask, CH_STAR) || strchr(newMask, CH_QMARK); 241 242 // Assume ready to do if both path and wildcard otherwise edit 243 244 if (isPath && !isWild) { 245 // Extract wildcard from old mask 246 p = strrchr(mask, CH_BACKSLASH); 247 if (!p) 248 strcpy(wildcard, mask); 249 else 250 strcpy(wildcard, p + 1); 251 // Append wildcard to path 252 strcpy(mask, newMask); 253 bstrip(mask); 254 len = strlen(mask); 255 if (len && mask[len - 1] != CH_BACKSLASH) 256 strcat(mask, PCSZ_BACKSLASH); 257 strcat(mask, wildcard); 258 } 259 else if (!isPath) { 260 // Use path from old mask 261 len = strlen(mask); 262 p = strrchr(mask, CH_BACKSLASH); 263 if (p) 264 *(p + 1) = 0; 265 else 266 *mask = 0; // Assume just wilcard 267 // Append new wildcard or filename 268 strcat(mask, newMask); 269 bstrip(mask); 270 } 271 272 if (strlen(masks) + strlen(mask) + 3 > sizeof(masks)) 273 Runtime_Error(pszSrcFile, __LINE__, "too big"); 274 275 // Append separator 276 if (masks[strlen(masks) - 1] != CH_SEMICOLON) 277 strcat(masks, PCSZ_SEMICOLON); 278 // Append mask to list 279 strcat(masks, mask); 280 281 return ok; 282 } 283 284 #endif // 2010-09-27 SHL FIXME to use 285 186 286 MRESULT EXPENTRY GrepDlgProc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2) 187 287 { … … 200 300 CHAR *moder = "r"; 201 301 202 // 07 Oct 09 SHL fixme to not be static and save to profile? 203 static CHAR lastmask[8192]; 204 static CHAR lasttext[4096]; 302 static BOOL fInitDone; // First time init done 303 // 07 Oct 09 SHL FIXME to not be static 304 // 07 Oct 09 SHL FIXME to save to profile? 305 // GREP_FRAME dialog buffers 306 static CHAR fileMasks[8192]; // ; separated 307 static CHAR searchText[4096]; // Structured 205 308 static BOOL recurse = TRUE; 206 309 static BOOL sensitive; … … 209 312 static BOOL searchEAs = TRUE; 210 313 static BOOL searchFiles = TRUE; 211 static BOOL changed;212 static BOOL fInitDone; // First time init done213 314 static BOOL findifany = TRUE; 214 static BOOL gRemember;315 static BOOL rememberSettings; 215 316 static UINT newer = 0; 216 317 static UINT older = 0; 217 static ULONG greater = 0; 218 static ULONG lesser = 0; 318 static ULONG greaterthan = 0; 319 static ULONG lessthan = 0; 320 static BOOL ignoreSVN; 321 322 static BOOL maskListChanged; 219 323 static SHORT sLastMaskSelect = LIT_NONE; 220 324 … … 227 331 GrepInfo = mp2; 228 332 if (GrepInfo->szGrepPath && IsFile(GrepInfo->szGrepPath) == 0) { 229 BldFullPathName( lastmask, GrepInfo->szGrepPath, "*"); // Directory passed333 BldFullPathName(fileMasks, GrepInfo->szGrepPath, "*"); // Directory passed 230 334 sLastMaskSelect = LIT_NONE; 231 335 fInitDone = TRUE; … … 238 342 } 239 343 if (!fInitDone) { 240 lastmask[0] = '*';241 lastmask[1] = 0;344 fileMasks[0] = '*'; 345 fileMasks[1] = 0; 242 346 } 243 347 … … 260 364 GREP_LESSER, 261 365 EM_SETTEXTLIMIT, MPFROM2SHORT(34, 0), MPVOID); 262 WinSetDlgItemText(hwnd, GREP_MASK, lastmask);366 WinSetDlgItemText(hwnd, GREP_MASK, fileMasks); 263 367 WinSendDlgItemMsg(hwnd, 264 368 GREP_MASK, EM_SETSEL, MPFROM2SHORT(0, 8192), MPVOID); 265 369 size = sizeof(BOOL); 266 370 PrfQueryProfileData(fmprof, FM3Str, "RememberFlagsGrep", 267 (PVOID) & gRemember, &size);268 WinCheckButton(hwnd, GREP_REMEMBERFLAGS, gRemember);269 if ( gRemember) {371 (PVOID) & rememberSettings, &size); 372 WinCheckButton(hwnd, GREP_REMEMBERFLAGS, rememberSettings); 373 if (rememberSettings) { 270 374 size = sizeof(BOOL); 271 375 PrfQueryProfileData(fmprof, FM3Str, "Grep_Recurse", … … 287 391 (PVOID) & searchEAs, &size); 288 392 } 289 if (! gRemember) {393 if (!rememberSettings) { 290 394 recurse = TRUE; 291 395 sensitive = FALSE; 292 396 absolute = FALSE; 293 397 sayfiles = TRUE; 398 ignoreSVN = TRUE; 294 399 searchEAs = TRUE; 295 400 searchFiles = TRUE; 296 401 } 297 WinSetWindowText(hwndMLE, lasttext);298 if (* lasttext) {402 WinSetWindowText(hwndMLE, searchText); 403 if (*searchText) { 299 404 MLEsetcurpos(hwndMLE, 0); 300 405 MLEsetcurposa(hwndMLE, 4096); … … 309 414 WinCheckButton(hwnd, GREP_SEARCHFILES, searchFiles); 310 415 WinCheckButton(hwnd, GREP_FINDIFANY, findifany); 311 312 sprintf(s, "%lu", greater); 416 WinCheckButton(hwnd, GREP_IGNORESVN, ignoreSVN); 417 418 sprintf(s, "%lu", greaterthan); 313 419 WinSetDlgItemText(hwnd, GREP_GREATER, s); 314 sprintf(s, "%lu", less er);420 sprintf(s, "%lu", lessthan); 315 421 WinSetDlgItemText(hwnd, GREP_LESSER, s); 316 422 sprintf(s, "%u", newer); … … 342 448 //if (sLastMaskSelect >= 0) 343 449 // WinSendDlgItemMsg(hwnd, GREP_LISTBOX, LM_SELECTITEM, 344 // 450 // MPFROMSHORT(sLastMaskSelect), MPFROMSHORT(TRUE)); 345 451 346 452 FillPathListBox(hwnd, 347 453 WinWindowFromID(hwnd, GREP_DRIVELIST), 348 454 (HWND) 0, NULL, FALSE); 349 // 25 Sep 09 SHL fixmeselect drive matching current container?455 // 25 Sep 09 SHL FIXME select drive matching current container? 350 456 break; 351 457 … … 369 475 case GREP_REMEMBERFLAGS: 370 476 { 371 BOOL gRemember= WinQueryButtonCheckstate(hwnd, GREP_REMEMBERFLAGS);477 BOOL rememberSettings = WinQueryButtonCheckstate(hwnd, GREP_REMEMBERFLAGS); 372 478 373 479 PrfWriteProfileData(fmprof, FM3Str, "RememberFlagsGrep", 374 (PVOID) & gRemember, sizeof(BOOL));480 (PVOID) & rememberSettings, sizeof(BOOL)); 375 481 } 376 482 break; … … 389 495 WinQueryDlgItemText(hwnd, GREP_MASK, 8192, s); 390 496 bstrip(s); 497 // Find last wildcard 391 498 p = strrchr(s, '\\'); 392 499 if (p) … … 400 507 strcpy(simple, "\\*"); 401 508 if (simple[strlen(simple) - 1] == ';') 402 simple[strlen(simple) - 1] = 0; 509 simple[strlen(simple) - 1] = 0; // Chop trailing semi 403 510 lLen = strlen(simple) + 1; 404 511 if (strlen(s) > 8192 - lLen) { … … 408 515 } 409 516 517 // 19 Aug 10 SHL FIXME to honor append 410 518 sSelect = (SHORT) WinSendDlgItemMsg(hwnd, 411 519 GREP_DRIVELIST, … … 437 545 break; // LN_ENTER 438 546 } // switch 439 break; 547 break; //GREP_DRIVELIST 440 548 441 549 case GREP_LISTBOX: … … 450 558 case LN_ENTER: 451 559 case LN_SELECT: 560 // Enter checkbox controls whether or not notice is ignored 561 // If not checked, enter is ignored because select has already been processed 562 // If check, select is ignored and enter is processed 452 563 if ((SHORT2FROMMP(mp1) == LN_ENTER && 453 564 !WinQueryButtonCheckstate(hwnd, GREP_APPEND)) || 454 565 (SHORT2FROMMP(mp1) == LN_SELECT && 455 566 WinQueryButtonCheckstate(hwnd, GREP_APPEND))) 456 break; 567 break; // Ignore 457 568 { 458 569 sSelect = (SHORT) WinSendDlgItemMsg(hwnd, … … 464 575 *s = 0; 465 576 if (WinQueryButtonCheckstate(hwnd, GREP_APPEND)) { 577 // Append to existing 466 578 WinQueryDlgItemText(hwnd, GREP_MASK, 8192, s); 467 579 bstrip(s); … … 469 581 strcat(s, ";"); 470 582 } 583 // Append listbox item to mask string 471 584 WinSendDlgItemMsg(hwnd, 472 585 GREP_LISTBOX, … … 481 594 break; 482 595 } 483 break; 596 break; // GREP_LISTBOX 484 597 485 598 case GREP_MASK: … … 623 736 strcat(s, simple); 624 737 WinSetDlgItemText(hwnd, GREP_MASK, s); 738 // 19 Aug 10 SHL FIXME to honor append 625 739 WinSendDlgItemMsg(hwnd, 626 740 GREP_MASK, … … 677 791 } 678 792 rstrip(s); 679 // 25 Sep 09 SHL fixmeto honor append793 // 25 Sep 09 SHL FIXME to honor append 680 794 if (*s) { 681 795 strcat(s, simple); … … 706 820 LM_INSERTITEM, 707 821 MPFROM2SHORT(LIT_SORTASCENDING, 0), MPFROMP(s)); 708 changed = TRUE;822 maskListChanged = TRUE; 709 823 } 710 824 } … … 722 836 if (sSelect >= sLastMaskSelect) 723 837 sLastMaskSelect--; 724 changed = TRUE;838 maskListChanged = TRUE; 725 839 } 726 840 break; … … 778 892 INT x; 779 893 BOOL incl; 780 781 894 CHAR new[8192]; 782 895 896 // Find first mask 783 897 *s = 0; 784 898 WinQueryDlgItemText(hwnd, GREP_MASK, 8192, s); … … 796 910 if (!*s) 797 911 strcpy(s, "*"); 912 798 913 DosError(FERR_DISABLEHARDERR); 799 914 DosQCurDisk(&ulDriveNum, &ulDriveMap); … … 808 923 break; 809 924 case GREP_LOCALHDS: 925 // 06 Jun 10 SHL FIXME to work if drive not prescanned 810 926 if (!(driveflags[x] & 811 927 (DRIVE_REMOVABLE | DRIVE_IGNORE | DRIVE_REMOTE | … … 814 930 break; 815 931 case GREP_REMOTEHDS: 816 if (!(driveflags[x] & 817 (DRIVE_REMOVABLE | DRIVE_IGNORE)) && 932 if (!(driveflags[x] & (DRIVE_REMOVABLE | DRIVE_IGNORE)) && 818 933 (driveflags[x] & DRIVE_REMOTE)) 819 934 incl = TRUE; … … 841 956 Runtime_Error(pszSrcFile, __LINE__, NULL); 842 957 else { 843 // 07 Feb 08 SHL - fixmeto malloc and free in thread958 // 07 Feb 08 SHL - FIXME to malloc and free in thread 844 959 static GREP g; // Passed to thread 845 960 p = xmalloc(8192 + 512, pszSrcFile, __LINE__); 846 961 if (!p) 847 break; 962 break; // Already complained 848 963 memset(&g, 0, sizeof(GREP)); 849 964 g.size = sizeof(GREP); … … 855 970 searchFiles = WinQueryButtonCheckstate(hwnd, GREP_SEARCHFILES) != 0; 856 971 findifany = WinQueryButtonCheckstate(hwnd, GREP_FINDIFANY) != 0; 857 gRemember = WinQueryButtonCheckstate(hwnd, GREP_REMEMBERFLAGS); 858 if (gRemember) { 972 ignoreSVN = WinQueryButtonCheckstate(hwnd, GREP_IGNORESVN) != 0; 973 rememberSettings = WinQueryButtonCheckstate(hwnd, GREP_REMEMBERFLAGS); 974 if (rememberSettings) { 859 975 PrfWriteProfileData(fmprof, FM3Str, "Grep_Recurse", 860 976 (PVOID) & recurse, sizeof(BOOL)); … … 889 1005 WinSetFocus(HWND_DESKTOP, WinWindowFromID(hwnd, GREP_MASK)); 890 1006 free(p); 891 # 1007 # ifdef FORTIFY 892 1008 Fortify_LeaveScope(); 893 # 1009 # endif 894 1010 break; 895 1011 } 896 strcpy(g. tosearch, p);897 strcpy( lastmask, p);1012 strcpy(g.fileMasks, p); 1013 strcpy(fileMasks, p); 898 1014 // Parse search strings 899 1015 *p = 0; 900 1016 WinQueryWindowText(hwndMLE, 4096, p); 901 strcpy( lasttext, p);1017 strcpy(searchText, p); 902 1018 { 903 1019 CHAR *pszFrom; … … 935 1051 *p = 0; 936 1052 WinQueryDlgItemText(hwnd, GREP_GREATER, 34, p); 937 greater = atol(p);1053 greaterthan = atol(p); 938 1054 *p = 0; 939 1055 WinQueryDlgItemText(hwnd, GREP_LESSER, 34, p); 940 less er= atol(p);1056 lessthan = atol(p); 941 1057 *p = 0; 942 1058 WinQueryDlgItemText(hwnd, GREP_NEWER, 34, p); … … 972 1088 if (!older) 973 1089 g.olderthan = 0; 974 g.greaterthan = greater ;975 g.lessthan = less er;1090 g.greaterthan = greaterthan; 1091 g.lessthan = lessthan; 976 1092 g.absFlag = absolute; 977 1093 g.caseFlag = sensitive; … … 981 1097 g.searchFiles = searchFiles; 982 1098 g.findifany = findifany; 1099 g.ignoreSVN = ignoreSVN; 1100 983 1101 g.hwndFiles = hwndCollect; 984 1102 g.hwnd = WinQueryWindow(hwndCollect, QW_PARENT); 985 1103 g.hwndCurFile = WinWindowFromID(g.hwnd, DIR_SELECTED); 1104 1105 // Get settings from collector filter 986 1106 g.attrFile = ((DIRCNRDATA *)INSTDATA(hwndCollect))->mask.attrFile; 987 1107 g.antiattr = ((DIRCNRDATA *)INSTDATA(hwndCollect))->mask.antiattr; 988 1108 g.stopflag = &((DIRCNRDATA *)INSTDATA(hwndCollect))->stopflag; 1109 1110 if (rememberSettings) { 1111 PrfWriteProfileData(fmprof, FM3Str, "Grep_Recurse", 1112 (PVOID) & recurse, sizeof(BOOL)); 1113 PrfWriteProfileData(fmprof, FM3Str, "Grep_Absolute", 1114 (PVOID) & absolute, sizeof(BOOL)); 1115 PrfWriteProfileData(fmprof, FM3Str, "Grep_Case", 1116 (PVOID) & sensitive, sizeof(BOOL)); 1117 PrfWriteProfileData(fmprof, FM3Str, "Grep_Sayfiles", 1118 (PVOID) & sayfiles, sizeof(BOOL)); 1119 PrfWriteProfileData(fmprof, FM3Str, "Grep_Searchfiles", 1120 (PVOID) & searchFiles, sizeof(BOOL)); 1121 PrfWriteProfileData(fmprof, FM3Str, "Grep_SearchfEAs", 1122 (PVOID) & searchEAs, sizeof(BOOL)); 1123 } 1124 989 1125 if (xbeginthread(GrepThread, 990 1126 524280, … … 994 1130 { 995 1131 free(p); 996 # 1132 # ifdef FORTIFY 997 1133 Fortify_LeaveScope(); 998 # 1134 # endif 999 1135 WinDismissDlg(hwnd, 0); 1000 1136 break; 1001 1137 } 1002 DosSleep(100); 1138 DosSleep(100); //05 Aug 07 GKY 128 1003 1139 free(p); 1004 # 1140 # ifdef FORTIFY 1005 1141 Fortify_LeaveScope(); 1006 # 1007 } 1008 if ( changed) {1142 # endif 1143 } 1144 if (maskListChanged) { 1009 1145 // Save modified mask list 1010 1146 SHORT x; … … 1015 1151 MPVOID, MPVOID); 1016 1152 // 07 Oct 09 SHL Rewrite if list empty 1017 1018 1153 if (sSelect >= 0) { 1154 CHAR *modew = "w"; 1019 1155 1020 1156 BldFullPathName(s, pFM2SaveDirectory, PCSZ_GREPMASKDAT);
Note:
See TracChangeset
for help on using the changeset viewer.