VirtualBox

儲存庫 vbox 的更動 17319


忽略:
時間撮記:
2009-3-4 上午03:18:37 (16 年 以前)
作者:
vboxsync
訊息:

IPRT: Added RTGETOPT_REQ_IPV4ADDR to RTGetOpt.

位置:
trunk
檔案:
修改 3 筆資料

圖例:

未更動
新增
刪除
  • trunk/include/iprt/getopt.h

    r17141 r17319  
    7070/** The value must be a valid unsigned 64-bit integer or an error will be returned. */
    7171#define RTGETOPT_REQ_UINT64                     9
     72/** The value must be a valid IPv4 address.
     73 * (Not a name, but 4 values in the 0..255 range with dots separating them). */
     74#define RTGETOPT_REQ_IPV4ADDR                   10
    7275/** The mask of the valid required types. */
    7376#define RTGETOPT_REQ_MASK                       15
     
    117120     * This can be NULL for some errors. */
    118121    PCRTGETOPTDEF   pDef;
    119     /** A RTGETOPT_ARG_FORMAT_STRING option argument. */
     122    /** A RTGETOPT_REQ_STRING option argument. */
    120123    const char     *psz;
    121124
     
    124127#endif
    125128
    126     /** A RTGETOPT_ARG_FORMAT_INT8 option argument. */
     129    /** A RTGETOPT_REQ_INT8 option argument. */
    127130    int8_t          i8;
    128     /** A RTGETOPT_ARG_FORMAT_UINT8 option argument . */
     131    /** A RTGETOPT_REQ_UINT8 option argument . */
    129132    uint8_t         u8;
    130     /** A RTGETOPT_ARG_FORMAT_INT16 option argument. */
     133    /** A RTGETOPT_REQ_INT16 option argument. */
    131134    int16_t         i16;
    132     /** A RTGETOPT_ARG_FORMAT_UINT16 option argument . */
     135    /** A RTGETOPT_REQ_UINT16 option argument . */
    133136    uint16_t        u16;
    134     /** A RTGETOPT_ARG_FORMAT_INT16 option argument. */
     137    /** A RTGETOPT_REQ_INT16 option argument. */
    135138    int32_t         i32;
    136     /** A RTGETOPT_ARG_FORMAT_UINT32 option argument . */
     139    /** A RTGETOPT_REQ_UINT32 option argument . */
    137140    uint32_t        u32;
    138     /** A RTGETOPT_ARG_FORMAT_INT64 option argument. */
     141    /** A RTGETOPT_REQ_INT64 option argument. */
    139142    int64_t         i64;
    140     /** A RTGETOPT_ARG_FORMAT_UINT64 option argument. */
     143    /** A RTGETOPT_REQ_UINT64 option argument. */
    141144    uint64_t        u64;
     145#ifdef ___iprt_net_h
     146    /** A RTGETOPT_REQ_IPV4ADDR option argument. */
     147    RTNETADDRIPV4   IPv4Addr;
     148#endif
    142149    /** A signed integer value. */
    143150    int64_t         i;
  • trunk/src/VBox/Runtime/common/misc/getopt.cpp

    r17143 r17319  
    3232*   Header Files                                                               *
    3333*******************************************************************************/
     34#include <iprt/net.h>
    3435#include <iprt/getopt.h>
    3536#include <iprt/err.h>
     
    6465    /** @todo Add an flag for sorting the arguments so that all the options comes
    6566     *        first. */
     67    return VINF_SUCCESS;
     68}
     69
     70
     71/**
     72 * Converts an stringified IPv4 address into the RTNETADDRIPV4 representation.
     73 *
     74 * This should be move to some generic part of the runtime.
     75 *
     76 * @returns VINF_SUCCESS on success, VERR_GETOPT_INVALID_ARGUMENT_FORMAT on
     77 *          failure.
     78 *
     79 * @param   pszValue        The value to convert.
     80 * @param   pAddr           Where to store the result.
     81 */
     82static int rtgetoptConvertIPv4Addr(const char *pszValue, PRTNETADDRIPV4 pAddr)
     83{
     84    char *pszNext;
     85    int rc = RTStrToUInt8Ex(RTStrStripL(pszValue), &pszNext, 10, &pAddr->au8[0]);
     86    if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_CHARS)
     87        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     88    if (*pszNext++ != '.')
     89        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     90
     91    rc = RTStrToUInt8Ex(pszNext, &pszNext, 10, &pAddr->au8[1]);
     92    if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_CHARS)
     93        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     94    if (*pszNext++ != '.')
     95        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     96
     97    rc = RTStrToUInt8Ex(pszNext, &pszNext, 10, &pAddr->au8[2]);
     98    if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_CHARS)
     99        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     100    if (*pszNext++ != '.')
     101        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     102
     103    rc = RTStrToUInt8Ex(pszNext, &pszNext, 10, &pAddr->au8[3]);
     104    if (rc != VINF_SUCCESS && rc != VWRN_TRAILING_SPACES)
     105        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     106    pszNext = RTStrStripL(pszNext);
     107    if (*pszNext)
     108        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     109
    66110    return VINF_SUCCESS;
    67111}
     
    315359                MY_BASE_INT_CASE(RTGETOPT_REQ_UINT32 | RTGETOPT_FLAG_OCT, uint32_t, u,   RTStrToUInt32Full, 8)
    316360                MY_BASE_INT_CASE(RTGETOPT_REQ_UINT64 | RTGETOPT_FLAG_OCT, uint64_t, u,   RTStrToUInt64Full, 8)
     361
    317362#undef MY_INT_CASE
    318363#undef MY_BASE_INT_CASE
     364
     365                case RTGETOPT_REQ_IPV4ADDR:
     366                {
     367                    RTNETADDRIPV4 Addr;
     368                    if (rtgetoptConvertIPv4Addr(pszValue, &Addr) != VINF_SUCCESS)
     369                        return VERR_GETOPT_INVALID_ARGUMENT_FORMAT;
     370                    pValueUnion->IPv4Addr = Addr;
     371                    break;
     372                }
    319373
    320374                default:
  • trunk/src/VBox/Runtime/testcase/tstGetOpt.cpp

    r17141 r17319  
    3030
    3131
     32/*******************************************************************************
     33*   Header Files                                                               *
     34*******************************************************************************/
     35#include <iprt/net.h>
    3236#include <iprt/getopt.h>
    3337#include <iprt/stream.h>
     
    8387        { "nodash",             387, RTGETOPT_REQ_NOTHING },
    8488        { "nodashval",          388, RTGETOPT_REQ_STRING },
     89        { "--gateway",          'g', RTGETOPT_REQ_IPV4ADDR },
    8590    };
    8691
     
    118123
    119124        "-vqi999",
     125
     126        "-g192.168.1.1",
    120127        NULL
    121128    };
     
    191198    CHECK(Val.i32 == 999);
    192199
     200    /* IPv4 */
     201    CHECK_GETOPT(RTGetOpt(&GetState, &Val), 'g', 1);
     202    CHECK(Val.IPv4Addr.u == RT_H2N_U32_C(RT_BSWAP_U32_C(RT_MAKE_U32_FROM_U8(192,168,1,1))));
     203
    193204    /* the end */
    194205    CHECK_GETOPT(RTGetOpt(&GetState, &Val), 0, 0);
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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