source: trunk/dll/flesh.c@ 1550

Last change on this file since 1550 was 1550, checked in by Gregg Young, 15 years ago

This actually fixes the double names in the tree container. It also streamlines the initial scan code by eliminating multiple redundant scans.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 14.7 KB
RevLine 
[145]1
2/***********************************************************************
3
4 $Id: flesh.c 1550 2010-11-03 02:50:42Z gyoung $
5
6 Flesh
7
8 Copyright (c) 1993-98 M. Kimes
[1498]9 Copyright (c) 2005, 2010 Steven H. Levine
[145]10
11 24 May 05 SHL Rework Win_Error usage
[166]12 25 May 05 SHL Rework for ProcessDirectory
[284]13 28 May 05 SHL Clean while reading code
14 24 Oct 05 SHL Delete obsolete code
[340]15 22 Jul 06 SHL Check more run time errors
[515]16 19 Oct 06 SHL Stubby - correct . and .. detect
[574]17 22 Mar 07 GKY Use QWL_USER
[751]18 01 Aug 07 SHL Sync with CNRITEM mods
[775]19 06 Aug 07 GKY Reduce DosSleep times (ticket 148)
[793]20 20 Aug 07 GKY Move #pragma alloc_text to end for OpenWatcom compat
[985]21 29 Feb 08 GKY Use xfree where appropriate
[1299]22 24 Nov 08 GKY remove redundant code and minor speed up of Stubby
[1358]23 25 Dec 08 GKY Add ProcessDirectoryThread to allow optional recursive drive scan at startup.
24 25 Dec 08 GKY Add DRIVE_RSCANNED flag to monitor for the first recursive drive scan per session
[1471]25 to prevent duplicate directory names in tree following a copy before initial scan.
[1400]26 08 Mar 09 GKY Additional strings move to PCSZs in init.c
[1482]27 13 Dec 09 GKY Fixed separate paramenters. Please note that appname should be used in
28 profile calls for user settings that work and are setable in more than one
29 miniapp; FM3Str should be used for setting only relavent to FM/2 or that
30 aren't user settable; realappname should be used for setting applicable to
31 one or more miniapp but not to FM/2
[1498]32 17 JAN 10 GKY Changes to get working with Watcom 1.9 Beta (1/16/10). Mostly cast CHAR CONSTANT * as CHAR *.
[145]33
34***********************************************************************/
35
[907]36#include <stdlib.h>
37#include <string.h>
38#include <ctype.h>
39
[2]40#define INCL_DOS
41#define INCL_DOSERRORS
42#define INCL_WIN
[907]43#define INCL_LONGLONG // dircnrs.h
[2]44
[1177]45#include "fm3dll.h"
[1207]46#include "draglist.h" // Data declaration(s)
47#include "notebook.h" // Data declaration(s)
48#include "info.h" // Data declaration(s)
49#include "init.h" // Data declaration(s)
50#include "mainwnd.h" // Data declaration(s)
[907]51#include "fm3str.h"
52#include "filldir.h" // FileAttrToString...
53#include "errutil.h" // Dos_Error...
54#include "strutil.h" // GetPString
[1155]55#include "flesh.h"
56#include "valid.h" // IsValidDir
57#include "misc.h" // LoadLibPath
[1177]58#include "findrec.h" // FindCnrRecord
59#include "notify.h" // Notify
60#include "wrappers.h" // xfree
[1354]61#include "excputil.h" // xbeginthread
[2]62
[1207]63// Data definitions
[2]64#pragma data_seg(DATA1)
[340]65
66static PSZ pszSrcFile = __FILE__;
67
[1207]68#pragma data_seg(GLOBAL1)
69ULONG NoBrokenNotify;
70BOOL fFilesInTree;
71
[551]72BOOL FleshEnv(HWND hwndCnr, PCNRITEM pciParent)
[175]73{
[551]74 PCNRITEM pciL;
[2]75 DIRCNRDATA *dcd;
[551]76 CHAR path[CCHMAXPATH + 12],
77 fullpath[CCHMAXPATH + 12], *env, *p, *pp, *var = NULL;
[2]78
[551]79 if (!pciParent || (INT) pciParent == -1 || !hwndCnr)
[2]80 return FALSE;
[574]81 dcd = (DIRCNRDATA *) WinQueryWindowPtr(hwndCnr, QWL_USER);
[551]82 if (!dcd)
[2]83 return FALSE;
84
[730]85 strcpy(path, pciParent->pszFileName + 1);
[551]86 if (stricmp(path, GetPString(IDS_ENVVARSTEXT) + 1))
87 UnFlesh(hwndCnr, pciParent);
88 if (*path) {
[2]89 path[strlen(path) - 1] = 0;
[1400]90 if (!stricmp(path, PCSZ_LIBPATH)) {
[551]91 var = xmalloc(65536, pszSrcFile, __LINE__);
92 if (var)
93 LoadLibPath(var, 65536);
[2]94 env = var;
95 }
96 else
97 env = getenv(path);
[551]98 if (env && *env) {
[2]99 p = env;
[551]100 while (*p) {
101 pp = path;
102 while (*p == ';')
103 p++;
104 while (*p && *p != ';') {
105 *pp = *p;
106 p++;
107 pp++;
108 }
109 *pp = 0;
110 if (*path &&
111 strcmp(path, ".") &&
112 strcmp(path, ".\\") &&
113 strcmp(path, "..") &&
114 strcmp(path, "..\\") &&
115 strncmp(path, ".\\", 2) && strncmp(path, "..\\", 3)) {
116 if (!DosQueryPathInfo(path,
117 FIL_QUERYFULLNAME,
118 fullpath,
119 sizeof(fullpath)) && IsValidDir(fullpath)) {
120 pciL = FindCnrRecord(hwndCnr,
121 fullpath, pciParent, FALSE, FALSE, FALSE);
122 if (pciL) {
123 while (pciL && pciL != (PCNRITEM) - 1 && pciL != pciParent)
124 pciL = WinSendMsg(hwndCnr,
125 CM_QUERYRECORD,
126 MPFROMP(pciL),
127 MPFROM2SHORT(CMA_PARENT, CMA_ITEMORDER));
128 }
129 if (!pciL) {
[2]130
[551]131 RECORDINSERT ri;
[2]132
[551]133 pciL = WinSendMsg(hwndCnr,
134 CM_ALLOCRECORD,
[751]135 MPFROMLONG(EXTRA_RECORD_BYTES),
[551]136 MPFROMLONG(1));
137 if (pciL) {
[730]138 pciL->pszFileName = xstrdup(fullpath, pszSrcFile, __LINE__);
[751]139 pciL->rc.pszIcon = pciL->pszFileName;
[551]140 if (!fNoIconsDirs &&
141 (!isalpha(*fullpath) ||
142 !(driveflags[toupper(*fullpath) - 'A'] &
143 DRIVE_NOLOADICONS)))
144 pciL->rc.hptrIcon = WinLoadFileIcon(fullpath, FALSE);
145 if (!pciL->rc.hptrIcon)
146 pciL->rc.hptrIcon = hptrDir;
147 pciL->attrFile = FILE_DIRECTORY;
[751]148 pciL->pszDispAttr = FileAttrToString(pciL->attrFile);
[551]149 memset(&ri, 0, sizeof(ri));
150 ri.cb = sizeof(ri);
151 ri.pRecordOrder = (PRECORDCORE) CMA_END;
152 ri.pRecordParent = (PRECORDCORE) pciParent;
153 ri.zOrder = (ULONG) CMA_TOP;
154 ri.cRecordsInsert = 1;
155 ri.fInvalidateRecord = FALSE;
156 if (!WinSendMsg(hwndCnr,
157 CM_INSERTRECORD, MPFROMP(pciL), MPFROMP(&ri)))
[751]158 FreeCnrItem(hwndCnr, pciL);
[551]159 }
160 }
161 }
162 }
[2]163 }
164 }
[1009]165 xfree(var, pszSrcFile, __LINE__);
[551]166 pciL = (PCNRITEM) WinSendMsg(hwndCnr,
167 CM_QUERYRECORD,
168 MPFROMP(pciParent),
169 MPFROM2SHORT(CMA_FIRSTCHILD, CMA_ITEMORDER));
170 while (pciL && (INT) pciL != -1) {
[2]171 pciL->flags |= (RECFLAGS_NODRAG | RECFLAGS_UNDERENV);
172 WinSendMsg(hwndCnr,
[551]173 CM_INVALIDATERECORD, MPFROMP(&pciL), MPFROM2SHORT(1, 0));
[2]174 pciL = WinSendMsg(hwndCnr,
[551]175 CM_QUERYRECORD,
176 MPFROMP(pciL), MPFROM2SHORT(CMA_NEXT, CMA_ITEMORDER));
[2]177 }
178 }
179 return TRUE;
180}
181
[551]182BOOL Flesh(HWND hwndCnr, PCNRITEM pciParent)
[166]183{
[551]184 PCNRITEM pciL;
[2]185 DIRCNRDATA *dcd;
[551]186 BOOL includefiles = fFilesInTree;
[2]187
[551]188 if (!pciParent || (INT) pciParent == -1 || !hwndCnr)
[2]189 return FALSE;
[551]190 pciL = (PCNRITEM) WinSendMsg(hwndCnr,
191 CM_QUERYRECORD,
192 MPFROMP(pciParent),
193 MPFROM2SHORT(CMA_FIRSTCHILD, CMA_ITEMORDER));
[730]194 if (!pciL || !*pciL->pszFileName) {
[751]195 if (pciL && (INT) pciL != -1)
196 RemoveCnrItems(hwndCnr, pciL, 1, CMA_FREE);
[2]197 dcd = INSTDATA(hwndCnr);
[166]198 if (dcd && dcd->size != sizeof(DIRCNRDATA))
[2]199 dcd = NULL;
[730]200 if (driveflags[toupper(*pciParent->pszFileName) - 'A'] &
[551]201 DRIVE_INCLUDEFILES)
[2]202 includefiles = TRUE;
[1550]203#if 0
[1354]204 if (fInitialDriveScan) {
205 PROCESSDIR *ProcessDir;
206
207 ProcessDir = xmallocz(sizeof(PROCESSDIR), pszSrcFile, __LINE__);
208 if (!ProcessDir)
[1471]209 return FALSE;
[1354]210 ProcessDir->hwndCnr = hwndCnr;
211 ProcessDir->pciParent = pciParent;
212 ProcessDir->szDirBase = pciParent->pszFileName;
213 ProcessDir->filestoo = includefiles;
214 ProcessDir->recurse = TRUE;
215 ProcessDir->partial = TRUE;
216 ProcessDir->stopflag = NULL;
217 ProcessDir->dcd = dcd;
218 ProcessDir->pulTotalFiles = NULL;
219 ProcessDir->pullTotalBytes = NULL;
220
221 if (xbeginthread(ProcessDirectoryThread,
[1471]222 65536,
223 ProcessDir,
224 pszSrcFile,
225 __LINE__) == -1)
[1354]226 {
[1471]227 xfree(ProcessDir, pszSrcFile, __LINE__);
[1354]228 }
229 }
[1471]230 else {
[1550]231# endif
[1354]232 ProcessDirectory(hwndCnr,
[1471]233 pciParent,
234 pciParent->pszFileName,
235 includefiles, // filestoo
236 TRUE, // recurse
237 TRUE, // partial
238 NULL, // stop flag
239 dcd,
240 NULL, // total files
241 NULL); // total bytes
[1550]242 //}
[2]243 }
[1354]244 driveflags[*pciParent->pszFileName - 'A'] |= DRIVE_RSCANNED;
[2]245 return TRUE;
246}
247
[551]248BOOL UnFlesh(HWND hwndCnr, PCNRITEM pciParent)
[175]249{
[551]250 BOOL ret = FALSE;
[2]251 PCNRITEM pciL;
252
[175]253 if (!pciParent || !hwndCnr)
[2]254 return FALSE;
[551]255 for (;;) {
256 pciL = (PCNRITEM) WinSendMsg(hwndCnr,
257 CM_QUERYRECORD,
258 MPFROMP(pciParent),
259 MPFROM2SHORT(CMA_FIRSTCHILD, CMA_ITEMORDER));
260 if (pciL && (INT) pciL != -1) {
[2]261 ret = TRUE;
[751]262 RemoveCnrItems(hwndCnr, pciL, 1, CMA_FREE);
[2]263 }
264 else
265 break;
266 }
[551]267 if (ret) {
[2]268 WinSendMsg(hwndCnr,
[551]269 CM_INVALIDATERECORD,
270 MPFROMP(&pciParent),
271 MPFROM2SHORT(1, CMA_ERASE | CMA_REPOSITION));
[175]272 }
[2]273 return ret;
274}
275
[1482]276#define DDEPTH 64
[2]277
[1471]278/**
279 * Fill in drive tree subtree
280 * @return TRUE if OK, else FALSE
281 */
282
[551]283BOOL Stubby(HWND hwndCnr, PCNRITEM pciParent)
[175]284{
[1409]285 /**
[2]286 * this code is full of workarounds for screwed up LANs.
287 * let's hope all the current LAN programmers fall into
288 * a black hole and make way for people who can get it right...
289 */
290
[1471]291 BOOL ok = FALSE;
[847]292 FILEFINDBUF3 ffb[DDEPTH];
293 PFILEFINDBUF3 pffb;
[551]294 HDIR hDir = HDIR_CREATE;
[761]295 ULONG nm, ulM = 1, total = 0, fl = MUST_HAVE_DIRECTORY;
[551]296 CHAR str[CCHMAXPATH];
297 register INT len;
298 APIRET rc, prc;
299 BOOL isadir = FALSE, isremote = FALSE, includefiles = fFilesInTree;
[1482]300 ULONG ddepth = DDEPTH;
[1299]301 ULONG drvNum;
302 ULONG flags;
[551]303 static BOOL brokenlan = FALSE, isbroken = FALSE;
[2]304
[730]305 if (!pciParent || !*pciParent->pszFileName || !hwndCnr)
[2]306 return FALSE;
307
[730]308 len = strlen(pciParent->pszFileName);
309 memcpy(str, pciParent->pszFileName, len + 1);
[551]310 if (str[len - 1] != '\\')
[2]311 str[len++] = '\\';
312 str[len++] = '*';
313 str[len] = 0;
314
[551]315 if (!isalpha(*str) || str[1] != ':' || str[2] != '\\')
[2]316 MakeFullName(str);
317
[1299]318 drvNum = toupper(*pciParent->pszFileName) - 'A';
319 flags = driveflags[drvNum];
[551]320 if (!isalpha(*str) ||
321 str[1] != ':' ||
[1299]322 str[2] != '\\' || ((flags & DRIVE_IGNORE)))
[1471]323 return FALSE; // Not a directory
[2]324
[1299]325 if (flags & DRIVE_INCLUDEFILES)
[2]326 includefiles = TRUE;
327
[1299]328 if (flags & DRIVE_REMOTE)
[2]329 isremote = TRUE;
330
[551]331 if (isremote) {
332 if (fRemoteBug) {
333 if (brokenlan) {
334 ddepth = (ULONG) - 1;
335 ddepth--;
[2]336 }
[761]337 ulM = 1;
[2]338 }
339 }
[551]340 else if (isbroken)
[2]341 ddepth = 14;
342
[1482]343 if (!fRemoteBug)
344 ulM = (ddepth <= DDEPTH) ? ddepth : 1;
[2]345
346 nm = ulM;
347
348 DosError(FERR_DISABLEHARDERR);
[551]349 if (includefiles)
[2]350 fl = FILE_DIRECTORY;
[847]351 rc = DosFindFirst(str,
352 &hDir,
353 FILE_NORMAL | fl |
354 FILE_READONLY | FILE_ARCHIVED |
355 FILE_SYSTEM | FILE_HIDDEN,
356 &ffb, ulM * sizeof(FILEFINDBUF3), &nm, FIL_STANDARD);
[761]357 if (ulM == 1 && !rc) {
[2]358 do {
359 pffb = &ffb[0];
[551]360 if (!includefiles && !(pffb->attrFile & FILE_DIRECTORY) && !brokenlan) {
361 brokenlan = TRUE;
[847]362 ddepth = (ULONG) - 1;
[551]363 ddepth--;
364 if (!NoBrokenNotify) {
365 prc = saymsg(MB_YESNO | MB_ICONEXCLAMATION,
366 HWND_DESKTOP,
367 GetPString(IDS_LANERRORTITLETEXT),
368 GetPString(IDS_LANERRORTEXT));
369 if (prc == MBID_NO) {
370 saymsg(MB_ENTER,
371 HWND_DESKTOP,
372 GetPString(IDS_LANERROR2TITLETEXT),
373 GetPString(IDS_LANERROR2TEXT));
[847]374 NoBrokenNotify = 255;
[1505]375 PrfWriteProfileData(fmprof, FM3Str, "NoBrokenNotify",
[551]376 &NoBrokenNotify, sizeof(ULONG));
377 }
378 }
379 else {
380 NoBrokenNotify--;
[1505]381 PrfWriteProfileData(fmprof, FM3Str, "NoBrokenNotify",
[551]382 &NoBrokenNotify, sizeof(ULONG));
383 }
[2]384 }
[515]385 if (*pffb->achName &&
[551]386 (includefiles || (pffb->attrFile & FILE_DIRECTORY)) &&
[515]387 // Skip . and ..
[551]388 (pffb->achName[0] != '.' ||
[515]389 (pffb->achName[1] &&
[551]390 (pffb->achName[1] != '.' || pffb->achName[2])))) {
391 DosFindClose(hDir);
392 isadir = TRUE;
393 goto Interruptus;
[2]394 }
[761]395 nm = 1;
[2]396 DosError(FERR_DISABLEHARDERR);
[1482]397 }
398 while (++total < ddepth && !(rc = (DosFindNext(hDir,
399 &ffb,
400 sizeof(FILEFINDBUF3),
401 &nm))));
402 DosFindClose(hDir);
[1471]403 // If drive B:
[730]404 if (toupper(*pciParent->pszFileName) > 'B' &&
[751]405 (*(pciParent->pszFileName + 1)) == ':' &&
[730]406 (*(pciParent->pszFileName + 2)) == '\\' && !(*(pciParent->pszFileName + 3))) {
[2]407
408 CHAR s[132];
409 sprintf(s,
[551]410 GetPString(IDS_NOSUBDIRSTEXT),
[730]411 total, toupper(*pciParent->pszFileName));
[551]412 if (rc && rc != ERROR_NO_MORE_FILES)
413 sprintf(&s[strlen(s)], GetPString(IDS_SEARCHERRORTEXT), rc, str);
[847]414 else if (ddepth < 16)
[551]415 brokenlan = TRUE;
[2]416 Notify(s);
417 }
418 goto None;
419 }
420
[551]421 if (!rc) {
[2]422 DosFindClose(hDir);
[551]423 if (nm) {
[1353]424 PBYTE fb = (PBYTE)&ffb[0];
[551]425 for (len = 0; len < nm; len++) {
[847]426 pffb = (PFILEFINDBUF3) fb;
[551]427 if (!includefiles && !(pffb->attrFile & FILE_DIRECTORY)) {
428 if (!isbroken) {
429 isbroken = TRUE;
430 if (!NoBrokenNotify) {
431 prc = saymsg(MB_YESNO | MB_ICONEXCLAMATION,
432 HWND_DESKTOP,
433 GetPString(IDS_FSDERRORTITLETEXT),
434 GetPString(IDS_FSDERRORTEXT),
[1471]435 isremote ? GetPString(IDS_REMOTETEXT) :
436 GetPString(IDS_LOCALTEXT),
437 *str);
[551]438 if (prc == MBID_NO) {
439 saymsg(MB_ENTER,
440 HWND_DESKTOP,
441 GetPString(IDS_FSDERROR2TITLETEXT),
442 GetPString(IDS_FSDERROR2TEXT));
[847]443 NoBrokenNotify = 255;
[1505]444 PrfWriteProfileData(fmprof, FM3Str, "NoBrokenNotify",
[551]445 &NoBrokenNotify, sizeof(ULONG));
446 }
447 }
448 else {
449 NoBrokenNotify--;
[1505]450 PrfWriteProfileData(fmprof, FM3Str, "NoBrokenNotify",
[551]451 &NoBrokenNotify, sizeof(ULONG));
452 }
453 }
454 }
455 if (*pffb->achName &&
456 (includefiles || (pffb->attrFile & FILE_DIRECTORY)) &&
[515]457 // Skip . and ..
[551]458 (pffb->achName[0] != '.' || (pffb->achName[1]
459 && (pffb->achName[1] != '.'
460 || pffb->achName[2])))) {
461 isadir = TRUE;
462 break;
463 }
464 fb += pffb->oNextEntryOffset;
[1353]465 } // for
[2]466
[551]467 Interruptus:
[2]468
[551]469 if (isadir) {
[2]470
[1471]471 PCNRITEM pci;
[2]472
[1471]473 if (WinIsWindow((HAB)0, hwndCnr)) {
474 pci = WinSendMsg(hwndCnr,
475 CM_ALLOCRECORD,
476 MPFROMLONG(EXTRA_RECORD_BYTES), MPFROMLONG(1));
477 if (!pci) {
478 Win_Error(hwndCnr, HWND_DESKTOP, __FILE__, __LINE__,
479 GetPString(IDS_RECORDALLOCFAILEDTEXT));
480 }
481 else {
482 RECORDINSERT ri;
483 pci->pszFileName = NullStr;
484 pci->pszDisplayName = pci->pszFileName;
485 pci->rc.pszIcon = pci->pszDisplayName;
486 memset(&ri, 0, sizeof(RECORDINSERT));
487 ri.cb = sizeof(RECORDINSERT);
488 ri.pRecordOrder = (PRECORDCORE) CMA_END;
489 ri.pRecordParent = (PRECORDCORE) pciParent;
490 ri.zOrder = (ULONG) CMA_TOP;
491 ri.cRecordsInsert = 1;
492 ri.fInvalidateRecord = TRUE;
493 //DbgMsg(pszSrcFile, __LINE__, "Stubby %p CM_INSERTRECORD \"%s\" %.255s", hwndCnr, pci->pszFileName, pffb->achName); // 18 Dec 08 SHL fixme debug
494 if (!WinSendMsg(hwndCnr,
495 CM_INSERTRECORD, MPFROMP(pci), MPFROMP(&ri))) {
496 DosSleep(50); //05 Aug 07 GKY 100
497 WinSetFocus(HWND_DESKTOP, hwndCnr);
498 if (WinIsWindow((HAB)0, hwndCnr)) {
499 //DbgMsg(pszSrcFile, __LINE__, "Stubby %p CM_INSERTRECORD %s", hwndCnr, pci->pszFileName); // 18 Dec 08 SHL fixme debug
500 if (!WinSendMsg(hwndCnr,
501 CM_INSERTRECORD, MPFROMP(pci), MPFROMP(&ri))) {
502 Win_Error(hwndCnr, HWND_DESKTOP, __FILE__, __LINE__,
503 GetPString(IDS_RECORDINSERTFAILEDTEXT));
504 FreeCnrItem(hwndCnr, pci);
505 }
506 else
507 ok = TRUE;
508 }
509 }
510 else
511 ok = TRUE;
512 }
513 }
[2]514 }
[551]515 else if (toupper(*str) > 'B' && str[1] == ':' && str[2] == '\\' &&
516 !str[3]) {
[2]517
[551]518 CHAR s[162];
[2]519
[551]520 sprintf(s,
521 GetPString(IDS_NOSUBDIRS2TEXT),
522 nm,
[730]523 toupper(*pciParent->pszFileName),
[551]524 (isremote) ? GetPString(IDS_NOSUBDIRS3TEXT) : NullStr);
525 Notify(s);
[2]526 }
527 }
528 }
[551]529 else if (toupper(*str) > 'B' && rc != ERROR_NO_MORE_FILES) {
[2]530 CHAR s[CCHMAXPATH + 80];
[551]531 sprintf(s, GetPString(IDS_SEARCHERRORTEXT), rc, str);
[2]532 Notify(s);
533 }
534
535None:
536
537 DosError(FERR_DISABLEHARDERR);
[1471]538 return ok;
[2]539}
[793]540
[1353]541#pragma alloc_text(FLESH,Flesh,FleshEnv,UnFlesh,Stubby)
Note: See TracBrowser for help on using the repository browser.