Changeset 71124 in vbox for trunk/src/VBox/Additions/common/VBoxService
- Timestamp:
- Feb 26, 2018 1:08:19 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121003
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceToolBox.cpp
r71123 r71124 889 889 uint32_t fOutputFlags = VBOXSERVICETOOLBOXOUTPUTFLAG_NONE; 890 890 891 /* Init file list. */892 RTLISTANCHOR fileList;893 RTListInit(&fileList);894 895 891 while ( (ch = RTGetOpt(&GetState, &ValueUnion)) 896 892 && RT_SUCCESS(rc)) … … 929 925 930 926 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--; 941 929 break; 942 930 … … 944 932 return RTGetOptPrintError(ch, &ValueUnion); 945 933 } 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; 946 939 } 947 940 948 941 if (RT_SUCCESS(rc)) 949 942 { 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 else962 RTMsgError("Getting current directory failed, rc=%Rrc\n", rc);963 }964 965 943 /* Print magic/version. */ 966 944 if (fOutputFlags & VBOXSERVICETOOLBOXOUTPUTFLAG_PARSEABLE) … … 972 950 } 973 951 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)) 978 976 { 979 977 RTFSOBJINFO objInfo; 980 int rc2 = RTPathQueryInfoEx(p NodeIt->pszName, &objInfo,978 int rc2 = RTPathQueryInfoEx(pszEntry, &objInfo, 981 979 RTFSOBJATTRADD_UNIX, RTPATH_F_ON_LINK /** @todo Follow link? */); 982 980 if (RT_FAILURE(rc2)) 983 981 { 984 982 if (!(fOutputFlags & VBOXSERVICETOOLBOXOUTPUTFLAG_PARSEABLE)) 985 RTMsgError("Cannot access '%s': No such file or directory\n", p NodeIt->pszName);983 RTMsgError("Cannot access '%s': No such file or directory\n", pszEntry); 986 984 rc = VERR_FILE_NOT_FOUND; 987 985 /* Do not break here -- process every element in the list … … 990 988 else 991 989 { 992 rc2 = vgsvcToolboxPrintFsInfo(pNodeIt->pszName, 993 strlen(pNodeIt->pszName) /* cbName */, 994 fOutputFlags, 995 &objInfo); 990 rc2 = vgsvcToolboxPrintFsInfo(pszEntry, strlen(pszEntry) /* cbName */, 991 fOutputFlags, &objInfo); 996 992 if (RT_FAILURE(rc2)) 997 993 rc = rc2; … … 1000 996 else 1001 997 { 1002 int rc2 = vgsvcToolboxLsHandleDir(p NodeIt->pszName, fFlags, fOutputFlags);998 int rc2 = vgsvcToolboxLsHandleDir(pszEntry, fFlags, fOutputFlags); 1003 999 if (RT_FAILURE(rc2)) 1004 1000 rc = rc2; 1005 1001 } 1006 } 1002 1003 RTStrFree(pszEntry); 1004 } 1005 while ((ch = RTGetOpt(&GetState, &ValueUnion))); 1007 1006 1008 1007 if (fOutputFlags & VBOXSERVICETOOLBOXOUTPUTFLAG_PARSEABLE) /* Output termination. */ … … 1012 1011 RTMsgError("Failed with rc=%Rrc\n", rc); 1013 1012 1014 vgsvcToolboxPathBufDestroy(&fileList);1015 1013 return RT_SUCCESS(rc) ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE; 1016 1014 }
Note:
See TracChangeset
for help on using the changeset viewer.