VirtualBox

source: vbox/trunk/include/iprt/getopt.h@ 8147

Last change on this file since 8147 was 8147, checked in by vboxsync, 16 years ago

Extended RTGetOpt:

o Support 8-, 16- and 64-bit types too.
o Added flags to force hexadecimal, decimal or octal value baseing.
o When no hex/dec/oct flag is present, default to decimal but recognize the hex prefix (0x).
o Support the usual option value separators ([:= ]) and not just space.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 8.8 KB
Line 
1/** @file
2 * innotek Portable Runtime - Command Line Parsing.
3 */
4
5/*
6 * Copyright (C) 2007 innotek GmbH
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_getopt_h
27#define ___iprt_getopt_h
28
29
30#include <iprt/cdefs.h>
31#include <iprt/types.h>
32
33__BEGIN_DECLS
34
35/** @defgroup grp_rt_getopt RTGetOpt - Command Line Parsing
36 * @ingroup grp_rt
37 * @{
38 */
39
40/** @name RTOPTIONDEF::fFlags
41 *
42 * @remarks When neither of the RTGETOPT_FLAG_HEX, RTGETOPT_FLAG_OCT and RTGETOPT_FLAG_DEC
43 * flags are specified with a integer value format, RTGetOpt will default to
44 * decimal but recognize the 0x prefix when present. RTGetOpt will not look for
45 * for the octal prefix (0).
46 * @{ */
47/** Requires no extra argument.
48 * (Can be assumed to be 0 for ever.) */
49#define RTGETOPT_REQ_NOTHING 0
50/** A value is required or error will be returned. */
51#define RTGETOPT_REQ_STRING 1
52/** The value must be a valid signed 8-bit integer or an error will be returned. */
53#define RTGETOPT_REQ_INT8 2
54/** The value must be a valid unsigned 8-bit integer or an error will be returned. */
55#define RTGETOPT_REQ_UINT8 3
56/** The value must be a valid signed 16-bit integer or an error will be returned. */
57#define RTGETOPT_REQ_INT16 4
58/** The value must be a valid unsigned 16-bit integer or an error will be returned. */
59#define RTGETOPT_REQ_UINT16 5
60/** The value must be a valid signed 32-bit integer or an error will be returned. */
61#define RTGETOPT_REQ_INT32 6
62/** The value must be a valid unsigned 32-bit integer or an error will be returned. */
63#define RTGETOPT_REQ_UINT32 7
64/** The value must be a valid signed 64-bit integer or an error will be returned. */
65#define RTGETOPT_REQ_INT64 8
66/** The value must be a valid unsigned 64-bit integer or an error will be returned. */
67#define RTGETOPT_REQ_UINT64 9
68/** The mask of the valid required types. */
69#define RTGETOPT_REQ_MASK 15
70/** Treat the value as hexadecimal - only applicable with the RTGETOPT_REQ_*INT*. */
71#define RTGETOPT_FLAG_HEX RT_BIT(16)
72/** Treat the value as octal - only applicable with the RTGETOPT_REQ_*INT*. */
73#define RTGETOPT_FLAG_OCT RT_BIT(17)
74/** Treat the value as decimal - only applicable with the RTGETOPT_REQ_*INT*. */
75#define RTGETOPT_FLAG_DEC RT_BIT(18)
76/** Mask of valid bits - for validation. */
77#define RTGETOPT_VALID_MASK ( RTGETOPT_REQ_MASK | RTGETOPT_FLAG_HEX | RTGETOPT_FLAG_OCT | RTGETOPT_FLAG_DEC )
78/** @} */
79
80/**
81 * An option definition.
82 */
83typedef struct RTOPTIONDEF
84{
85 /** The long option.
86 * This is optional */
87 const char *pszLong;
88 /** The short option character.
89 * This doesn't have to be a character, it may also be a \#define or enum value if
90 * there isn't any short version of this option. */
91 int iShort;
92 /** The flags (RTGETOPT_*). */
93 unsigned fFlags;
94} RTOPTIONDEF;
95/** Pointer to an option definition. */
96typedef RTOPTIONDEF *PRTOPTIONDEF;
97/** Pointer to an const option definition. */
98typedef const RTOPTIONDEF *PCRTOPTIONDEF;
99
100/**
101 * Option argument union.
102 *
103 * What ends up here depends on argument format in the option definition.
104 *
105 * @remarks Integers will bet put in the \a i and \a u members and sign/zero extended
106 * according to the signedness indicated by the \a fFlags. So, you can choose
107 * use which ever of the integer members for accessing the value regardless
108 * of restrictions indicated in the \a fFlags.
109 */
110typedef union RTOPTIONUNION
111{
112 /** Pointer to the definition on failure or when the option doesn't take an argument.
113 * This can be NULL for some errors. */
114 PCRTOPTIONDEF pDef;
115 /** A RTGETOPT_ARG_FORMAT_STRING option argument. */
116 const char *psz;
117
118#if !defined(RT_ARCH_AMD64) && !defined(RT_ARCH_X86)
119# error "PORTME: big-endian systems will need to fix the layout here to get the next two fields working right"
120#endif
121
122 /** A RTGETOPT_ARG_FORMAT_INT8 option argument. */
123 int8_t i8;
124 /** A RTGETOPT_ARG_FORMAT_UINT8 option argument . */
125 uint8_t u8;
126 /** A RTGETOPT_ARG_FORMAT_INT16 option argument. */
127 int16_t i16;
128 /** A RTGETOPT_ARG_FORMAT_UINT16 option argument . */
129 uint16_t u16;
130 /** A RTGETOPT_ARG_FORMAT_INT16 option argument. */
131 int32_t i32;
132 /** A RTGETOPT_ARG_FORMAT_UINT32 option argument . */
133 uint32_t u32;
134 /** A RTGETOPT_ARG_FORMAT_INT64 option argument. */
135 int64_t i64;
136 /** A RTGETOPT_ARG_FORMAT_UINT64 option argument. */
137 uint64_t u64;
138 /** A signed integer value. */
139 int64_t i;
140 /** An unsigned integer value. */
141 uint64_t u;
142} RTOPTIONUNION;
143/** Pointer to an option argument union. */
144typedef RTOPTIONUNION *PRTOPTIONUNION;
145/** Pointer to a const option argument union. */
146typedef RTOPTIONUNION const *PCRTOPTIONUNION;
147
148
149/**
150 * Command line argument parser, handling both long and short options and checking
151 * argument formats, if desired.
152 *
153 * This is to be called in a loop until it returns 0 (meaning that all options
154 * were parsed) or a negative value (meaning that an error occured). The passed in
155 * argument vector is sorted into options and non-option arguments, such that when
156 * returning 0 the *piThis is the index of the first non-option argument.
157 *
158 * For example, for a program which takes the following options:
159 *
160 * --optwithstring (or -s) and a string argument;
161 * --optwithint (or -i) and a 32-bit signed integer argument;
162 * --verbose (or -v) with no arguments,
163 *
164 * code would look something like this:
165 *
166 * @code
167 * int main(int argc, char *argv[])
168 * {
169 * static const RTOPTIONDEF g_aOptions[] =
170 * {
171 * { "--optwithstring", 's', RTGETOPT_REQ_STRING },
172 * { "--optwithint", 'i', RTGETOPT_REQ_INT32 },
173 * { "--verbose", 'v', 0 },
174 * };
175 *
176 * int ch;
177 * int i = 1;
178 * RTOPTIONUNION ValueUnion;
179 * while ((ch = RTGetOpt(argc, argv, g_aOptions, RT_ELEMENTS(g_aOptions), &i, &ValueUnion)))
180 * {
181 * if (ch < 0) { .... error }
182 *
183 * // for options that require an argument, ValueUnion has received the value
184 * switch (ch)
185 * {
186 * case 's': // --optwithstring or -s
187 * // string argument, copy ValueUnion.psz
188 * break;
189 *
190 * case 'i': // --optwithint or -i
191 * // integer argument, copy ValueUnion.i32
192 * break;
193 *
194 * case 'v': // --verbose or -v
195 * g_fOptVerbose = true;
196 * break;
197 * }
198 * }
199 *
200 * while (i < argc)
201 * {
202 * //do stuff to argv[i].
203 * }
204 *
205 * return 0;
206 * }
207 * @endcode
208 *
209 * @param argc argument count, to be copied from what comes in with main().
210 * @param argv argument array, to be copied from what comes in with main().
211 * This may end up being modified by the option/argument sorting.
212 * @param paOptions array of RTOPTIONDEF structures, which must specify what options are understood by the program.
213 * @param cOptions number of array items passed in with paOptions.
214 * @param piThis address of stack counter used internally by RTGetOpt; value must be initialized to 1 before the first call!
215 * @param pValueUnion union with value; in the event of an error, psz member points to erroneous parameter; otherwise, for options
216 * that require an argument, this contains the value of that argument, depending on the type that is required.
217 */
218RTDECL(int) RTGetOpt(int argc, char **argv, PCRTOPTIONDEF paOptions, size_t cOptions, int *piThis, PRTOPTIONUNION pValueUnion);
219
220/** @} */
221
222__END_DECLS
223
224#endif
225
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use