Changeset 1459


Ignore:
Timestamp:
Sep 16, 2009, 7:58:59 AM (16 years ago)
Author:
Steven Levine
Message:

Show rescan progress while filling container, ticket #291

Location:
trunk/dll
Files:
5 edited

Legend:

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

    r1455 r1459  
    6868  22 Jul 09 SHL Cleanup of SETFOCUS code
    6969  14 Sep 09 SHL Drop experimental code
     70  15 Sep 09 SHL Show rescan progress while filling container
    7071
    7172***********************************************************************/
     
    101102#include "notebook.h"                   // CfgDlgProc
    102103#include "command.h"                    // RunCommand
    103 #include "worker.h"             // Action, MassAction
     104#include "worker.h"                     // Action, MassAction
    104105#include "misc.h"                       // GetTidForThread, AdjustCnrColsForFSType, AdjustCnrColsForPref
    105106                                        // AdjustDetailsSwitches, CnrDirectEdit, OpenEdit, QuickPopup
    106107                                        // SayFilter, SaySort, SayView, SetCnrCols, SetDetailsSwitches
    107                                 // SetSortChecks, SetViewMenu, SwitchCommand, CheckMenu
    108                                 // CurrentRecord, DrawTargetEmphasis, IsFm2Window
     108                                        // SetSortChecks, SetViewMenu, SwitchCommand, CheckMenu
     109                                        // CurrentRecord, DrawTargetEmphasis, IsFm2Window
    109110#include "chklist.h"                    // CenterOverWindow, DropListProc
    110111#include "common.h"                     // CommonCnrProc, CommonCreateTextChildren, CommonFrameWndProc
    111                                 // CommonTextPaint, CommonTextButton, CommonTextProc
     112                                        // CommonTextPaint, CommonTextButton, CommonTextProc
    112113#include "mainwnd.h"                    // CountDirCnrs, GetNextWindowPos, MakeBubble, TopWindow
    113114#include "select.h"                     // DeselectAll, HideAll, InvertAll, SelectAll, SelectList
    114                                 // SpecialSelect2
     115                                        // SpecialSelect2
    115116#include "dirsize.h"                    // DirSizeProc
    116117#include "flesh.h"                      // Flesh, Stubby, UnFlesh
     
    680681{
    681682  DIRCNRDATA *dcd;
     683  CHAR tf[64];
     684  CHAR tb[64];
     685  CHAR s[CCHMAXPATH * 2];
    682686
    683687  switch (msg) {
     
    754758    dcd = WinQueryWindowPtr(hwnd, QWL_USER);
    755759    if (dcd && dcd->hwndFrame == WinQueryActiveWindow(dcd->hwndParent)) {
    756 
    757760      FSALLOCATE fsa;
    758       CHAR s[CCHMAXPATH * 2];
    759       CHAR tf[64];
    760       CHAR tb[64];
    761761      CHAR szFree[64];
    762 
    763762      DosError(FERR_DISABLEHARDERR);
    764763      if (!DosQueryFSInfo(toupper(*dcd->directory) - '@',
     
    844843      MakeValidDir(dcd->directory);
    845844      {
    846         CHAR s[CCHMAXPATH + 8];
    847 
    848845        sprintf(s,
    849846                "%s%s%s",
     
    865862      if (hwndStatus &&
    866863          dcd->hwndFrame == WinQueryActiveWindow(dcd->hwndParent)) {
    867         WinSetWindowText(hwndStatus, GetPString(IDS_SCANNINGTEXT));
     864        WinSetWindowText(hwndStatus, GetPString(IDS_PLEASEWAITSCANNINGTEXT));
    868865        if (hwndMain)
    869866          WinSendMsg(hwndMain, UM_LOADFILE, MPVOID, MPVOID);
    870867      }
    871868      if (fSwitchTree && hwndTree) {
     869        // Keep drive tree in sync with directory container
    872870        PSZ pszTempDir = xstrdup(dcd->directory, pszSrcFile, __LINE__);
    873 
    874871        if (hwndMain) {
    875872          if (TopWindow(hwndMain, (HWND) 0) == dcd->hwndFrame && pszTempDir)
     
    884881      }
    885882      dcd->firsttree = FALSE;
     883      WinStartTimer(WinQueryAnchorBlock(hwnd), dcd->hwndCnr, ID_DIRCNR_TIMER, 500);
    886884      // fixme to check errors
    887885      FillDirCnr(dcd->hwndCnr, dcd->directory, dcd, &dcd->ullTotalBytes);
     886      WinStopTimer(WinQueryAnchorBlock(hwnd), dcd->hwndCnr, ID_DIRCNR_TIMER);
    888887      PostMsg(dcd->hwndCnr, UM_RESCAN, MPVOID, MPVOID);
    889888      if (mp2 && !fLeaveTree && (dcd->flWindowAttr & CV_TREE)) {
    890 
    891889        ULONG flWindowAttr = dcd->flWindowAttr;
    892890        CNRINFO cnri;
    893 
    894         flWindowAttr &=
    895           (~(CV_NAME | CV_TREE | CV_ICON | CV_DETAIL | CV_TEXT));
     891        flWindowAttr &= ~(CV_NAME | CV_TREE | CV_ICON | CV_DETAIL | CV_TEXT);
    896892        if (dcd->lastattr) {
    897893          if (dcd->lastattr & CV_TEXT)
     
    12111207{
    12121208  DIRCNRDATA *dcd = INSTDATA(hwnd);
     1209  CHAR tf[64];
     1210  CHAR tb[64];
     1211  CHAR s[CCHMAXPATH];
    12131212
    12141213  switch (msg) {
     
    12511250      case VK_HOME:
    12521251        if ((shiftstate & KC_CTRL) == KC_CTRL && dcd) {
    1253           CHAR s[CCHMAXPATH], *p;
     1252          PSZ p;
    12541253          strcpy(s, dcd->directory);
    12551254          p = strchr(s, '\\');
     
    14201419    break;
    14211420
     1421  case WM_TIMER:
     1422    // Started/stopped by DirObjWndPro
     1423    // dcd = WinQueryWindowPtr(hwnd, QWL_USER);
     1424    if (dcd) {
     1425      commafmt(tb, sizeof(tb), dcd->totalfiles);
     1426      CommaFmtULL(tf, sizeof(tf), dcd->ullTotalBytes, 'K');
     1427      sprintf(s, "%s / %s", tb, tf);
     1428      // DbgMsg(pszSrcFile, __LINE__, "WM_TIMER %s", s);        // 15 Sep 09 SHL fixme debug
     1429      WinSetDlgItemText(dcd->hwndClient, DIR_TOTALS, s);
     1430    }
     1431    break; // WM_TIMER
     1432
    14221433  case UM_RESCAN:
    14231434    if (dcd) {
    14241435
    14251436      CNRINFO cnri;
    1426       CHAR s[CCHMAXPATH * 2], tf[81], tb[81], szDate[DATE_BUF_BYTES];
     1437      CHAR szDate[DATE_BUF_BYTES];
    14271438      PCNRITEM pci;
    14281439
     
    32053216          PCNRITEM pci = (PCNRITEM) ((PCNREDITDATA) mp2)->pRecord;
    32063217          HWND hwndMLE;
    3207           static CHAR szData[CCHMAXPATH];
    32083218          CHAR testname[CCHMAXPATH];
    32093219
    32103220          if (!pci && !pfi) {
    32113221            hwndMLE = WinWindowFromID(hwnd, CID_MLE);
    3212             WinQueryWindowText(hwndMLE, sizeof(szData), szData);
    3213             chop_at_crnl(szData);
    3214             bstrip(szData);
    3215             if (*szData) {
    3216               if (!DosQueryPathInfo(szData,
     3222            WinQueryWindowText(hwndMLE, sizeof(s), s);
     3223            chop_at_crnl(s);
     3224            bstrip(s);
     3225            if (*s) {
     3226              if (!DosQueryPathInfo(s,
    32173227                                    FIL_QUERYFULLNAME,
    32183228                                    testname, sizeof(testname))) {
     
    32403250          PNOTIFYRECORDEMPHASIS pre = mp2;
    32413251          PCNRITEM pci;
    3242           CHAR s[CCHMAXPATHCOMP + 91], tb[81], tf[81];
     3252          CHAR s[CCHMAXPATHCOMP + 91];
    32433253
    32443254          pci = (PCNRITEM) (pre ? pre->pRecord : NULL);
  • TabularUnified trunk/dll/filldir.c

    r1451 r1459  
    7373  06 Jul 09 SHL Refactor .LONGNAME and .SUBJECT EA fetch to FetchCommonEAs
    7474  12 Jul 09 GKY Add szFSType to FillInRecordFromFSA use to bypass EA scan and size formatting
    75                 for tree container
     75                for tree container
    7676  13 Jul 09 SHL Avoid trap in FillInRecordFromFSA if pszFSType NULL
    7777  22 Jul 09 GKY Code changes to use semaphores to serialize drive scanning
    7878  22 Jul 09 GKY Consolidated driveflag setting code in DriveFlagsOne
    7979  22 Jul 09 GKY Streamline scanning code for faster Tree rescans
     80  15 Sep 09 SHL Show rescan progress while filling container
    8081
    8182***********************************************************************/
     
    110111#include "filter.h"                     // Filter
    111112#include "subj.h"                       // Subject
     113#include "grep.h"                       // hwndStatus
    112114#include "copyf.h"                      // unlinkf
    113115#include "literal.h"                    // wildcard
     
    117119#include "common.h"                     // IncrThreadUsage
    118120#include "excputil.h"                   // xbeginthread
    119 #include "fm3dlg.h"                     // INFO_LABEL
    120 #include "pathutil.h"                   // AddBackslashToPath
     121#include "fm3dlg.h"                     // INFO_LABEL
     122#include "pathutil.h"                   // AddBackslashToPath
    121123
    122124VOID StubbyScanThread(VOID * arg);
     
    133135
    134136#pragma data_seg(GLOBAL2)
    135 PCSZ FM3Tools   = "<FM3_Tools>";
    136 PCSZ WPProgram  = "WPProgram";
     137PCSZ FM3Tools = "<FM3_Tools>";
     138PCSZ WPProgram = "WPProgram";
    137139
    138140typedef struct {
    139   PCNRITEM    pci;
    140   HWND        hwndCnr;                  // hwnd you want the message posted to
    141   HWND        hwndDrivesList;
    142   //BOOL        RamDrive;
     141  PCNRITEM      pci;
     142  HWND          hwndCnr;                // hwnd you want the message posted to
     143  HWND          hwndDrivesList;
     144  //BOOL        RamDrive;
    143145}
    144146STUBBYSCAN;
     
    223225        IncrThreadUsage();
    224226        priority_normal();
    225         ret = Stubby(StubbyScan->hwndCnr, StubbyScan->pci);
    226         if (ret == 1) {
    227           if (WinIsWindow((HAB)0, StubbyScan->hwndCnr)) {
    228             ULONG flags = driveflags[toupper(*StubbyScan->pci->pszFileName) - 'A'];
    229 
    230             if (((fRScanLocal && ~flags & DRIVE_REMOTE && ~flags & DRIVE_VIRTUAL) ||
    231                 (fRScanRemote && flags & DRIVE_REMOTE) ||
    232                 (fRScanVirtual && flags & DRIVE_VIRTUAL)) && fInitialDriveScan) {
    233               if (!(flags & ((fRScanNoWrite ? 0 : DRIVE_NOTWRITEABLE) |
    234                              (fRScanSlow ? 0 : DRIVE_SLOW)))) {
    235                 UnFlesh(StubbyScan->hwndCnr, StubbyScan->pci);
    236                 Flesh(StubbyScan->hwndCnr, StubbyScan->pci);
    237               }
    238             }
    239           }
    240         }
     227        ret = Stubby(StubbyScan->hwndCnr, StubbyScan->pci);
     228        if (ret == 1) {
     229          if (WinIsWindow((HAB)0, StubbyScan->hwndCnr)) {
     230            ULONG flags = driveflags[toupper(*StubbyScan->pci->pszFileName) - 'A'];
     231
     232            if (((fRScanLocal && ~flags & DRIVE_REMOTE && ~flags & DRIVE_VIRTUAL) ||
     233                (fRScanRemote && flags & DRIVE_REMOTE) ||
     234                (fRScanVirtual && flags & DRIVE_VIRTUAL)) && fInitialDriveScan) {
     235              if (!(flags & ((fRScanNoWrite ? 0 : DRIVE_NOTWRITEABLE) |
     236                             (fRScanSlow ? 0 : DRIVE_SLOW)))) {
     237                UnFlesh(StubbyScan->hwndCnr, StubbyScan->pci);
     238                Flesh(StubbyScan->hwndCnr, StubbyScan->pci);
     239              }
     240            }
     241          }
     242        }
    241243        WinDestroyMsgQueue(hmq);
    242244      }
     
    271273      if (hmq) {
    272274        IncrThreadUsage();
    273         priority_normal();
    274         ProcessDirectory(ProcessDir->hwndCnr,
    275                         ProcessDir->pciParent,
    276                         ProcessDir->szDirBase,
    277                         ProcessDir->filestoo,
    278                         ProcessDir->recurse,
    279                         ProcessDir->partial,
    280                         ProcessDir->stopflag,
    281                         ProcessDir->dcd,                       // Optional
    282                         ProcessDir->pulTotalFiles,     // Optional
    283                         ProcessDir->pullTotalBytes);   // Optional
     275        priority_normal();
     276        ProcessDirectory(ProcessDir->hwndCnr,
     277                        ProcessDir->pciParent,
     278                        ProcessDir->szDirBase,
     279                        ProcessDir->filestoo,
     280                        ProcessDir->recurse,
     281                        ProcessDir->partial,
     282                        ProcessDir->stopflag,
     283                        ProcessDir->dcd,                       // Optional
     284                        ProcessDir->pulTotalFiles,     // Optional
     285                        ProcessDir->pullTotalBytes);   // Optional
    284286        WinDestroyMsgQueue(hmq);
    285287      }
     
    312314
    313315    if (cmp == *(ULONG *) PCSZ_DOTEXE || cmp == *(ULONG *) PCSZ_DOTCMD ||
    314         cmp == *(ULONG *) PCSZ_DOTBAT || cmp == *(ULONG *) PCSZ_DOTCOM ||
    315         cmp == *(ULONG *) PCSZ_DOTBTM)
     316        cmp == *(ULONG *) PCSZ_DOTBAT || cmp == *(ULONG *) PCSZ_DOTCOM ||
     317        cmp == *(ULONG *) PCSZ_DOTBTM)
    316318      hptr = hptrApp;
    317319    else if (cmp == *(ULONG *) ".ZIP" || cmp == *(ULONG *) ".LZH" ||
     
    323325      hptr = hptrArc;
    324326    else if (cmp == *(ULONG *) PCSZ_DOTBMP  ||
    325              cmp == *(ULONG *) PCSZ_DOTICO  ||
    326              cmp == *(ULONG *) PCSZ_DOTPTR  ||
    327              cmp == *(ULONG *) PCSZ_DOTJPEG ||
    328              cmp == *(ULONG *) PCSZ_DOTJPG  ||
    329              cmp == *(ULONG *) ".GIF" ||
     327             cmp == *(ULONG *) PCSZ_DOTICO  ||
     328             cmp == *(ULONG *) PCSZ_DOTPTR  ||
     329             cmp == *(ULONG *) PCSZ_DOTJPEG ||
     330             cmp == *(ULONG *) PCSZ_DOTJPG  ||
     331             cmp == *(ULONG *) ".GIF" ||
    330332             cmp == *(ULONG *) ".TIF" || cmp == *(ULONG *) ".PCX" ||
    331333             cmp == *(ULONG *) ".TGA" || cmp == *(ULONG *) ".XBM" ||
     
    460462        eaop.oError = 0;
    461463        rc = DosQueryPathInfo(pci->pszFileName, FIL_QUERYEASFROMLIST,
    462                               (PVOID) &eaop, (ULONG) sizeof(EAOP2));
    463         // Prevent this error from occuring when scanning a directory
    464         // that contains a locked data file
    465         if (rc && rc != ERROR_SHARING_VIOLATION) {
    466           CHAR s[80];
    467           sprintf(s, "%s %s",PCSZ_DOSQUERYPATHINFO, "%s");
    468           Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
    469                     s, pci->pszFileName);
    470         }
     464                              (PVOID) &eaop, (ULONG) sizeof(EAOP2));
     465        // Prevent this error from occuring when scanning a directory
     466        // that contains a locked data file
     467        if (rc && rc != ERROR_SHARING_VIOLATION) {
     468          CHAR s[80];
     469          sprintf(s, "%s %s",PCSZ_DOSQUERYPATHINFO, "%s");
     470          Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
     471                    s, pci->pszFileName);
     472        }
    471473          //DbgMsg(pszSrcFile, __LINE__, "DosQueryPathInfo %s failed with rc %u ", pci->pszFileName, rc);
    472474        else {
     
    475477            if (pfea->cbValue) {
    476478              CHAR *achValue = pfea->szName + pfea->cbName + 1;
    477               if (*(USHORT *)achValue != EAT_ASCII)
    478                 Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
    479                           GetPString(IDS_ERROREATYPETEXT),
    480                           achValue, pfea->cbName, pfea->szName);
     479              if (*(USHORT *)achValue != EAT_ASCII)
     480                Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
     481                          GetPString(IDS_ERROREATYPETEXT),
     482                          achValue, pfea->cbName, pfea->szName);
    481483                //DbgMsg(pszSrcFile, __LINE__, "EA type 0x%x unexpected for %.*s", achValue, pfea->cbName, pfea->szName);
    482484              else {
     
    491493                else if (strncmp(pfea->szName, SUBJECT, pfea->cbName) == 0)
    492494                  pci->pszSubject = pszValue;
    493                 else
    494                   Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
    495                             GetPString(IDS_ERROREATYPETEXT), pfea, pfea->cbName, pfea->szName);
     495                else
     496                  Dos_Error(MB_ENTER, rc, HWND_DESKTOP, pszSrcFile, __LINE__,
     497                            GetPString(IDS_ERROREATYPETEXT), pfea, pfea->cbName, pfea->szName);
    496498                  //DbgMsg(pszSrcFile, __LINE__, "pfea %p EA %.*s unexpected", pfea, pfea->cbName, pfea->szName);
    497499              }
     
    513515                              const PSZ pszDirectory,
    514516                              const PFILEFINDBUF4L pffb,
    515                               const BOOL partial,
     517                              const BOOL partial,
    516518                              DIRCNRDATA *dcd)
    517519{
     
    705707                              const PSZ pszFileName,
    706708                              const PFILESTATUS4L pfsa4,
    707                               const BOOL partial,
    708                               CHAR *pszFSType,  // Optional
     709                              const BOOL partial,
     710                              CHAR *pszFSType,  // Optional
    709711                              DIRCNRDATA *dcd)  // Optional
    710712{
     
    867869                      const BOOL recurse,
    868870                      const BOOL partial,
    869                       CHAR *stopflag,
    870                       DIRCNRDATA *dcd,  // Optional
    871                       ULONG *pulTotalFiles,     // Optional
     871                      CHAR *stopflag,
     872                      DIRCNRDATA *dcd,                  // Optional
     873                      ULONG *pulTotalFiles,             // Optional
    872874                      PULONGLONG pullTotalBytes)        // Optional
    873875{
     
    888890  ULONG ulFindMax;
    889891  ULONG ulSelCnt;
    890   ULONG ulTotal = 0;
     892  ULONG cAffbTotal = 0;
    891893  ULONGLONG ullBytes;
    892894  ULONGLONG ullTotalBytes;
     
    945947    priority_normal();
    946948    pszFileSpec[strlen(pszFileSpec) - 1] = 0;     // Chop off wildcard
    947     //*pchEndPath = 0;
    948949    if (!rc) {
    949950      do {
     
    987988            if (!pciFirst) {
    988989              Win_Error(hwndCnr, HWND_DESKTOP, pszSrcFile, __LINE__,
    989                         GetPString(IDS_CMALLOCRECERRTEXT));
     990                        GetPString(IDS_CMALLOCRECERRTEXT));
    990991              ok = FALSE;
    991992              ullTotalBytes = 0;
     
    995996              pci = pciFirst;
    996997              ullTotalBytes = 0;
    997               // Insert selected in container
     998              // Finish filling pci items
    998999              for (x = 0; x < ulSelCnt; x++) {
    9991000                pffbFile = papffbSelected[x];
     
    10031004                ullTotalBytes += ullBytes;
    10041005              } // for
     1006              // Insert selected in container
    10051007              memset(&ri, 0, sizeof(RECORDINSERT));
    10061008              ri.cb = sizeof(RECORDINSERT);
     
    10101012              ri.cRecordsInsert = ulSelCnt;
    10111013              ri.fInvalidateRecord = TRUE;
    1012                // !fSyncUpdates && dcd && dcd->type == DIR_FRAME ? FALSE : TRUE; //fSyncUpdates always TRUE 12-1-08 GKY
    10131014              if (!WinSendMsg(hwndCnr,
    10141015                              CM_INSERTRECORD,
     
    10261027                    FreeCnrItemList(hwndCnr, pciFirst);
    10271028                }
    1028               // }
    10291029              }
    10301030            }
     
    10321032              ullReturnBytes += ullTotalBytes;
    10331033              ulReturnFiles += ulSelCnt;
     1034              if (dcd) {
     1035                dcd->totalfiles += ulSelCnt;
     1036                dcd->ullTotalBytes += ullTotalBytes;
     1037              }
    10341038            }
    10351039          } // if sync updates
     
    10371041            // Append newly selected entries to aggregate list
    10381042            paffbTemp = xrealloc(paffbTotal,
    1039                                  sizeof(FILEFINDBUF4L) * (ulSelCnt + ulTotal),
     1043                                 sizeof(FILEFINDBUF4L) * (ulSelCnt + cAffbTotal),
    10401044                                 pszSrcFile, __LINE__);
    10411045            if (paffbTemp) {
    10421046              // 13 Aug 07 SHL fixme to optimize copy
    10431047              paffbTotal = paffbTemp;
    1044               for (x = 0; x < ulSelCnt; x++)
    1045                 paffbTotal[x + ulTotal] = *papffbSelected[x];
    1046               ulTotal += ulSelCnt;
     1048              ullTotalBytes = 0;        // 15 Sep 09 SHL
     1049              for (x = 0; x < ulSelCnt; x++) {
     1050                paffbTotal[x + cAffbTotal] = *papffbSelected[x];
     1051                ullTotalBytes += papffbSelected[x]->cbFile;     // 15 Sep 09 SHL
     1052              }
     1053              cAffbTotal += ulSelCnt;
     1054              // 15 Sep 09 SHL allow timed updates to see
     1055              if (dcd) {
     1056                dcd->totalfiles += ulSelCnt;
     1057                dcd->ullTotalBytes += ullTotalBytes;
     1058              }
    10471059            }
    10481060            else {
     
    10701082      papffbSelected = NULL;
    10711083
    1072       if (ulTotal && paffbTotal) {
    1073 
     1084      if (cAffbTotal && paffbTotal) {
     1085        // Not fSyncUpdates and have work
    10741086        if (stopflag && *stopflag)
    10751087          goto Abort;
    10761088
    10771089        pciFirst = WinSendMsg(hwndCnr, CM_ALLOCRECORD,
    1078                               MPFROMLONG(EXTRA_RECORD_BYTES), MPFROMLONG(ulTotal));
     1090                              MPFROMLONG(EXTRA_RECORD_BYTES), MPFROMLONG(cAffbTotal));
     1091
    10791092        if (!pciFirst) {
    10801093          Win_Error(hwndCnr, HWND_DESKTOP, pszSrcFile, __LINE__,
     
    10851098        else {
    10861099          // 04 Jan 08 SHL fixme like comp.c to handle less than ulSelCnt records
     1100          if (dcd && hwndStatus &&
     1101              dcd->hwndFrame == WinQueryActiveWindow(dcd->hwndParent)) {
     1102            WinSetWindowText(hwndStatus, GetPString(IDS_PLEASEWAITCOUNTINGTEXT));
     1103          }
    10871104          pci = pciFirst;
    10881105          ullTotalBytes = 0;
    10891106          pffbFile = paffbTotal;
    1090           for (x = 0; x < ulTotal; x++) {
     1107          for (x = 0; x < cAffbTotal; x++) {
    10911108            ullBytes = FillInRecordFromFFB(hwndCnr, pci, pszFileSpec,
    10921109                                           pffbFile, partial, dcd);
    10931110            pci = (PCNRITEM) pci->rc.preccNextRecord;
    10941111            ullTotalBytes += ullBytes;
     1112            // 15 Sep 09 SHL allow timed updates to see
     1113            if (dcd) {
     1114              dcd->totalfiles = x;
     1115              dcd->ullTotalBytes = ullTotalBytes;
     1116            }
    10951117            // Can not use offset since we have merged lists - this should be equivalent
    10961118            pffbFile = (PFILEFINDBUF4L)((PBYTE)pffbFile + sizeof(FILEFINDBUF4L));
    10971119          }
    1098           if (ulTotal) {
     1120          if (cAffbTotal) {
    10991121            memset(&ri, 0, sizeof(RECORDINSERT));
    11001122            ri.cb = sizeof(RECORDINSERT);
     
    11021124            ri.pRecordParent = (PRECORDCORE) pciParent;
    11031125            ri.zOrder = (ULONG) CMA_TOP;
    1104             ri.cRecordsInsert = ulTotal;
     1126            ri.cRecordsInsert = cAffbTotal;
    11051127            ri.fInvalidateRecord = (!fSyncUpdates && dcd &&
    11061128                                    dcd->type == DIR_FRAME) ? FALSE : TRUE;
     
    11651187    while (pci && (INT)pci != -1) {
    11661188      if ((pci->attrFile & FILE_DIRECTORY))
    1167         Stubby(hwndCnr, pci);
     1189        Stubby(hwndCnr, pci);
    11681190      pci = WinSendMsg(hwndCnr, CM_QUERYRECORD, MPFROMP(pci),
    11691191                       MPFROM2SHORT(CMA_NEXT, CMA_ITEMORDER));
     
    11711193  }
    11721194
     1195  // Reset counts in case errors occurred after initially counted
    11731196  if (pulTotalFiles)
    11741197    *pulTotalFiles = ulReturnFiles;
     
    11891212                   TRUE,                // filestoo
    11901213                   FALSE,               // recurse
    1191                    TRUE,                // partial
    1192                    dcd ? &dcd->stopflag : NULL,
    1193                    dcd,
     1214                   TRUE,                // partial
     1215                   dcd ? &dcd->stopflag : NULL,
     1216                   dcd,
    11941217                   NULL,                // total files
    11951218                   pullTotalBytes);
     
    12281251    driveflags[x] &= (DRIVE_IGNORE | DRIVE_NOPRESCAN | DRIVE_NOLOADICONS |
    12291252                      DRIVE_NOLOADSUBJS | DRIVE_NOLOADLONGS |
    1230                       DRIVE_INCLUDEFILES | DRIVE_SLOW | DRIVE_NOSTATS |
    1231                       DRIVE_WRITEVERIFYOFF);
     1253                      DRIVE_INCLUDEFILES | DRIVE_SLOW | DRIVE_NOSTATS |
     1254                      DRIVE_WRITEVERIFYOFF);
    12321255  }
    12331256  memset(driveserial, -1, sizeof(driveserial));
     
    12971320        if (!(driveflags[x] & DRIVE_NOPRESCAN)) {
    12981321          *szFSType = 0;
    1299           ulDriveType = 0;
    1300           memset(&volser, 0, sizeof(volser));
    1301           DriveFlagsOne(x, szFSType, &volser);
    1302           driveserial[x] = volser.serial;
     1322          ulDriveType = 0;
     1323          memset(&volser, 0, sizeof(volser));
     1324          DriveFlagsOne(x, szFSType, &volser);
     1325          driveserial[x] = volser.serial;
    13031326          memset(&fsa4, 0, sizeof(FILESTATUS4L));
    13041327          if (!fVerifyOffChecked[x]) {
     
    13431366              pci->pszFileName = xstrdup(szDrive, pszSrcFile, __LINE__);
    13441367              if (fShowFSTypeInTree || fShowDriveLabelInTree) {
    1345                 strcat(szDrive, " [");
    1346                 strcat(szDrive, szFSType);
    1347                 strcat(szDrive, "]");
     1368                strcat(szDrive, " [");
     1369                strcat(szDrive, szFSType);
     1370                strcat(szDrive, "]");
    13481371              }
    13491372              pci->pszDisplayName = xstrdup(szDrive, pszSrcFile, __LINE__);
     
    15491572                                CM_QUERYRECORD,
    15501573                                MPVOID,
    1551                                 MPFROM2SHORT(CMA_FIRST, CMA_ITEMORDER));
     1574                                MPFROM2SHORT(CMA_FIRST, CMA_ITEMORDER));
    15521575    while (pci && (INT)pci != -1) {
    15531576      stubbyScan = xmallocz(sizeof(STUBBYSCAN), pszSrcFile, __LINE__);
     
    15761599            {
    15771600              xfree(stubbyScan, pszSrcFile, __LINE__);
    1578             }
     1601            }
    15791602          } // if drive for scanning
    15801603          else
     
    16701693             GetPString(IDS_SUGGEST1TEXT),
    16711694             (includesyours) ? GetPString(IDS_SUGGEST2TEXT) : NullStr,
    1672              suggest);
     1695             suggest);
    16731696      if (MBID_YES) {
    16741697        char s[64];
     
    16911714      }
    16921715      else if (MBID_CANCEL) {
    1693         fDontSuggestAgain = TRUE;
    1694         PrfWriteProfileData(fmprof, appname, "DontSuggestAgain", &fDontSuggestAgain, sizeof(BOOL));
     1716        fDontSuggestAgain = TRUE;
     1717        PrfWriteProfileData(fmprof, appname, "DontSuggestAgain", &fDontSuggestAgain, sizeof(BOOL));
    16951718      }
    16961719    }
  • TabularUnified trunk/dll/fm3dll2.h

    r1456 r1459  
    2929  12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini
    3030  14 Sep 09 SHL Drop experimental code
     31  15 Sep 09 SHL Add rescan progress timer
    3132
    3233  Align with spaces only - no tabs please
     
    7273#define ID_COMP_TIMER       4
    7374#define ID_NOTIFY_TIMER     15
    74 // #define ID_TIMER3           16       // 13 Jul 09 SHL Dropped
    7575#define ID_ACTION_TIMER     16          // 13 Jul 09 SHL Added
    76 // #define ID_TIMER4           19       // 13 Jul 09 SHL Dropped
     76#define ID_DIRCNR_TIMER     17          // 15 Sep 09 SHL Added
    7777#define ID_NEWVIEW_TIMER    20
    78 // #define ID_TIMER6           21       // 13 Jul 09 SHL Dropped
    79 #define ID_LED_TIMER        22
     78#define ID_LED_TIMER        21
    8079
    8180// Window ids, etc.
  • TabularUnified trunk/dll/fm3res.rc

    r1458 r1459  
    4444  12 Sep 09 GKY Add FM3.INI User ini and system ini to submenu for view ini             
    4545  15 Sep 09 SHL Update for Thread notes text changes
     46  15 Sep 09 SHL Add rescan progress messages
    4647
    4748***********************************************************************/
     
    32823283    IDS_RESCANALLDRIVESTEXT               "Rescan all drives"
    32833284    IDS_REFRESHREMOVABLESTEXT             "Refresh removable media"
     3285    IDS_PLEASEWAITSCANNINGTEXT            "Please wait -- scanning..."
     3286    IDS_PLEASEWAITCOUNTINGTEXT            "Please wait -- counting..."
    32843287
    32853288    // Add strings that need to be combined by GetPString here
  • TabularUnified trunk/dll/fm3str.h

    r1444 r1459  
    2323  26 Aug 08 GKY Error strings for require unique ID plus text and help strings for all tools
    2424  03 Jan 09 GKY Check for system that is protectonly to gray out Dos/Win command lines and prevent
    25                 Dos/Win programs from being inserted into the execute dialog with message why.
     25                Dos/Win programs from being inserted into the execute dialog with message why.
    2626  10 Jan 09 GKY Removed rotating strings for font samples as part of StringTable conversion
    2727  11 Jan 08 GKY Move strings that will need translating to stringtable from sting file cut to
    28                 255 where necessary
     28                255 where necessary
    2929  04 Feb 09 SHL Switch to STRINGTABLE
    3030  07 Feb 09 GKY Eliminate Win_Error2 by moving function names to PCSZs used in Win_Error
     
    3636                and rescans drive in tree container depending on container focus, greyed out
    3737                inappropriate menu context choices
     38  15 Sep 09 SHL Add ids for rescan progress messages
    3839
    3940***********************************************************************/
     
    819820#define IDS_DELETEDTEXT                                       819
    820821#define IDS_OPSCOMPLETETEXT                                   820
    821 //Drive flag strings these must remain in order and be sequential to work
     822// Drive flags strings must remain in order and be sequential to work
    822823#define IDS_FLREMOVABLETEXT                                   821
    823824#define IDS_FLNOTWRITEABLETEXT                                822
     
    840841#define IDS_FLWRITEVERIFYOFFTEXT                              839
    841842#define IDS_FLRECURSESCANDONETEXT                             840
    842 //End drive flag strings
     843// End drive flag strings
    843844#define IDS_CANTQUERYVOLTEXT                                  841
    844845#define IDS_CANTQUERYALLOCTEXT                                842
     
    853854#define IDS_CANTLOADHELPTEXT                                  851
    854855#define IDS_NOHELPACCEPTTEXT                                  852
    855 //#define IDS_NOHELPABORTTEXT                                   851 //Not used
    856856#define IDS_MISMATCHTITLETEXT                                 853
    857857#define IDS_MISMATCHTEXT                                      854
    858858#define IDS_CHECKSYSTEMCLOCKTEXT                              856
    859859#define IDS_NOTICETITLETEXT                                   857
    860 #define IDS_UPGRADETEXT                                       858 //Not used
    861 #define IDS_PERNODETEXT                                       859 //Not used
    862 #define IDS_USUALDISCTEXT                                     860 //Not used
     860#define IDS_PLEASEWAITSCANNINGTEXT                            858
     861#define IDS_PLEASEWAITCOUNTINGTEXT                            859
     862// #define IDS_USUALDISCTEXT                                     860 //Not used
     863
    863864#define IDS_ARCCNRFILTERMENUHELP                              867
    864865#define IDS_ARCCNRWALKDIRMENUHELP                             868
Note: See TracChangeset for help on using the changeset viewer.