Changeset 813


Ignore:
Timestamp:
Aug 26, 2007, 11:44:03 PM (18 years ago)
Author:
Gregg Young
Message:

Reworked Fill Dups to enhance performance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/dll/grep.c

    r785 r813  
    2424  13 Aug 07 SHL Move #pragma alloc_text to end for OpenWatcom compat
    2525  15 Aug 07 SHL Use FilesToGet directly
     26  26 Aug 07 GKY Improved performance of FillDups
     27  26 Aug 07 GKY DosSleep(1) in loops changed to (0)
    2628
    2729***********************************************************************/
     
    434436          domatchingfiles(grep, searchPath, fle, numfls);
    435437          doallsubdirs(grep, searchPath, TRUE, fle, numfls);
    436           DosSleep(1);
     438          DosSleep(0); //26 Aug 07 GKY 1
    437439        }
    438440      }
     
    519521      if (*grep->stopflag)
    520522        break;
    521       DosSleep(1);
     523      DosSleep(0); //26 Aug 07 GKY 1
    522524      ulFindCnt = FilesToGet;
    523525      rc = DosFindNext(findHandle, pffbArray, ulBufBytes, &ulFindCnt);
     
    597599    }
    598600    if (grep->toinsert == FilesToGet)
    599       DosSleep(1);
     601      DosSleep(0);  //26 Aug 07 GKY 1
    600602    freegreplist(grep);
    601603    PostMsg(grep->hwndFiles, UM_RESCAN, MPVOID, MPVOID);
     
    950952        else
    951953          break;
    952         DosSleep(1);
     954        DosSleep(0); //26 Aug 07 GKY 1
    953955      }
    954956      fclose(fp);
     
    11111113  INT numfiles = 0, numalloced = 0, error;
    11121114  register ULONG x = 0, y = 0;
    1113   ULONG cntr = 100;
     1115  ULONG cntr = 1000;
    11141116
    11151117  if (grep->CRCdupes)
    1116     cntr = 50;
     1118    cntr = 100;
    11171119  i = grep->dupehead;
    11181120  while (i) {
     
    11221124  if (x) {
    11231125    WinSetWindowText(grep->hwndCurFile, GetPString(IDS_GREPDUPESORTINGTEXT));
    1124     DosSleep(1);
     1126    DosSleep(0);  //26 Aug 07 GKY 1
    11251127    grep->dupenames = xmalloc(sizeof(DUPES *) * (x + 1), pszSrcFile, __LINE__);
    11261128    if (!grep->nosizedupes)
     
    11381140      if (!grep->nosizedupes)
    11391141        grep->dupesizes[y] = NULL;
    1140       DosSleep(1);
     1142      DosSleep(0); //26 Aug 07 GKY 1
    11411143      qsort(grep->dupenames,
    11421144            x,
    11431145            sizeof(DUPES *),
    11441146            ((grep->ignoreextdupes) ? comparenamesqe : comparenamesq));
    1145       DosSleep(1);
     1147      DosSleep(0); //26 Aug 07 GKY 1
    11461148      if (!grep->nosizedupes) {
    11471149        qsort(grep->dupesizes, x, sizeof(DUPES *), comparesizesq);
    1148         DosSleep(1);
     1150        DosSleep(0); //26 Aug 07 GKY 1
    11491151      }
    11501152      WinSetWindowText(grep->hwndCurFile, GetPString(IDS_GREPDUPECOMPARINGTEXT));
     
    12821284          sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles);
    12831285          WinSetWindowText(grep->hwndCurFile, s);
    1284           DosSleep(100);                //05 Aug 07 GKY 128
    1285         }
    1286         DosSleep(y % 2);
     1286          DosSleep(1);          //05 Aug 07 GKY 128
     1287        }
     1288        DosSleep(0); //26 Aug 07 GKY 1
    12871289      }
    12881290    }
     
    13111313            sprintf(s, GetPString(IDS_GREPDUPECHECKPROGTEXT), y, grep->numfiles);
    13121314            WinSetWindowText(grep->hwndCurFile, s);
    1313             DosSleep(1);
     1315            DosSleep(0); //26 Aug 07 GKY 1
    13141316          }
    13151317          y++;
     
    13711373              }
    13721374              else if (!(x % 100))
    1373                 DosSleep(1);
     1375                DosSleep(0);  //26 Aug 07 GKY 1
    13741376            }
    13751377            c = c->next;
Note: See TracChangeset for help on using the changeset viewer.