VirtualBox

Ignore:
Timestamp:
Feb 26, 2018 1:08:19 PM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
121003
Message:

VBoxService/Toolbox: Dropped building up an internal file list for "vbox_ls".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp

    r71123 r71124  
    889889    uint32_t fOutputFlags = VBOXSERVICETOOLBOXOUTPUTFLAG_NONE;
    890890
    891     /* Init file list. */
    892     RTLISTANCHOR fileList;
    893     RTListInit(&fileList);
    894 
    895891    while (   (ch = RTGetOpt(&GetState, &ValueUnion))
    896892           && RT_SUCCESS(rc))
     
    929925
    930926            case VINF_GETOPT_NOT_OPTION:
    931                 /* Add file(s) to buffer. This enables processing multiple files
    932                  * at once.
    933                  *
    934                  * Since the non-options (RTGETOPTINIT_FLAGS_OPTS_FIRST) come last when
    935                  * processing this loop it's safe to immediately exit on syntax errors
    936                  * or showing the help text (see above). */
    937                 rc = vgsvcToolboxPathBufAddPathEntry(&fileList, ValueUnion.psz);
    938                 /** @todo r=bird: Nit: creating a list here is not really
    939                  *        necessary since you've got one in argv that's
    940                  *        accessible via RTGetOpt. */
     927                Assert(GetState.iNext);
     928                GetState.iNext--;
    941929                break;
    942930
     
    944932                return RTGetOptPrintError(ch, &ValueUnion);
    945933        }
     934
     935        /* All flags / options processed? Bail out here.
     936         * Processing the file / directory list comes down below. */
     937        if (ch == VINF_GETOPT_NOT_OPTION)
     938            break;
    946939    }
    947940
    948941    if (RT_SUCCESS(rc))
    949942    {
    950         /* If not files given add current directory to list. */
    951         if (RTListIsEmpty(&fileList))
    952         {
    953             char szDirCur[RTPATH_MAX + 1];
    954             rc = RTPathGetCurrent(szDirCur, sizeof(szDirCur));
    955             if (RT_SUCCESS(rc))
    956             {
    957                 rc = vgsvcToolboxPathBufAddPathEntry(&fileList, szDirCur);
    958                 if (RT_FAILURE(rc))
    959                     RTMsgError("Adding current directory failed, rc=%Rrc\n", rc);
    960             }
    961             else
    962                 RTMsgError("Getting current directory failed, rc=%Rrc\n", rc);
    963         }
    964 
    965943        /* Print magic/version. */
    966944        if (fOutputFlags & VBOXSERVICETOOLBOXOUTPUTFLAG_PARSEABLE)
     
    972950        }
    973951
    974         PVBOXSERVICETOOLBOXPATHENTRY pNodeIt;
    975         RTListForEach(&fileList, pNodeIt, VBOXSERVICETOOLBOXPATHENTRY, Node)
    976         {
    977             if (RTFileExists(pNodeIt->pszName))
     952        ch = RTGetOpt(&GetState, &ValueUnion);
     953        do
     954        {
     955            char *pszEntry = NULL;
     956
     957            if (ch == 0) /* Use current directory if no element specified. */
     958            {
     959                char szDirCur[RTPATH_MAX + 1];
     960                rc = RTPathGetCurrent(szDirCur, sizeof(szDirCur));
     961                if (RT_FAILURE(rc))
     962                    RTMsgError("Getting current directory failed, rc=%Rrc\n", rc);
     963
     964                pszEntry = RTStrDup(szDirCur);
     965                if (!pszEntry)
     966                    RTMsgError("Allocating current directory failed\n");
     967            }
     968            else
     969            {
     970                pszEntry = RTStrDup(ValueUnion.psz);
     971                if (!pszEntry)
     972                    RTMsgError("Allocating directory '%s' failed\n", ValueUnion.psz);
     973            }
     974
     975            if (RTFileExists(pszEntry))
    978976            {
    979977                RTFSOBJINFO objInfo;
    980                 int rc2 = RTPathQueryInfoEx(pNodeIt->pszName, &objInfo,
     978                int rc2 = RTPathQueryInfoEx(pszEntry, &objInfo,
    981979                                            RTFSOBJATTRADD_UNIX, RTPATH_F_ON_LINK /** @todo Follow link? */);
    982980                if (RT_FAILURE(rc2))
    983981                {
    984982                    if (!(fOutputFlags & VBOXSERVICETOOLBOXOUTPUTFLAG_PARSEABLE))
    985                         RTMsgError("Cannot access '%s': No such file or directory\n", pNodeIt->pszName);
     983                        RTMsgError("Cannot access '%s': No such file or directory\n", pszEntry);
    986984                    rc = VERR_FILE_NOT_FOUND;
    987985                    /* Do not break here -- process every element in the list
     
    990988                else
    991989                {
    992                     rc2 = vgsvcToolboxPrintFsInfo(pNodeIt->pszName,
    993                                                   strlen(pNodeIt->pszName) /* cbName */,
    994                                                   fOutputFlags,
    995                                                   &objInfo);
     990                    rc2 = vgsvcToolboxPrintFsInfo(pszEntry, strlen(pszEntry) /* cbName */,
     991                                                  fOutputFlags, &objInfo);
    996992                    if (RT_FAILURE(rc2))
    997993                        rc = rc2;
     
    1000996            else
    1001997            {
    1002                 int rc2 = vgsvcToolboxLsHandleDir(pNodeIt->pszName, fFlags, fOutputFlags);
     998                int rc2 = vgsvcToolboxLsHandleDir(pszEntry, fFlags, fOutputFlags);
    1003999                if (RT_FAILURE(rc2))
    10041000                    rc = rc2;
    10051001            }
    1006         }
     1002
     1003            RTStrFree(pszEntry);
     1004        }
     1005        while ((ch = RTGetOpt(&GetState, &ValueUnion)));
    10071006
    10081007        if (fOutputFlags & VBOXSERVICETOOLBOXOUTPUTFLAG_PARSEABLE) /* Output termination. */
     
    10121011        RTMsgError("Failed with rc=%Rrc\n", rc);
    10131012
    1014     vgsvcToolboxPathBufDestroy(&fileList);
    10151013    return RT_SUCCESS(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE;
    10161014}
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette