VirtualBox

Ignore:
Timestamp:
Jun 26, 2017 9:17:22 AM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
116356
Message:

RTGetOptArgvFromString: Added a RTGETOPTARGV_CNV_MODIFY_INPUT flag for avoiding duplicating the input command line string.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/misc/getoptargv.cpp

    r66861 r67598  
    231231    AssertPtr(pcArgs);
    232232    AssertPtr(ppapszArgv);
    233     AssertReturn(   fFlags == RTGETOPTARGV_CNV_QUOTE_BOURNE_SH
    234                  || fFlags == RTGETOPTARGV_CNV_QUOTE_MS_CRT, VERR_INVALID_FLAGS);
     233    AssertReturn(   (fFlags & RTGETOPTARGV_CNV_QUOTE_MASK) == RTGETOPTARGV_CNV_QUOTE_BOURNE_SH
     234                 || (fFlags & RTGETOPTARGV_CNV_QUOTE_MASK) == RTGETOPTARGV_CNV_QUOTE_MS_CRT, VERR_INVALID_FLAGS);
     235    AssertReturn(~(fFlags & ~RTGETOPTARGV_CNV_VALID_MASK), VERR_INVALID_FLAGS);
     236
    235237    if (!pszSeparators)
    236238        pszSeparators = " \t\n\r";
     
    243245     * Parse the command line and chop off it into argv individual argv strings.
    244246     */
     247    const char *pszSrc    = pszCmdLine;
     248    char       *pszDup    = NULL;
     249    char       *pszDst;
     250    if (fFlags & RTGETOPTARGV_CNV_MODIFY_INPUT)
     251        pszDst = (char *)pszCmdLine;
     252    else
     253    {
     254        pszDst = pszDup = (char *)RTMemAlloc(strlen(pszSrc) + 1);
     255        if (!pszDup)
     256            return VERR_NO_STR_MEMORY;
     257    }
    245258    int         rc        = VINF_SUCCESS;
    246     const char *pszSrc    = pszCmdLine;
    247     char       *pszDup    = (char *)RTMemAlloc(strlen(pszSrc) + 1);
    248     char       *pszDst    = pszDup;
    249     if (!pszDup)
    250         return VERR_NO_STR_MEMORY;
    251259    char      **papszArgs = NULL;
    252260    unsigned    iArg      = 0;
     
    425433RTDECL(void) RTGetOptArgvFree(char **papszArgv)
    426434{
     435    RTGetOptArgvFreeEx(papszArgv, 0);
     436}
     437
     438
     439RTDECL(void) RTGetOptArgvFreeEx(char **papszArgv, uint32_t fFlags)
     440{
     441    Assert(~(fFlags & ~RTGETOPTARGV_CNV_VALID_MASK));
    427442    if (papszArgv)
    428443    {
     
    431446         * RTGetOptArgvFromString for the particulars.
    432447         */
    433         RTMemFree(papszArgv[0]);
     448        if (!(fFlags & RTGETOPTARGV_CNV_MODIFY_INPUT))
     449            RTMemFree(papszArgv[0]);
    434450        RTMemFree(papszArgv);
    435451    }
     
    502518RTDECL(int) RTGetOptArgvToString(char **ppszCmdLine, const char * const *papszArgv, uint32_t fFlags)
    503519{
    504     AssertReturn(fFlags <= RTGETOPTARGV_CNV_UNQUOTED, VERR_INVALID_PARAMETER);
     520    AssertReturn((fFlags & RTGETOPTARGV_CNV_QUOTE_MASK) <= RTGETOPTARGV_CNV_UNQUOTED, VERR_INVALID_FLAGS);
     521    AssertReturn(!(fFlags & (~RTGETOPTARGV_CNV_VALID_MASK | RTGETOPTARGV_CNV_MODIFY_INPUT)), VERR_INVALID_FLAGS);
    505522
    506523#define PUT_CH(ch) \
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