Changeset 3778


Ignore:
Timestamp:
Dec 28, 2019, 11:40:48 PM (5 years ago)
Author:
Andreas Schnellbacher
Message:
  • Made NepmdGetModeList/_getModeList much faster. Disabled code that should only be processed at determining a mode (_getModeInfo).
  • Now the first select event for each file is processed much faster. Previously, there was a short delay after loading multiple files and for the first select event for each file by scrolling via F11 or F12 key through the windows. The E command that calls NepmdQueryModeList is 'SetExpand'.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/gui/common/mode.c

    r2592 r3778  
    644644                  }
    645645
    646                // new mode found, read settings
    647                rc = _getModeSettings( pszDirName, pmi, ulBuflen);
    648                if (rc != NO_ERROR)
     646               if (ulReturnType == SCANMODE_MODEINFO)
    649647                  {
    650                   //DPRINTF(( "_scanModes: - error from _getModeSettings: %u\n", rc));
    651                   rc = NO_ERROR;
    652                   break;
     648                  // new mode found, read settings
     649                  rc = _getModeSettings( pszDirName, pmi, ulBuflen);
     650                  if (rc != NO_ERROR)
     651                     {
     652                     //DPRINTF(( "_scanModes: - error from _getModeSettings: %u\n", rc));
     653                     rc = NO_ERROR;
     654                     break;
     655                     }
    653656                  }
    654657
     
    657660               strcat( szModeList, pszDirName);
    658661
    659                // check extension and name
    660                if ((!pszExtMode) &&
    661                    (pszExtension) &&
    662                    (*pszExtension) &&
    663                    (pmi->pszDefExtensions) &&
    664                    (*pmi->pszDefExtensions) &&
    665                    ((_globMatch( pmi->pszDefExtensions, pszExtension) ||
    666                     (strwrd( pmi->pszDefExtensions, pszExtension)))))
    667                   pszExtMode = strdup( pszDirName);
    668 
    669                if ((!pszNameMode) &&
    670                    (pszBasename) &&
    671                    (*pszBasename) &&
    672                    (pmi->pszDefNames) &&
    673                    (*pmi->pszDefNames) &&
    674                    ((_globMatch( pmi->pszDefNames, pszBasename) ||
    675                     (strwrd( pmi->pszDefNames, pszBasename)))))
    676                   pszNameMode = strdup( pszDirName);
     662               if (ulReturnType == SCANMODE_MODEINFO)
     663                  {
     664                  // check extension and name
     665                  if ((!pszExtMode) &&
     666                      (pszExtension) &&
     667                      (*pszExtension) &&
     668                      (pmi->pszDefExtensions) &&
     669                      (*pmi->pszDefExtensions) &&
     670                      ((_globMatch( pmi->pszDefExtensions, pszExtension) ||
     671                       (strwrd( pmi->pszDefExtensions, pszExtension)))))
     672                     pszExtMode = strdup( pszDirName);
     673
     674                  if ((!pszNameMode) &&
     675                      (pszBasename) &&
     676                      (*pszBasename) &&
     677                      (pmi->pszDefNames) &&
     678                      (*pmi->pszDefNames) &&
     679                      ((_globMatch( pmi->pszDefNames, pszBasename) ||
     680                       (strwrd( pmi->pszDefNames, pszBasename)))))
     681                     pszNameMode = strdup( pszDirName);
     682                  }
    677683
    678684               } while (FALSE);
    679685
    680                // extension mode found? then break here
    681                if (pszExtMode)
     686               if (ulReturnType == SCANMODE_MODEINFO)
    682687                  {
    683                   //DPRINTF(( "_scanModes: - ExtMode found"));
    684                   break;
     688                  // extension mode found? then break here
     689                  if (pszExtMode)
     690                     {
     691                     //DPRINTF(( "_scanModes: - ExtMode found"));
     692                     break;
     693                     }
    685694                  }
    686695
Note: See TracChangeset for help on using the changeset viewer.