Changeset 4454


Ignore:
Timestamp:
Apr 2, 2021, 10:26:48 AM (4 years ago)
Author:
Andreas Schnellbacher
Message:
  • DeleteConfigTree: A trailing backslash indicates now that only subpaths should be deleted.
File:
1 edited

Legend:

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

    r4448 r4454  
    13931393; ---------------------------------------------------------------------------
    13941394defproc DeleteConfigTree( KeyPath)
    1395    -- Strip trailing '\'
     1395   -- A trailing backslash may be specified to delete only subkeys
     1396   fDeleteSubOnly = 0
    13961397   if rightstr( KeyPath, 1) = '\' then
     1398      fDeleteSubOnly = 1
     1399      -- Strip trailing '\'
    13971400      KeyPath = leftstr( KeyPath, length( KeyPath) - 1)
    13981401   endif
     
    14001403
    14011404   --dprintf( 'KeyPath = 'KeyPath)
    1402    call DeleteNextConfigKey( KeyPath)
     1405   call DeleteNextConfigKey( KeyPath, '', fDeleteSubOnly)
    14031406
    14041407   return
     
    14281431   endif
    14291432
    1430    -- Delete key, don't query default values
    1431    -- This doesn't find empty values nor empty zero-terminated values.
    1432    Val = queryprofile( nepmd_hini, 'RegKeys', KeyPath)
    1433    if Val <> '' then
    1434       numcfgkeys = numcfgkeys + 1
    1435       --dprintf( '   Key found: 'KeyPath' = 'strip( leftstr( translate( Val, '.', \1), 80)))
    1436    endif
    1437 
    1438    -- This finds also empty values or empty zero-terminated values.
    1439    call DeleteConfigKey( KeyPath)
     1433   fDeleteSubOnly = (arg( 3) = 1)
     1434   if not fDeleteSubOnly then
     1435      -- Delete key, don't query default values
     1436      -- This doesn't find empty values nor empty zero-terminated values.
     1437      Val = queryprofile( nepmd_hini, 'RegKeys', KeyPath)
     1438      if Val <> '' then
     1439         numcfgkeys = numcfgkeys + 1
     1440         --dprintf( '   Key found: 'KeyPath' = 'strip( leftstr( translate( Val, '.', \1), 80)))
     1441      endif
     1442
     1443      -- This finds also empty values or empty zero-terminated values.
     1444      call DeleteConfigKey( KeyPath)
     1445   endif
     1446   fDeleteSubOnly = 0
    14401447
    14411448   -- Delete subkeys and subcontainers
     
    14471454
    14481455      -- Process NextKey (recursive call)
    1449       call DeleteNextConfigKey( KeyPath'\'NextKey, KeyPath)
     1456      call DeleteNextConfigKey( KeyPath'\'NextKey, KeyPath, fDeleteSubOnly)
    14501457      -- Don't stop here on error to delete the rest
    14511458      --if rc then
Note: See TracChangeset for help on using the changeset viewer.