Changeset 1326 for trunk/dll/filldir.c


Ignore:
Timestamp:
Dec 9, 2008, 3:18:36 AM (16 years ago)
Author:
Gregg Young
Message:

Changes to avoid duplicate directory names on scan using StubbyScanThread.

File:
1 edited

Legend:

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

    r1320 r1326  
    122122  HWND        hwndDrivesList;
    123123  BOOL        RamDrive;
    124   BOOL        FirstDrive;
    125124}
    126125STUBBYSCAN;
     
    219218                     MPFROM2SHORT(LIT_SORTASCENDING, 0),
    220219                     MPFROMP(StubbyScan->pci->pszFileName));
    221         }
     220        }
    222221        StubbyScanCount--;
    223         if (StubbyScan->FirstDrive) {
    224           priority_critical();
    225           while (StubbyScanCount != 0)
    226             DosSleep(50);
    227           DosPostEventSem(DriveScanStart);
    228         }
     222        if (StubbyScanCount == 0)
     223          fInitialDriveScan = FALSE;
    229224        WinDestroyMsgQueue(hmq);
    230225      }
     
    359354  CHAR *p;
    360355  HPOINTER hptr;
     356  ULONG flags;
    361357
    362358  pci->hwndCnr = hwndCnr;
     
    395391    memcpy(p, pffb->achName, pffb->cchName + 1);
    396392  }
    397 
     393  flags = driveflags[toupper(*pci->pszFileName) - 'A'];
    398394  // load the object's Subject, if required
    399   pci->pszSubject = NullStr;
     395  // pci->pszSubject = NullStr; dubplicate see below 12-05-08 GKY
    400396  if (pffb->cbList > 4L &&
    401397      dcd && fLoadSubject &&
    402398      (isalpha(*pci->pszFileName) &&
    403        !(driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLOADSUBJS)))
     399       !(flags & DRIVE_NOLOADSUBJS)))
    404400  {
    405401    APIRET rc;
     
    447443      pffb->cbList > 4L &&
    448444      isalpha(*pci->pszFileName) &&
    449       ~driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLONGNAMES &&
    450       ~driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLOADLONGS)
     445      ~flags & DRIVE_NOLONGNAMES &&
     446      ~flags & DRIVE_NOLOADLONGS)
    451447  {
    452448    APIRET rc;
     
    508504    // is directory
    509505    if (fNoIconsDirs ||
    510         (driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLOADICONS) ||
     506        (flags & DRIVE_NOLOADICONS) ||
    511507        !isalpha(*pci->pszFileName)) {
    512508      hptr = (HPOINTER) 0;
     
    518514    // is file
    519515    if (fNoIconsFiles ||
    520         (driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLOADICONS) ||
     516        (flags & DRIVE_NOLOADICONS) ||
    521517        !isalpha(*pci->pszFileName)) {
    522518      hptr = (HPOINTER) 0;
     
    531527  if (!hptr) {
    532528    hptr = pffb->attrFile & FILE_DIRECTORY ?
    533       hptrDir : pffb->attrFile & FILE_SYSTEM ?
    534                   hptrSystem :
    535                     pffb->attrFile & FILE_HIDDEN ?
    536                     hptrHidden :
    537                     pffb->attrFile & FILE_READONLY ?
    538                       hptrReadonly : hptrFile;
     529           hptrDir : pffb->attrFile & FILE_SYSTEM ?
     530           hptrSystem : pffb->attrFile & FILE_HIDDEN ?
     531           hptrHidden : pffb->attrFile & FILE_READONLY ?
     532           hptrReadonly : hptrFile;
    539533  }
    540534
     
    638632  HPOINTER hptr;
    639633  CHAR *p;
     634  ULONG flags;
    640635
    641636  // fill in a container record from a FILESTATUS4L structure
     
    644639  pci->pszFileName = xstrdup(pszFileName, pszSrcFile, __LINE__);
    645640  //strcpy(pci->pszFileName, pszFileName);
    646 
     641  flags = driveflags[toupper(*pci->pszFileName) - 'A'];
    647642  // load the object's Subject, if required
    648   pci->pszSubject = NullStr;
     643  //pci->pszSubject = NullStr;
    649644  if (pfsa4->cbList > 4 &&
    650645      dcd &&
    651646      fLoadSubject &&
    652647      (!isalpha(*pci->pszFileName) ||
    653        !(driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLOADSUBJS)))
     648       !(flags & DRIVE_NOLOADSUBJS)))
    654649  {
    655650    APIRET rc;
     
    696691      pfsa4->cbList > 4L &&
    697692      isalpha(*pci->pszFileName) &&
    698       ~driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLONGNAMES &&
    699       ~driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLOADLONGS)
     693      ~flags & DRIVE_NOLONGNAMES &&
     694      ~flags & DRIVE_NOLOADLONGS)
    700695  {
    701696    APIRET rc;
     
    746741  if (pfsa4->attrFile & FILE_DIRECTORY) {
    747742    if (fNoIconsDirs ||
    748         (driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLOADICONS) ||
     743        (flags & DRIVE_NOLOADICONS) ||
    749744        !isalpha(*pci->pszFileName)) {
    750745      hptr = (HPOINTER) 0;
     
    755750  else {
    756751    if (fNoIconsFiles ||
    757         (driveflags[toupper(*pci->pszFileName) - 'A'] & DRIVE_NOLOADICONS) ||
     752        (flags & DRIVE_NOLOADICONS) ||
    758753        !isalpha(*pci->pszFileName)) {
    759754      hptr = IDFile(pci->pszFileName);
     
    12721267      CHAR s[80];
    12731268      ULONG flags = 0;
    1274       ULONG size = sizeof(ULONG);
    12751269
    12761270      *szDrive = (CHAR)x + 'A';         // Build path spec
    12771271
    12781272      sprintf(s, "%c.DriveFlags", toupper(*szDrive));
    1279       if (PrfQueryProfileData(fmprof, appname, s, &flags, &size) &&
    1280           size == sizeof(ULONG)) {
     1273      if (PrfQueryProfileData(fmprof, appname, s, &flags, &sizeUlong)) {
    12811274        driveflags[toupper(*szDrive) - 'A'] |= flags;
    12821275      }
     
    15621555    HWND hwndDrivesList = WinWindowFromID(WinQueryWindow(hwndParent, QW_PARENT),
    15631556                                          MAIN_DRIVELIST);
    1564     BOOL FirstDrive = TRUE;
    15651557
    15661558    pci = (PCNRITEM) WinSendMsg(hwndCnr,
     
    15771569      StubbyScan->hwndDrivesList = hwndDrivesList;
    15781570      StubbyScan->RamDrive = FALSE;
    1579       StubbyScan->FirstDrive = FALSE;
    15801571      pciNext = (PCNRITEM) WinSendMsg(hwndCnr,
    15811572                                      CM_QUERYRECORD,
     
    15881579          if (~flags & DRIVE_INVALID &&
    15891580              ~flags & DRIVE_NOPRESCAN &&
    1590               (!fNoRemovableScan || ~flags & DRIVE_REMOVABLE))
     1581              (!fNoRemovableScan || ~flags & DRIVE_REMOVABLE) && !fDrivetoSkip[drvNum])
    15911582          {
    15921583            if (DRIVE_RAMDISK)
    15931584              StubbyScan->RamDrive = TRUE;
    1594             if (FirstDrive)
    1595               StubbyScan->FirstDrive = TRUE;
    15961585            rc = _beginthread(StubbyScanThread, NULL, 65536, StubbyScan);
    15971586            if (rc == -1)
    15981587              Runtime_Error(pszSrcFile, __LINE__,
    15991588                            GetPString(IDS_COULDNTSTARTTHREADTEXT));
    1600             else
    1601               FirstDrive = FALSE;
    16021589          } // if drive for scanning
    16031590          else
     
    16161603                     MPFROM2SHORT(LIT_SORTASCENDING, 0),
    16171604                     MPFROMP(pci->pszFileName));
    1618         }
     1605        }
     1606        fDrivetoSkip[drvNum] = FALSE;
    16191607      }
    16201608      pci = pciNext;
    16211609    } // while
    1622     StubbyScanCount --;
     1610    StubbyScanCount--;
     1611    if (StubbyScanCount == 0)
     1612      fInitialDriveScan = FALSE;
    16231613  }
    16241614  if (hwndParent)
Note: See TracChangeset for help on using the changeset viewer.