Changeset 1707
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/dll/excputil.c ¶
r1673 r1707 194 194 else { 195 195 // DbgMsg(pszSrcFile, __LINE__, "Invoking exceptq handler at %p", pfn); 196 (*pfn)(pReport, pReg, pContext,pv);196 (*pfn)(pReport, pReg, pContext, pv); 197 197 handled = TRUE; 198 198 } -
TabularUnified trunk/dll/grep.c ¶
r1695 r1707 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2001, 201 0Steven H. Levine9 Copyright (c) 2001, 2014 Steven H. Levine 10 10 11 11 12 Feb 03 SHL InsertGrepFile: standardize EA math … … 34 34 28 Jun 09 GKY Added AddBackslashToPath() to remove repeatative code. 35 35 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). 36 36 Mostly cast CHAR CONSTANT * as CHAR *. 37 37 29 May 10 GKY Suppress ERROR_FILENAME_EXCED_RANGE error because of problem with NTFS 38 38 30 May 11 GKY Fixed potential trap caused by passing a nonexistant pci to FillInRecordFromFFB 39 40 39 in DoInsertion because pci is limited to 65535 files. (nRecord is a USHORT) 40 SHL's single loop fix. 41 41 05 Aug 12 GKY Replace SleepIfNeeded with IdleIfNeeded to improve IU response during long searches; it 42 42 will switch between normal and idle priority and back. 43 43 05 Aug 12 GKY Always sort "Find Dups" by filename in the collector. 44 08 Feb 14 SHL Support Ignore SVN option 44 45 45 46 ***********************************************************************/ … … 81 82 82 83 static VOID DoAllSubdirs(GREP *grep, 83 84 85 char **fle,86 UINT numfls,87 88 84 CHAR *searchPath, 85 BOOL recursing, 86 char **fileMasks, 87 UINT numFileMasks, 88 ITIMER_DESC *pitdSleep, 89 ITIMER_DESC *pitdReport); 89 90 static INT DoMatchingFiles(GREP *grep, 90 91 CHAR **fle,92 UINT numfls,93 94 91 CHAR *path, 92 CHAR **fileMasks, 93 UINT numFileMasks, 94 ITIMER_DESC *pitdSleep, 95 ITIMER_DESC *pitdReport); 95 96 static BOOL DoOneFile(GREP *grep, 96 97 98 99 97 CHAR *fileName, 98 FILEFINDBUF4L *pffb, 99 ITIMER_DESC *pitdSleep, 100 ITIMER_DESC *pitdReport); 100 101 static BOOL DoInsertion(GREP *grep, 101 102 102 ITIMER_DESC *pitdSleep, 103 ITIMER_DESC *pitdReport); 103 104 static BOOL InsertDupe(GREP *grep, CHAR *dir, FILEFINDBUF4L *pffb); 104 105 static VOID FillDupes(GREP *grep, 105 106 106 ITIMER_DESC *pitdSleep, 107 ITIMER_DESC *pitdReport); 107 108 108 109 static VOID FreeDupes(GREP *grep); … … 111 112 112 113 #define isleap(year) ((((year%4)==0) && ((year%100)!=0)) || \ 113 114 ((year%400)==0)) 114 115 115 116 // Data definitions … … 152 153 153 154 static BOOL m_match(CHAR *string, CHAR *pattern, BOOL absolute, BOOL ignore, 154 155 LONG len) 155 156 { 156 157 // return TRUE if pattern found in string … … 163 164 if (absolute) // no pattern matching 164 165 return (findstring(pattern, strlen(pattern), string, len, 165 166 (ignore == FALSE)) != NULL); 166 167 167 168 while (*tn && len2 < len) { 168 169 switch (*tn) { 169 170 case ' ': 170 171 172 173 174 171 while (*tn == ' ') 172 tn++; 173 while (len2 < len && isspace(string[len2])) 174 len2++; 175 break; 175 176 176 177 case '*': 177 178 179 180 181 182 183 184 185 186 187 188 189 178 while (*tn == '*' || *tn == '?') 179 tn++; 180 if (!*tn) 181 return TRUE; 182 if (ignore) { 183 while (len2 < len && string[len2] != *tn) 184 len2++; 185 } 186 else { 187 while (len2 < len && toupper(string[len2] != *tn)) 188 len2++; 189 } 190 break; 190 191 191 192 case '[': 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 193 tn++; 194 if (!*tn) 195 return FALSE; 196 lo = *tn; 197 tn++; 198 if (*tn != '-') 199 return FALSE; 200 tn++; 201 if (!*tn) 202 return FALSE; 203 hi = *tn; 204 tn++; 205 if (*tn != ']') 206 return FALSE; 207 tn++; 208 if (ignore) { 209 if ((toupper(string[len2]) >= toupper(lo)) && 210 (toupper(string[len2]) <= toupper(hi))) 211 len2++; 212 else { 213 tn = pattern; 214 len2 = lastlen = lastlen + 1; 215 } 216 } 217 else { 218 if ((string[len2] >= lo) && (string[len2] <= hi)) 219 len2++; 220 else { 221 tn = pattern; 222 len2 = lastlen = lastlen + 1; 223 } 224 } 225 break; 225 226 226 227 case '?': 227 228 229 228 tn++; 229 len2++; 230 break; 230 231 231 232 case '\\': 232 233 234 235 233 tn++; 234 if (!*tn) 235 return FALSE; 236 // else intentional fallthru 236 237 default: 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 238 if (ignore) { 239 if (toupper(*tn) == toupper(string[len2])) { 240 tn++; 241 len2++; 242 } 243 else { 244 tn = pattern; 245 len2 = lastlen = lastlen + 1; 246 } 247 } 248 else { 249 if (*tn == string[len2]) { 250 tn++; 251 len2++; 252 } 253 else { 254 tn = pattern; 255 len2 = lastlen = lastlen + 1; 256 } 257 } 258 break; 258 259 } 259 260 } … … 268 269 269 270 static BOOL match(CHAR *string, CHAR *patterns, BOOL absolute, BOOL ignore, 270 271 LONG len, ULONG numlines, CHAR *matched, BOOL matchall) 271 272 { 272 273 BOOL ret = FALSE; … … 294 295 GREP grep; 295 296 UINT x; 296 UINT num fls;297 static CHAR *f le[512]; // 06 Feb 08 SHL fixmeto not be static297 UINT numFileMasks; 298 static CHAR *fileMasks[512]; // 06 Feb 08 SHL FIXME to not be static 298 299 CHAR *p, *pp, searchPath[CCHMAXPATH * 2]; 299 300 … … 324 325 // hwndStatus does not exist for applet 325 326 WinSetWindowText(hwndStatus ? hwndStatus : grep.hwndCurFile, 326 327 327 (CHAR *) GetPString(grep.finddupes ? IDS_GREPDUPETEXT : 328 IDS_GREPSCANTEXT)); 328 329 329 330 pp = grep.searchPattern; 330 331 while (*pp) { 331 332 333 334 335 336 337 338 339 340 341 332 if (!grep.absFlag) { 333 p = GREPCHARS; // see if any sense in pattern matching 334 while (*p) { 335 if (strchr(pp, *p)) 336 break; 337 p++; 338 } 339 if (!*p) // nope, turn it off 340 grep.absFlag = TRUE; 341 } 342 pp = pp + strlen(pp) + 1; 342 343 } 343 344 … … 345 346 grep.antiattr &= (~FILE_DIRECTORY); 346 347 if (grep.antiattr & FILE_READONLY) 347 348 grep.antiattr |= MUST_HAVE_READONLY; 348 349 if (grep.antiattr & FILE_HIDDEN) 349 350 grep.antiattr |= MUST_HAVE_HIDDEN; 350 351 if (grep.antiattr & FILE_SYSTEM) 351 352 grep.antiattr |= MUST_HAVE_SYSTEM; 352 353 if (grep.antiattr & FILE_ARCHIVED) 353 354 grep.antiattr |= MUST_HAVE_ARCHIVED; 354 355 355 356 grep.anyexcludes = FALSE; 356 num fls = 0;357 f le[numfls++] = strtok(grep.tosearch, ";");358 359 while ((f le[numfls] = strtok(NULL, ";")) != NULL && numfls < 511) {360 if (*fle[numfls] == '/')361 362 numfls++;357 numFileMasks = 0; 358 fileMasks[numFileMasks++] = strtok(grep.fileMasks, ";"); 359 360 while ((fileMasks[numFileMasks] = strtok(NULL, ";")) != NULL && numFileMasks < 511) { 361 if (*fileMasks[numFileMasks] == '/') 362 grep.anyexcludes = TRUE; 363 numFileMasks++; 363 364 } 364 365 … … 367 368 368 369 // loop through search masks 369 for (x = 0; x < numfls; x++) { 370 371 if (*fle[x] == '/') // is an exclude mask only 372 goto ExcludeSkip; 373 374 // first, separate any path from mask 375 376 p = (char *)(fle[x] + (strlen(fle[x]) - 1)); 377 while (*p != '\\' && *p != ':' && p != fle[x]) 378 --p; 379 380 if (p == fle[x]) { // no path 381 strcpy(searchPath, grep.curdir); 382 strncpy(grep.fileMask, fle[x], CCHMAXPATH); 383 grep.fileMask[CCHMAXPATH - 1] = 0; 384 } 385 else { // got to deal with a path 386 if (*p == ':') { // just a drive, start in root dir 387 *p = 0; 388 p++; 389 strncpy(searchPath, fle[x], CCHMAXPATH - 2); 390 searchPath[CCHMAXPATH - 3] = 0; 391 strcat(searchPath, ":\\"); 392 strcpy(grep.fileMask, p); 393 } 394 if (*p == '\\') { 395 // got a 'full' path 396 CHAR temp; 397 398 p++; 399 temp = *p; 400 *p = 0; 401 strncpy(searchPath, fle[x], CCHMAXPATH); 402 searchPath[CCHMAXPATH - 1] = 0; 403 *p = temp; 404 strcpy(grep.fileMask, p); 405 } 406 if (!*grep.fileMask) 407 strcpy(grep.fileMask, "*"); 408 } 409 if (*grep.stopflag) 410 break; 411 // do single directory 412 DoMatchingFiles(&grep, searchPath, fle, numfls, &itdSleep, &itdReport); 413 if (grep.dirFlag) // do subdirs 414 DoAllSubdirs(&grep, searchPath, FALSE, fle, numfls, &itdSleep, &itdReport); 370 for (x = 0; x < numFileMasks; x++) { 371 372 // Ignore exclude masks here 373 if (*fileMasks[x] == '/') 374 goto ExcludeSkip; 375 376 // Split directory pathname from mask 377 p = (char *)(fileMasks[x] + (strlen(fileMasks[x]) - 1)); 378 while (*p != '\\' && *p != ':' && p != fileMasks[x]) 379 --p; 380 381 if (p == fileMasks[x]) { // no path 382 strcpy(searchPath, grep.curdir); 383 strncpy(grep.fileMask, fileMasks[x], CCHMAXPATH); 384 grep.fileMask[CCHMAXPATH - 1] = 0; 385 } 386 else { // got to deal with a path 387 if (*p == ':') { // just a drive, start in root dir 388 *p = 0; 389 p++; 390 strncpy(searchPath, fileMasks[x], CCHMAXPATH - 2); 391 searchPath[CCHMAXPATH - 3] = 0; 392 strcat(searchPath, ":\\"); 393 strcpy(grep.fileMask, p); 394 } 395 if (*p == '\\') { 396 // got a 'full' path 397 CHAR temp; 398 399 p++; 400 temp = *p; // Save for restore 401 *p = 0; // Chop after backslash 402 strncpy(searchPath, fileMasks[x], CCHMAXPATH); 403 searchPath[CCHMAXPATH - 1] = 0; 404 *p = temp; 405 strcpy(grep.fileMask, p); 406 } 407 if (!*grep.fileMask) 408 strcpy(grep.fileMask, "*"); 409 } 410 if (*grep.stopflag) 411 break; 412 // do top level directory 413 DoMatchingFiles(&grep, searchPath, fileMasks, numFileMasks, &itdSleep, &itdReport); 414 // Recurse subdirectories if requested 415 if (grep.dirFlag) 416 DoAllSubdirs(&grep, searchPath, FALSE, fileMasks, numFileMasks, &itdSleep, &itdReport); 417 415 418 ExcludeSkip: 416 417 418 419 419 if (*grep.stopflag) 420 break; 421 if (WinIsWindow(grep.ghab, grep.hwndFiles)) 422 DoInsertion(&grep, &itdSleep, &itdReport); // insert any remaining objects 420 423 } // for 421 424 422 425 if (WinIsWindow(grep.ghab, grep.hwndFiles)) 423 426 DoInsertion(&grep, &itdSleep, &itdReport); // insert any remaining objects 424 427 425 428 if (WinIsWindow(grep.ghab, grep.hwndFiles) && 426 427 429 grep.finddupes && 430 !*grep.stopflag) 428 431 { 429 430 431 432 433 434 432 FillDupes(&grep, &itdSleep, &itdReport); 433 CollectorsortFlags = 0; 434 CollectorsortFlags |= SORT_FILENAME; 435 WinSendMsg(grep.hwndFiles, CM_SORTRECORD, MPFROMP(SortCollectorCnr), 436 MPFROMLONG(CollectorsortFlags)); 437 SaySort(WinWindowFromID(WinQueryWindow(grep.hwndFiles, QW_PARENT), 435 438 DIR_SORT), CollectorsortFlags, FALSE); 436 439 } 437 440 if (!PostMsg(grep.hwndFiles, UM_CONTAINER_FILLED, MPVOID, MPVOID)) // tell window we're done 438 441 WinSendMsg(grep.hwndFiles, UM_CONTAINER_FILLED, MPVOID, MPVOID); 439 442 WinDestroyMsgQueue(ghmq); 440 443 } … … 449 452 free(grep.matched); 450 453 } 451 // 07 Feb 08 SHL fixmeto free grep here when not static454 // 07 Feb 08 SHL FIXME to free grep here when not static 452 455 # ifdef FORTIFY 453 456 Fortify_LeaveScope(); … … 456 459 } 457 460 458 static BOOL IsExcluded(CHAR *name, CHAR **f le, UINT numfls)461 static BOOL IsExcluded(CHAR *name, CHAR **fileMasks, UINT numFileMasks) 459 462 { 460 463 UINT x; … … 468 471 else 469 472 n = name; 470 for (x = 0; x < num fls; x++) {471 if (*f le[x] == '/' &&472 wildcard((strchr(fle[x], '\\') ||473 strchr(fle[x], ':')) ? name : n, fle[x] + 1, FALSE))473 for (x = 0; x < numFileMasks; x++) { 474 if (*fileMasks[x] == '/' && 475 wildcard((strchr(fileMasks[x], '\\') || 476 strchr(fileMasks[x], ':')) ? name : n, fileMasks[x] + 1, FALSE)) 474 477 return TRUE; 475 478 } … … 477 480 } 478 481 482 /** 483 * Recurse though subdirectories selecting files 484 */ 485 479 486 static VOID DoAllSubdirs(GREP *grep, 480 CHAR *searchPath, 481 BOOL recursing, 482 CHAR **fle, 483 UINT numfls, 484 ITIMER_DESC *pitdSleep, 485 ITIMER_DESC *pitdReport) 486 { 487 // process all subdirectories 488 487 CHAR *searchPath, 488 BOOL recursing, 489 CHAR **fileMasks, 490 UINT numFileMasks, 491 ITIMER_DESC *pitdSleep, 492 ITIMER_DESC *pitdReport) 493 { 489 494 FILEFINDBUF4 ffb; 490 495 HDIR findHandle = HDIR_CREATE; 491 LONG ulFindCnt = 1;496 ULONG ulFindCnt = 1; 492 497 CHAR *p = NULL; 493 498 494 // add a mask to search path499 // Append wildcard mask to directory pathname 495 500 AddBackslashToPath(searchPath); 496 //if (searchPath[strlen(searchPath) - 1] != '\\')497 // strcat(searchPath, "\\");498 501 strcat(searchPath, "*"); 499 // step through all subdirectories500 502 DosError(FERR_DISABLEHARDERR); 501 if (!DosFindFirst(searchPath, &findHandle, (MUST_HAVE_DIRECTORY | 502 FILE_ARCHIVED | FILE_SYSTEM | FILE_HIDDEN | FILE_READONLY), 503 &ffb, (ULONG) sizeof(ffb), 504 (PULONG) & ulFindCnt, FIL_QUERYEASIZE)) { 505 506 // get rid of mask portion, save end-of-directory 507 503 // Find first directory 504 if (!DosFindFirst(searchPath, 505 &findHandle, 506 (MUST_HAVE_DIRECTORY | FILE_ARCHIVED | FILE_SYSTEM | 507 FILE_HIDDEN | FILE_READONLY), 508 &ffb, 509 sizeof(ffb), 510 &ulFindCnt, 511 FIL_QUERYEASIZE)) 512 { 513 // Point p at appended wildcard pattern to speed up pathname build 508 514 p = strrchr(searchPath, '\\'); 509 515 if (p) … … 512 518 p = searchPath; 513 519 do { // Process each directory that matches the mask 514 //priority_normal();520 int skip; 515 521 if (*grep->stopflag) 516 break; 522 break; 523 // 2014-02-08 SHL 517 524 // Skip . and .. 518 if (ffb.achName[0] != '.' || 519 (ffb.achName[1] && 520 (ffb.achName[1] != '.' || ffb.achName[2]))) { 521 strcpy(p, ffb.achName); 522 if (!grep->anyexcludes || !IsExcluded(searchPath, fle, numfls)) { 523 // 07 Feb 08 SHL 524 if (IsITimerExpired(pitdReport)) { 525 if (!hwndStatus) 526 WinSetWindowText(grep->hwndCurFile, searchPath); 527 else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) { 528 CHAR s[CCHMAXPATH + 64]; 529 sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), searchPath); 530 WinSetWindowText(hwndStatus, s); 531 } 532 } 533 DoMatchingFiles(grep, searchPath, fle, numfls, pitdSleep, pitdReport); 534 // 07 Feb 08 SHL 535 if (IsITimerExpired(pitdReport)) { 536 priority_normal(); 537 if (!hwndStatus) 538 WinSetWindowText(grep->hwndCurFile, searchPath); 539 else { 540 if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) { 541 CHAR s[CCHMAXPATH + 64]; 542 sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), searchPath); 543 WinSetWindowText(hwndStatus, s); 544 } 545 }; 546 } 547 DoAllSubdirs(grep, searchPath, TRUE, fle, numfls, pitdSleep, pitdReport); 548 } 525 skip = ffb.achName[0] == '.' && 526 (ffb.achName[1] == 0 || 527 (ffb.achName[1] == '.' && ffb.achName[2] == 0)); 528 if (!skip && grep->ignoreSVN) { 529 // Skip version control meta data directories 530 skip = stricmp(ffb.achName, ".svn") == 0 || 531 stricmp(ffb.achName, ".git") == 0 || 532 stricmp(ffb.achName, ".hg") == 0 || 533 stricmp(ffb.achName, "CVS") == 0; 549 534 } 535 if (!skip) { 536 strcpy(p, ffb.achName); // Build full directory pathname 537 skip = grep->anyexcludes && IsExcluded(searchPath, fileMasks, numFileMasks); 538 } 539 if (!skip) { 540 // Directory is selected 541 // 07 Feb 08 SHL 542 if (IsITimerExpired(pitdReport)) { 543 if (!hwndStatus) 544 WinSetWindowText(grep->hwndCurFile, searchPath); 545 else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) { 546 CHAR s[CCHMAXPATH + 64]; 547 sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), searchPath); 548 WinSetWindowText(hwndStatus, s); 549 } 550 } 551 // Select files from directory 552 DoMatchingFiles(grep, searchPath, fileMasks, numFileMasks, pitdSleep, pitdReport); 553 // 07 Feb 08 SHL 554 if (IsITimerExpired(pitdReport)) { 555 priority_normal(); 556 if (!hwndStatus) 557 WinSetWindowText(grep->hwndCurFile, searchPath); 558 else { 559 if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) { 560 CHAR s[CCHMAXPATH + 64]; 561 sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), searchPath); 562 WinSetWindowText(hwndStatus, s); 563 } 564 }; 565 } 566 // Recurse 567 DoAllSubdirs(grep, searchPath, TRUE, fileMasks, numFileMasks, pitdSleep, pitdReport); 568 } // if !skip 550 569 ulFindCnt = 1; 570 // Get next directory 551 571 } while (!DosFindNext(findHandle, 552 &ffb, 553 sizeof(ffb), (PULONG) & ulFindCnt)); 572 &ffb, 573 sizeof(ffb), 574 &ulFindCnt)); 554 575 DosFindClose(findHandle); 555 //priority_normal(); 556 } 557 if (p) // strip off last directory addition 576 } // if at least one directory 577 if (p) // Restore orginal directory pathname 558 578 *p = 0; 559 579 } 560 580 561 581 /** 562 * S can for files matching filespecs in single directory582 * Select files matching wildcard masks in single directory 563 583 */ 564 584 565 585 static INT DoMatchingFiles(GREP *grep, 566 CHAR *path, 567 CHAR **fle, 568 UINT numfls, 569 ITIMER_DESC *pitdSleep, 570 ITIMER_DESC *pitdReport) 571 { 572 // process all matching files in a directory 573 586 CHAR *path, 587 CHAR **fileMasks, 588 UINT numFileMasks, 589 ITIMER_DESC *pitdSleep, 590 ITIMER_DESC *pitdReport) 591 { 574 592 PFILEFINDBUF4L pffbArray; 575 593 PFILEFINDBUF4L pffbFile; … … 591 609 MakeFullName(szFindPath); 592 610 593 // find and save end-of-dir position611 // Point p at wildcard mask to speed up pathname build 594 612 p = strrchr(szFindPath, '\\'); 595 613 if (p) … … 598 616 p = szFindPath; 599 617 600 // step through matching files618 // Step through matching files 601 619 DosError(FERR_DISABLEHARDERR); 602 620 ulFindCnt = FilesToGet; 603 621 rc = xDosFindFirst(szFindPath, 604 605 606 607 608 609 622 &findHandle, 623 FILE_NORMAL | grep->attrFile | grep->antiattr, 624 pffbArray, 625 ulBufBytes, 626 &ulFindCnt, 627 FIL_QUERYEASIZEL); 610 628 if (!rc) { 611 629 do { 612 630 // Process each file that matches the mask 613 //priority_normal();614 631 pffbFile = pffbArray; 615 632 for (x = 0; x < ulFindCnt; x++) { 616 if (*grep->stopflag) 617 break; 618 if (*pffbFile->achName != '.' || 619 (pffbFile->achName[1] && pffbFile->achName[1] != '.')) { 620 strcpy(p, pffbFile->achName); // build filename 621 if (strlen(szFindPath) > CCHMAXPATH){ 622 // Complain if pathnames exceeds max 623 DosFindClose(findHandle); 624 if (!fDone) { 625 fDone = TRUE; 626 saymsg(MB_OK | MB_ICONASTERISK, 627 HWND_DESKTOP, 628 GetPString(IDS_WARNINGTEXT), 629 GetPString(IDS_LENGTHEXCEEDSMAXPATHTEXT)); 630 } 631 return 1; 632 } 633 634 // 07 Feb 08 SHL 635 if (IsITimerExpired(pitdReport)) { 636 if (!hwndStatus) 637 WinSetWindowText(grep->hwndCurFile, szFindPath); 638 else { 639 if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) { 640 CHAR s[CCHMAXPATH + 64]; 641 sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), szFindPath); 642 WinSetWindowText(hwndStatus, s); 643 } 644 } 645 } 646 647 if (!grep->anyexcludes || !IsExcluded(szFindPath, fle, numfls)) { 648 if (!grep->finddupes) 649 DoOneFile(grep, szFindPath, pffbFile, pitdSleep, pitdReport); 650 else if (!InsertDupe(grep, szFindPath, pffbFile)) { 651 DosFindClose(findHandle); 652 free(pffbArray); 633 if (*grep->stopflag) 634 break; 635 // 2014-02-08 SHL FIXME to know if really need to skip . and .. here 636 // We should only be selecting files 637 if (*pffbFile->achName != '.' || 638 (pffbFile->achName[1] && pffbFile->achName[1] != '.')) { 639 strcpy(p, pffbFile->achName); // build full file pathname 640 if (strlen(szFindPath) > CCHMAXPATH){ 641 // Complain if pathnames exceeds max 642 DosFindClose(findHandle); 643 if (!fDone) { 644 fDone = TRUE; 645 saymsg(MB_OK | MB_ICONASTERISK, 646 HWND_DESKTOP, 647 GetPString(IDS_WARNINGTEXT), 648 GetPString(IDS_LENGTHEXCEEDSMAXPATHTEXT)); 649 } 650 return 1; 651 } 652 653 // 07 Feb 08 SHL 654 if (IsITimerExpired(pitdReport)) { 655 if (!hwndStatus) 656 WinSetWindowText(grep->hwndCurFile, szFindPath); 657 else { 658 if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) { 659 CHAR s[CCHMAXPATH + 64]; 660 sprintf(s, "%s %s", GetPString(IDS_SCANNINGTEXT), szFindPath); 661 WinSetWindowText(hwndStatus, s); 662 } 663 } 664 } 665 666 if (!grep->anyexcludes || !IsExcluded(szFindPath, fileMasks, numFileMasks)) { 667 // File selected 668 if (!grep->finddupes) 669 DoOneFile(grep, szFindPath, pffbFile, pitdSleep, pitdReport); 670 else if (!InsertDupe(grep, szFindPath, pffbFile)) { 671 DosFindClose(findHandle); 672 free(pffbArray); 653 673 # ifdef FORTIFY 654 674 Fortify_LeaveScope(); 655 675 # endif 656 657 658 659 660 661 662 676 return 1; 677 } 678 } 679 } 680 if (!pffbFile->oNextEntryOffset) 681 break; 682 pffbFile = (PFILEFINDBUF4L)((PBYTE)pffbFile + pffbFile->oNextEntryOffset); 663 683 } // for 664 684 if (*grep->stopflag) 665 break; 666 //SleepIfNeeded 685 break; 667 686 IdleIfNeeded(pitdSleep, 30); 668 687 ulFindCnt = FilesToGet; 688 // Next file 669 689 rc = xDosFindNext(findHandle, pffbArray, ulBufBytes, &ulFindCnt, FIL_QUERYEASIZEL); 670 690 } while (!rc); 671 691 672 692 DosFindClose(findHandle); 673 //priority_normal(); 674 } // if 693 } // if at least one file 675 694 676 695 if (rc && rc != ERROR_NO_MORE_FILES) { … … 680 699 CheckDrive(toupper(*szFindPath), FileSystem, NULL); 681 700 if (strcmp(FileSystem, NTFS)) 682 683 701 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 702 GetPString(IDS_CANTFINDDIRTEXT), szFindPath); 684 703 } 685 704 else 686 705 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__, 687 706 GetPString(IDS_CANTFINDDIRTEXT), szFindPath); 688 707 } 689 708 … … 702 721 if (grep->insertffb) { 703 722 for (x = 0; grep->insertffb[x]; x++) { 704 723 free(grep->insertffb[x]); 705 724 } 706 725 free(grep->insertffb); … … 708 727 if (grep->dir) { 709 728 for (x = 0; grep->dir[x]; x++) { 710 729 free(grep->dir[x]); 711 730 } 712 731 free(grep->dir); … … 727 746 728 747 static BOOL DoInsertion(GREP *grep, 729 730 748 ITIMER_DESC *pitdSleep, 749 ITIMER_DESC *pitdReport) 731 750 { 732 751 RECORDINSERT ri; … … 745 764 ulRecsToInsert = grep->toinsert - x < USHRT_MAX ? grep->toinsert - x : USHRT_MAX; 746 765 pciFirst = WinSendMsg(grep->hwndFiles, CM_ALLOCRECORD, 747 748 766 MPFROMLONG(EXTRA_RECORD_BYTES), 767 MPFROMLONG(ulRecsToInsert)); 749 768 if (!pciFirst) { 750 751 752 753 769 Win_Error(grep->hwndFiles, grep->hwndFiles, pszSrcFile, __LINE__, 770 PCSZ_CM_ALLOCRECORD); 771 freegreplist(grep); 772 return FALSE; 754 773 } 755 774 else { 756 757 758 759 760 761 762 763 764 775 pci = pciFirst; 776 if (grep->sayfiles) { 777 if (!hwndStatus) 778 WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPINSERTINGTEXT)); 779 else { 780 if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 781 WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPINSERTINGTEXT)); 782 } 783 } 765 784 } 766 785 } 767 786 FillInRecordFromFFB(grep->hwndFiles, 768 787 pci, grep->dir[x], grep->insertffb[x], FALSE, dcd); 769 788 pci = (PCNRITEM) pci->rc.preccNextRecord; 770 789 //SleepIfNeeded(pitdSleep, 1); … … 778 797 ri.fInvalidateRecord = TRUE; 779 798 WinSendMsg(grep->hwndFiles, 780 799 CM_INSERTRECORD, MPFROMP(pciFirst), MPFROMP(&ri)); 781 800 if (dcd) { 782 783 784 801 DosRequestMutexSem(hmtxFM2Globals, SEM_INDEFINITE_WAIT); 802 dcd->ullTotalBytes += grep->insertedbytes; 803 DosReleaseMutexSem(hmtxFM2Globals); 785 804 } 786 805 pciFirst = NULL; … … 800 819 801 820 static BOOL InsertGrepFile(GREP *grep, 802 803 804 805 821 CHAR *pszFileName, 822 PFILEFINDBUF4L pffb, 823 ITIMER_DESC *pitdSleep, 824 ITIMER_DESC *pitdReport) 806 825 { 807 826 PSZ p; … … 820 839 // Got directory 821 840 if (p < szDirectory + 4) 822 841 p++; // Include root backslash 823 842 *p = 0; 824 843 825 844 if (!grep->insertffb) { 826 827 828 829 830 831 832 833 834 845 // Allocate 1 extra for end marker? 846 grep->insertffb = xmallocz(sizeof(PFILEFINDBUF4L) * (FilesToGet + 1), 847 pszSrcFile, __LINE__); 848 if (!grep->insertffb) 849 return FALSE; 850 grep->dir = xmallocz(sizeof(CHAR *) * (FilesToGet + 1), 851 pszSrcFile, __LINE__); 852 if (!grep->dir) { 853 free(grep->insertffb); 835 854 # ifdef FORTIFY 836 855 Fortify_LeaveScope(); 837 856 # endif 838 839 857 return FALSE; 858 } 840 859 } 841 860 842 861 grep->insertffb[grep->toinsert] = 843 862 xmalloc(sizeof(FILEFINDBUF4L), pszSrcFile, __LINE__); 844 863 if (!grep->insertffb[grep->toinsert]) 845 864 return FALSE; 846 865 memcpy(grep->insertffb[grep->toinsert], pffb, sizeof(FILEFINDBUF4L)); 847 866 848 867 grep->dir[grep->toinsert] = xstrdup(szDirectory, pszSrcFile, __LINE__); 849 868 if (!grep->dir) { 850 869 free(grep->insertffb[grep->toinsert]); 851 870 # ifdef FORTIFY 852 871 Fortify_LeaveScope(); 853 872 # endif 854 873 return FALSE; 855 874 } 856 875 … … 859 878 // 07 Oct 09 SHL honor sync updates 860 879 if (grep->toinsert == FilesToGet || fSyncUpdates) 861 880 return DoInsertion(grep, pitdSleep, pitdReport); 862 881 return TRUE; 863 882 } … … 871 890 872 891 static BOOL DoOneFile(GREP *grep, 873 874 875 876 892 CHAR *pszFileName, 893 FILEFINDBUF4L *pffb, 894 ITIMER_DESC *pitdSleep, 895 ITIMER_DESC *pitdReport) 877 896 { 878 897 // process a single file … … 888 907 else { 889 908 if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 890 909 WinSetWindowText(hwndStatus, pszFileName); 891 910 } 892 911 } … … 900 919 if (grep->greaterthan) { 901 920 if (adjsize < grep->greaterthan) 902 921 keep = FALSE; 903 922 } 904 923 if (keep && grep->lessthan) { 905 924 if (adjsize > grep->lessthan) 906 925 keep = FALSE; 907 926 } 908 927 if (!keep) … … 918 937 if (grep->newerthan) { 919 938 if (numsecs < grep->newerthan) 920 939 keep = FALSE; 921 940 } 922 941 if (keep && grep->olderthan) { 923 942 if (numsecs > grep->olderthan) 924 943 keep = FALSE; 925 944 } 926 945 if (!keep) … … 942 961 info = head; 943 962 while (info && !strmatch) { 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 963 alltext = TRUE; 964 switch (*(USHORT *)info->value) { 965 case EAT_ASCII: 966 if (match(info->value + (sizeof(USHORT) * 2), 967 grep->searchPattern, grep->absFlag, 968 grep->caseFlag == FALSE, 969 info->cbValue - (sizeof(USHORT) * 2), 970 grep->numlines, 971 grep->matched, 972 !grep->findifany)) { 973 strmatch = TRUE; 974 } 975 break; 976 case EAT_MVST: 977 type = *(USHORT *)(info->value + (sizeof(USHORT) * 3)); 978 if (type == EAT_ASCII) { 979 data = info->value + (sizeof(USHORT) * 4); 980 len = *(USHORT *) data; 981 data += sizeof(USHORT); 982 while ((data - info->value) + len <= info->cbValue) { 983 temp = *(data + len); 984 *(data + len) = 0; 985 if (match(data, 986 grep->searchPattern, 987 grep->absFlag, 988 (grep->caseFlag == FALSE), 989 len, 990 grep->numlines, grep->matched, !grep->findifany)) { 991 strmatch = TRUE; 992 break; 993 } 994 data += len; 995 if (data - info->value >= info->cbValue) 996 break; 997 *data = temp; 998 len = *(USHORT *) data; 999 data += sizeof(USHORT); 1000 } 1001 } 1002 break; 1003 case EAT_MVMT: 1004 data = info->value + (sizeof(USHORT) * 3); 1005 type = *(USHORT *) data; 1006 data += sizeof(USHORT); 1007 len = *(USHORT *) data; 1008 data += sizeof(USHORT); 1009 while ((data - info->value) - len <= info->cbValue) { 1010 if (type != EAT_ASCII) { 1011 alltext = FALSE; 1012 break; 1013 } 1014 data += len; 1015 if (data - info->value >= info->cbValue) 1016 break; 1017 type = *(USHORT *) data; 1018 data += sizeof(USHORT); 1019 len = *(USHORT *) data; 1020 data += sizeof(USHORT); 1021 } 1022 if (alltext) { 1023 data = info->value + (sizeof(USHORT) * 3); 1024 type = *(USHORT *) data; 1025 data += sizeof(USHORT); 1026 len = *(USHORT *) data; 1027 data += sizeof(USHORT); 1028 while ((data - info->value) - len <= info->cbValue) { 1029 temp = *(data + len); 1030 *(data + len) = 0; 1031 if (match(data, 1032 grep->searchPattern, 1033 grep->absFlag, 1034 (grep->caseFlag == FALSE), 1035 len, 1036 grep->numlines, grep->matched, !grep->findifany)) { 1037 strmatch = TRUE; 1038 break; 1039 } 1040 data += len; 1041 *data = temp; 1042 if (data - info->value >= info->cbValue) 1043 break; 1044 type = *(USHORT *) data; 1045 data += sizeof(USHORT); 1046 len = *(USHORT *) data; 1047 data += sizeof(USHORT); 1048 } 1049 } 1050 break; 1051 default: 1052 break; 1053 } 1054 info = info->next; 1036 1055 } // while 1037 1056 Free_FEAList(head); … … 1048 1067 inputFile = xfsopen(pszFileName, moderb, SH_DENYNO, pszSrcFile, __LINE__, TRUE); 1049 1068 if (inputFile) { 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1069 pos = ftell(inputFile); 1070 while (!feof(inputFile)) { 1071 if (pos) 1072 fseek(inputFile, pos - 1024, SEEK_SET); 1073 len = fread(input, 1, 65536, inputFile); 1074 if (len >= 0) { 1075 if (*grep->stopflag) 1076 break; 1077 if (match(input, 1078 grep->searchPattern, 1079 grep->absFlag, 1080 (grep->caseFlag == FALSE), 1081 len, grep->numlines, grep->matched, !grep->findifany)) { 1082 strmatch = TRUE; 1083 break; 1084 } 1085 } 1086 else 1087 break; 1088 } 1089 fclose(inputFile); 1071 1090 } 1072 1091 free(input); … … 1178 1197 else { 1179 1198 while (!feof(fp)) { 1180 1181 1182 1183 1184 1185 1199 len = fread(buffer, 1, 65535, fp); 1200 if (len && len < 65536L) 1201 CRC = CRCBlock(buffer, len, CRC); 1202 else 1203 break; 1204 // DosSleep(0); //26 Aug 07 GKY 1 // 07 Feb 08 SHL 1186 1205 } 1187 1206 fclose(fp); … … 1343 1362 1344 1363 static VOID FillDupes(GREP *grep, 1345 1346 1364 ITIMER_DESC *pitdSleep, 1365 ITIMER_DESC *pitdReport) 1347 1366 { 1348 1367 DUPES *c, *i, **r; … … 1373 1392 y = 0; 1374 1393 for (i = grep->dupehead; i; i = i->next) { 1375 1376 1377 1378 1394 grep->dupenames[y] = i; 1395 if (!grep->nosizedupes) 1396 grep->dupesizes[y] = i; 1397 y++; 1379 1398 } 1380 1399 grep->dupenames[y] = NULL; // Mark end 1381 1400 if (!grep->nosizedupes) 1382 1401 grep->dupesizes[y] = NULL; 1383 1402 1384 1403 InitITimer(pitdSleep, 0); // Reset rate estimator … … 1387 1406 1388 1407 qsort(grep->dupenames, 1389 1390 1391 1408 x, 1409 sizeof(DUPES *), 1410 grep->ignoreextdupes ? comparenamesqe : comparenamesq); 1392 1411 SleepIfNeeded(pitdSleep, 1); 1393 1412 // DosSleep(0); //26 Aug 07 GKY 1 // 07 Feb 08 SHL 1394 1413 if (!grep->nosizedupes) { 1395 1396 1397 1414 qsort(grep->dupesizes, x, sizeof(DUPES *), comparesizesq); 1415 SleepIfNeeded(pitdSleep, 1); 1416 // DosSleep(0); //26 Aug 07 GKY 1 // 07 Feb 08 SHL 1398 1417 } 1399 1418 1400 1419 if (!hwndStatus) 1401 1420 WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT)); 1402 1421 else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 1403 1422 WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT)); 1404 1423 1405 1424 InitITimer(pitdSleep, 0); // Reset rate estimator … … 1407 1426 y = 0; 1408 1427 while (i) { 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1428 if (*grep->stopflag) 1429 break; 1430 SleepIfNeeded(pitdSleep, 1); // 07 Feb 08 SHL 1431 if (!(i->flags & GF_SKIPME)) { 1432 r = (DUPES **) bsearch(i, grep->dupenames, x, sizeof(DUPES *), 1433 ((grep->ignoreextdupes) ? comparenamesbe : 1434 comparenamesb)); 1435 if (r) { 1436 while (r > grep->dupenames && ((grep->ignoreextdupes) ? 1437 !comparenamesqe((r - 1), &i) : 1438 !comparenamesq((r - 1), &i))) 1439 r--; 1440 while (*r && ((grep->ignoreextdupes) ? 1441 !comparenamesqe(r, &i) : !comparenamesq(r, &i))) { 1442 if (*r == i || ((*r)->flags & (GF_INSERTED | GF_SKIPME))) { 1443 r++; 1444 continue; 1445 } 1446 if (grep->CRCdupes) { 1447 if ((*r)->CRC == -1L) { 1448 (*r)->CRC = CRCFile((*r)->name, &error); 1449 if (error) 1450 (*r)->CRC = -1L; 1451 else if ((*r)->CRC == -1L) 1452 (*r)->CRC = 0L; 1453 } 1454 if (i->CRC == -1L) { 1455 i->CRC = CRCFile(i->name, &error); 1456 if (error) 1457 i->CRC = -1L; 1458 else if (i->CRC == -1L) 1459 i->CRC = 0L; 1460 } 1461 if (((*r)->size != i->size) || ((*r)->CRC != -1L && 1462 i->CRC != -1L 1463 && (*r)->CRC != i->CRC)) { 1464 r++; 1465 continue; 1466 } 1467 } 1468 if (!AddToList((*r)->name, &list, &numfiles, &numalloced)) { 1469 (*r)->flags |= GF_INSERTED; 1470 if (grep->sayfiles) { 1471 if (!hwndStatus) 1472 WinSetWindowText(grep->hwndFiles, (*r)->name); 1473 else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 1474 WinSetWindowText(hwndStatus, (*r)->name); 1475 } 1476 if ((*r)->size == i->size && 1477 (i->date.year == (*r)->date.year && 1478 i->date.month == (*r)->date.month && 1479 i->date.day == (*r)->date.day && 1480 i->time.hours == (*r)->time.hours && 1481 i->time.minutes == (*r)->time.minutes && 1482 i->time.twosecs == (*r)->time.twosecs)) 1483 (*r)->flags |= GF_SKIPME; 1484 } 1485 if (!(i->flags & (GF_INSERTED | GF_SKIPME))) { 1486 if (!AddToList(i->name, &list, &numfiles, &numalloced)) { 1487 i->flags |= GF_INSERTED; 1488 if ((*r)->flags & GF_SKIPME) 1489 i->flags |= GF_SKIPME; 1490 } 1491 } 1492 r++; 1493 } 1494 } 1495 if (!grep->nosizedupes) { 1496 r = (DUPES **) bsearch(i, 1497 grep->dupesizes, 1498 x, sizeof(DUPES *), comparesizesb); 1499 if (r) { 1500 while (r > grep->dupesizes && !comparesizesq((r - 1), &i)) 1501 r--; 1502 while (*r && !comparesizesq(r, &i)) { 1503 if (*r == i || ((*r)->flags & (GF_INSERTED | GF_SKIPME)) || 1504 (i->date.year != (*r)->date.year || 1505 i->date.month != (*r)->date.month || 1506 i->date.day != (*r)->date.day || 1507 i->time.hours != (*r)->time.hours || 1508 i->time.minutes != (*r)->time.minutes || 1509 i->time.twosecs != (*r)->time.twosecs)) { 1510 r++; 1511 continue; 1512 } 1513 if (grep->CRCdupes) { 1514 if ((*r)->CRC == -1L) { 1515 (*r)->CRC = CRCFile((*r)->name, &error); 1516 if (error) 1517 (*r)->CRC = -1L; 1518 else if ((*r)->CRC == -1L) 1519 (*r)->CRC = 0L; 1520 } 1521 if (i->CRC == -1L) { 1522 i->CRC = CRCFile(i->name, &error); 1523 if (error) 1524 i->CRC = -1L; 1525 else if (i->CRC == -1L) 1526 i->CRC = 0L; 1527 } 1528 if ((*r)->CRC != -1L && i->CRC != -1L && 1529 (*r)->CRC != i->CRC) { 1530 *r += 1; 1531 continue; 1532 } 1533 } 1534 if (!AddToList((*r)->name, &list, &numfiles, &numalloced)) { 1535 if (grep->sayfiles) { 1536 if (!hwndStatus) 1537 WinSetWindowText(grep->hwndCurFile, (*r)->name); 1538 else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 1539 WinSetWindowText(hwndStatus, (*r)->name); 1540 } 1541 (*r)->flags |= GF_INSERTED; 1542 if (((grep->ignoreextdupes) ? 1543 comparenamesqe(r, &i) : comparenamesq(r, &i))) 1544 (*r)->flags |= GF_SKIPME; 1545 } 1546 if (!(i->flags & (GF_INSERTED | GF_SKIPME))) { 1547 if (!AddToList(i->name, &list, &numfiles, &numalloced)) { 1548 i->flags |= GF_INSERTED; 1549 if ((*r)->flags & GF_SKIPME) 1550 i->flags |= GF_SKIPME; 1551 } 1552 } 1553 r++; 1554 } 1555 } 1556 } 1557 } 1558 i = i->next; 1559 y++; 1560 // 08 Feb 08 SHL 1561 if (IsITimerExpired(pitdReport)) { 1562 CHAR s[44]; 1563 sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles); 1564 if (!hwndStatus) 1565 WinSetWindowText(grep->hwndCurFile, s); 1566 else { 1567 if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 1568 WinSetWindowText(hwndStatus, s); 1569 } 1570 } 1552 1571 } // while 1553 1572 } 1554 1573 else { 1555 // Insufficient memory - fall back to slow method - fixmeto saymsg?1574 // Insufficient memory - fall back to slow method - FIXME to saymsg? 1556 1575 if (!fErrorBeepOff) 1557 1576 DosBeep(50, 100); 1558 1577 if (!hwndStatus) 1559 1578 WinSetWindowText(grep->hwndCurFile, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT)); 1560 1579 else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 1561 1580 WinSetWindowText(hwndStatus, (CHAR *) GetPString(IDS_GREPDUPECOMPARINGTEXT)); 1562 1581 x = y = 0; 1563 1582 xfree(grep->dupenames, pszSrcFile, __LINE__); … … 1572 1591 i = grep->dupehead; 1573 1592 while (i) { 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1593 if (*grep->stopflag) 1594 break; 1595 SleepIfNeeded(pitdSleep, 1); 1596 if (!(i->flags & GF_SKIPME)) { 1597 if (IsITimerExpired(pitdReport)) { 1598 // if (!(y % cntr)) { } 1599 CHAR s[44]; 1600 sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles); 1601 if (!hwndStatus) 1602 WinSetWindowText(grep->hwndCurFile, s); 1603 else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 1604 WinSetWindowText(hwndStatus, s); 1605 // DosSleep(0); //26 Aug 07 GKY 1 // 07 Feb 08 SHL 1606 } 1607 y++; 1608 pi = strrchr(i->name, '\\'); 1609 if (pi) 1610 pi++; 1611 else 1612 pi = i->name; 1613 c = grep->dupehead; 1614 while (c) { 1615 if (*grep->stopflag) 1616 break; 1617 if (c != i && !(c->flags & (GF_INSERTED | GF_SKIPME))) { 1618 x++; 1619 pc = strrchr(c->name, '\\'); 1620 if (pc) 1621 pc++; 1622 else 1623 pc = c->name; 1624 if ((!grep->nosizedupes && i->size == c->size && i->date.year == c->date.year && i->date.month == c->date.month && i->date.day == c->date.day && i->time.hours == c->time.hours && i->time.minutes == c->time.minutes && i->time.twosecs == c->time.twosecs) || !stricmp(pc, pi)) { // potential dupe 1625 if (grep->CRCdupes) { 1626 if (grep->CRCdupes) { 1627 if (c->CRC == -1L) { 1628 c->CRC = CRCFile(c->name, &error); 1629 if (error) 1630 c->CRC = -1L; 1631 else if (c->CRC == -1L) 1632 c->CRC = 0L; 1633 } 1634 if (i->CRC == -1L) { 1635 i->CRC = CRCFile(i->name, &error); 1636 if (error) 1637 i->CRC = -1L; 1638 else if (i->CRC == -1L) 1639 i->CRC = 0L; 1640 } 1641 if ((c->size != i->size) || (c->CRC != -1L && 1642 i->CRC != -1L 1643 && c->CRC != i->CRC)) { 1644 c = c->next; 1645 continue; 1646 } 1647 } 1648 } 1649 if (AddToList(c->name, &list, &numfiles, &numalloced)) 1650 goto BreakOut; // Failed 1651 if (!(i->flags & GF_INSERTED)) { 1652 if (AddToList(i->name, &list, &numfiles, &numalloced)) 1653 goto BreakOut; // Failed 1654 } 1655 if (grep->sayfiles) { 1656 if (!hwndStatus) 1657 WinSetWindowText(grep->hwndCurFile, pc); 1658 else if (WinQueryFocus(HWND_DESKTOP) == grep->hwndFiles) 1659 WinSetWindowText(hwndStatus, pc); 1660 } 1661 c->flags |= GF_INSERTED; 1662 i->flags |= GF_INSERTED; 1663 if (!stricmp(pc, pi)) { 1664 c->flags |= GF_SKIPME; 1665 i->flags |= GF_SKIPME; 1666 } 1667 } 1668 // else if (!(x % 100)) // 07 Feb 08 SHL 1669 // DosSleep(0); //26 Aug 07 GKY 1 // 07 Feb 08 SHL 1670 } 1671 c = c->next; 1672 } 1673 } 1674 i = i->next; 1656 1675 } // while 1657 1676 } … … 1661 1680 if (numfiles && list) { 1662 1681 if (!PostMsg(grep->hwndFiles, 1663 1664 1665 1682 WM_COMMAND, 1683 MPFROM2SHORT(IDM_COLLECTOR, 0), 1684 MPFROMP(list))) 1666 1685 FreeList(list); 1667 1686 } -
TabularUnified trunk/dll/grep.h ¶
r1208 r1707 7 7 8 8 Copyright (c) 1993-98 M. Kimes 9 Copyright (c) 2006, 20 08Steven H. Levine9 Copyright (c) 2006, 2014 Steven H. Levine 10 10 11 11 04 Nov 06 SHL Renames 12 12 15 Aug 07 SHL Drop obsoletes 13 13 04 Jan 08 SHL Allow standalone usage 14 08 Feb 14 SHL Add ignoreSVN 14 15 15 16 ***********************************************************************/ … … 48 49 { 49 50 USHORT size; 50 CHAR tosearch[8192];51 CHAR fileMasks[8192]; // ; separated 51 52 CHAR fileMask[CCHMAXPATH + 14]; 52 53 CHAR curdir[CCHMAXPATH]; … … 63 64 BOOL finddupes; 64 65 BOOL CRCdupes; 66 BOOL ignoreSVN; 65 67 BOOL nosizedupes; 66 68 BOOL ignoreextdupes; -
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.