Changeset 4041


Ignore:
Timestamp:
Jun 7, 2020, 11:20:21 PM (5 years ago)
Author:
Andreas Schnellbacher
Message:
  • FindFileInList: Allow for limited recursive search. After the trailing '!' char, the recurse depth may be specified (or V or F).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/file.e

    r4040 r4041  
    23602360; o  To limit the recursion, a number may be appended after the '!'.
    23612361;    '!O' means no search in subdirectories. A good value is '!3'.
     2362; o  '!F' means fully recursive, the same as '!'. '!V' means variable. The
     2363;    recurse depth depends on the amount of subpaths to avoid searching
     2364;    a whole volume.
    23622365; o  It's normally not useful to search in subdirs of a search path. To
    23632366;    avoid this, use multiple calls of FindFileInList, without and with
     
    23762379;    FullEName  = FindFileInList( 'small.e', .filename'\..', '.!3;..!3;..\..!3')
    23772380;    FullEName  = FindFileInList( 'small.e', .filename'\..', '.!;..!3')
     2381;    FullName   = FindFileInList( 'stdlib.h', 'G:\dev\toolkt45\H;G:\dev\toolkt45\IDL;')  (not found)
     2382;    FullName   = FindFileInList( 'stdlib.h', 'G:\dev\toolkt45\H!;G:\dev\toolkt45\IDL;')
    23782383; Returns '' if File not found in DirList, otherwise fully qualified name.
    23792384defproc FindFileInList( File, DirList)
     
    23992404      do while restenv <> ''
    24002405         parse value restenv with ThisDir';'restenv
    2401          ThisDir = NepmdQueryFullname( ThisDir)
    2402          if ThisDir = '' then
    2403             iterate
    2404          endif
    2405 
    24062406         SearchDirList = ''
    24072407
     
    24332433
    24342434            -- Check for optional trailing numbers and a trailing exclamation mark
    2435             TestDir = strip( translate( ThisSearchDir, copies( ' ', 10), '0123456789'))
     2435            TestDir = strip( translate( ThisSearchDir, copies( ' ', 14), '0123456789VFvf'))
    24362436            if rightstr( TestDir, 1) = '!' then
    24372437               pExMark = lastpos( '!', ThisSearchDir)
     
    24422442                  -- Number of recursive search levels may be appended after the '!'
    24432443                  RecurseLevel = substr( ThisSearchDir, pExMark + 1)
     2444                  if upcase( RecurseLevel) = 'F' then
     2445                     RecurseLevel = -1
     2446                  elseif upcase( RecurseLevel) = 'V' then
     2447                     -- Number of start sublevels = number of backslash chars.
     2448                     -- This allows for specifying recursive search without searching
     2449                     -- a whole volume when starting near the root.
     2450                     NumSubLevels = count( '\', ThisSearchDir)
     2451                     if NumSubLevels >= 3 then
     2452                        RecurseLevel = -1
     2453                     elseif NumSubLevels >= 2 then
     2454                        RecurseLevel = 3
     2455                     elseif NumSubLevels >= 1 then
     2456                        RecurseLevel = 2
     2457                     endif
     2458                  endif
    24442459                  ThisSearchDir = leftstr( ThisSearchDir, pExMark - 1)
    24452460               endif
     
    24472462
    24482463            ThisSearchDir = NepmdQueryFullname( ThisSearchDir)
     2464            if not NepmdDirExists( ThisSearchDir) then
     2465               iterate
     2466            endif
    24492467
    24502468            if RecurseLevel <> 0 then
Note: See TracChangeset for help on using the changeset viewer.