/usr/include/ola/base/Flags.h is in libola-dev 0.9.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | /*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Flags.h
* Command line flag (option) handling.
* Copyright (C) 2013 Simon Newton
*/
/**
* @defgroup flags Command Line Flags
* @brief Command line flag processing.
*
* This is based on gflags (https://code.google.com/p/gflags/) but we reduce
* the feature set to make things simpler.
*
* Features:
* - bool, uint8, uint16, uint32, int8, int16, int32 & string types.
* - short options (e.g. -x).
* - inverted bools, e.g. --no-foo
*
* @note
* - Setting flags is not thread safe
* - Flags cannot be used at global construction time.
* - DEFINE_ and DECLARE_ must be outside of any namespaces.
*
* @examplepara
* @snippet flags.cpp Example
* When <tt>./flags</tt> is run, this produces:
* @code
* --foo is 0
* --bar is 1
* --name is simon
* --baz (-b) is 0
* @endcode
* Compare with <tt>./flags --foo --name bob -b 10 --nobar</tt>
* @code
* --foo is 1
* --bar is 0
* --name is bob
* --baz (-b) is 10
* @endcode
*
* @examplepara - Use flags from other files
* You can access flags from files other than the one they were DEFINE_*'d in
* by using DECLARE_*:
* @code
* DECLARE_bool(foo);
* DECLARE_bool(bar);
* // Can now use FLAGS_foo and FLAGS_bar
* @endcode
*/
/**
* @addtogroup flags
* @{
* @file Flags.h
* @brief Defines macros to ease creation of command line flags
*/
#ifndef INCLUDE_OLA_BASE_FLAGS_H_
#define INCLUDE_OLA_BASE_FLAGS_H_
#include <getopt.h>
#include <ola/base/FlagsPrivate.h>
#include <string>
namespace ola {
/**
* @brief Set the help string for the program.
* @param first_line the inital line that is displayed in the help section.
* This is displayed after argv[0].
* @param description a multiline description of the program
*/
void SetHelpString(const std::string &first_line,
const std::string &description);
/**
* @brief Print the usage text to stdout.
*/
void DisplayUsage();
/**
* @brief Print the usage text to stdout then exit.
*/
void DisplayUsageAndExit();
/**
* @brief Print the version text to stdout.
*/
void DisplayVersion();
/**
* @brief Parses the command line flags up to the first non-flag value. argv is
* re-arranged so that it only contains non-flag arguments.
*
* @param argc the argument count taken straight from your main()
* @param argv the argument vector which holds the actual arguments from the
* command line. Also comes from main().
*/
void ParseFlags(int *argc, char **argv);
} // namespace ola
// DECLARE_*
/**
* @brief Reuse a bool flag from another file
* @param name the name of the flag to reuse
*/
#define DECLARE_bool(name) \
DECLARE_flag(bool, name)
/**
* @brief Reuse an int8_t flag from another file
* @param name the name of the flag to reuse
*/
#define DECLARE_int8(name) \
DECLARE_flag(int8_t, name)
/**
* @brief Reuse an int16_t flag from another file
* @param name the name of the flag to reuse
*/
#define DECLARE_int16(name) \
DECLARE_flag(int16_t, name)
/**
* @brief Reuse an int32_t flag from another file
* @param name the name of the flag to reuse
*/
#define DECLARE_int32(name) \
DECLARE_flag(int32_t, name)
/**
* @brief Reuse a uint8_t flag from another file
* @param name the name of the flag to reuse
*/
#define DECLARE_uint8(name) \
DECLARE_flag(uint8_t, name)
/**
* @brief Reuse a uint16_t flag from another file
* @param name the name of the flag to reuse
*/
#define DECLARE_uint16(name) \
DECLARE_flag(uint16_t, name)
/**
* @brief Reuse a uint32_t flag from another file
* @param name the name of the flag to reuse
*/
#define DECLARE_uint32(name) \
DECLARE_flag(uint32_t, name)
/**
* @brief Reuse a string flag from another file
* @param name the name of the flag to reuse
*/
#define DECLARE_string(name) \
DECLARE_flag(std::string, name)
// DEFINE_*
/**
* @brief Create a new longname bool flag
*
* By default the flag is undefined, the same as the string and int ones, that
* is is_present() returns false. If the flag is provided on the command line,
* is_present() will be true, and operator bool() returns the value of the
* flag.
*
* @note The value must be parseable by StringToBoolTolerant.
* @param name the name of the flag to create
* @param default_value the default value for the flag. Either true, or false.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_bool(name, default_value, help_str) \
DEFINE_flag(bool, name, \0, default_value, help_str, true)
/**
* @brief Create a new bool flag with a long and short name
*
* By default the flag is undefined, the same as the string and int ones, that
* is is_present() returns false. If the flag is provided on the command line,
* is_present() will be true, and operator bool() returns the value of the
* flag.
*
* @note The value must be parseable by StringToBoolTolerant.
* @param name the name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag. Either true, or false.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_bool(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(bool, name, short_opt, default_value, help_str, true)
/**
* @brief Create a new longname bool flag that doesn't require an argument.
*
* By default the flag is set to default_value. If the flag is provided on the
* command line, the value of the flag becomes !default_value.
*
* @param name the name of the flag to create
* @param default_value the default value for the flag. Either true, or false.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_default_bool(name, default_value, help_str) \
DEFINE_flag(bool, name, \0, default_value, help_str, false)
/**
* @brief Create a new bool flag with a long and short name that doesn't
* require an argument.
*
* By default the flag is set to default_value. If the flag is provided on the
* command line, the value of the flag becomes !default_value.
*
* @param name the full name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag. Either true, or false.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_default_bool(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(bool, name, short_opt, default_value, help_str, false)
/**
* @brief Create a new longname int8_t flag
* @param name the name of the flag to create
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_int8(name, default_value, help_str) \
DEFINE_flag(int8_t, name, \0, default_value, help_str, true)
/**
* @brief Create a new int8_t flag with a long and short name
* @param name the full name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_int8(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(int8_t, name, short_opt, default_value, help_str, \
true)
/**
* @brief Create a new longname uint8_t flag
* @param name the name of the flag to create
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_uint8(name, default_value, help_str) \
DEFINE_flag(uint8_t, name, \0, default_value, help_str, true)
/**
* @brief Create a new uint8_t flag with a long and short name
* @param name the full name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_uint8(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(uint8_t, name, short_opt, default_value, help_str, \
true)
/**
* @brief Create a new longname int16_t flag
* @param name the name of the flag to create
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_int16(name, default_value, help_str) \
DEFINE_flag(int16_t, name, \0, default_value, help_str, true)
/**
* @brief Create a new int16_t flag with a long and short name
* @param name the full name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_int16(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(int16_t, name, short_opt, default_value, help_str, \
true)
/**
* @brief Create a new longname uint16_t flag
* @param name the name of the flag to create
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_uint16(name, default_value, help_str) \
DEFINE_flag(uint16_t, name, \0, default_value, help_str, true)
/**
* @brief Create a new uint16_t flag with a long and short name
* @param name the full name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_uint16(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(uint16_t, name, short_opt, default_value, help_str, \
true)
/**
* @brief Create a new longname int32_t flag
* @param name the name of the flag to create
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_int32(name, default_value, help_str) \
DEFINE_flag(int32_t, name, \0, default_value, help_str, true)
/**
* @brief Create a new int32_t flag with a long and short name
* @param name the full name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_int32(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(int32_t, name, short_opt, default_value, help_str, \
true)
/**
* @brief Create a new longname uint32_t flag
* @param name the name of the flag to create
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_uint32(name, default_value, help_str) \
DEFINE_flag(uint32_t, name, \0, default_value, help_str, true)
/**
* @brief Create a new int32_t flag with a long and short name
* @param name the full name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_uint32(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(uint32_t, name, short_opt, default_value, help_str, \
true)
/**
* @brief Create a new longname string flag
* @param name the name of the flag to create
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_string(name, default_value, help_str) \
DEFINE_flag(std::string, name, \0, default_value, help_str, true)
/**
* @brief Create a new string flag with a long and short name
* @param name the full name of the flag to create
* @param short_opt the short name of the flag. For example "-h", or "-d".
* @param default_value the default value for the flag.
* @param help_str the string displayed when the program is asked to display
* the help screen
*/
#define DEFINE_s_string(name, short_opt, default_value, help_str) \
DEFINE_flag_with_short(std::string, name, short_opt, default_value, \
help_str, true)
/** @}*/
#endif // INCLUDE_OLA_BASE_FLAGS_H_
|