parse-options.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. #ifndef __PERF_PARSE_OPTIONS_H
  2. #define __PERF_PARSE_OPTIONS_H
  3. #include <linux/kernel.h>
  4. enum parse_opt_type {
  5. /* special types */
  6. OPTION_END,
  7. OPTION_ARGUMENT,
  8. OPTION_GROUP,
  9. /* options with no arguments */
  10. OPTION_BIT,
  11. OPTION_BOOLEAN,
  12. OPTION_INCR,
  13. OPTION_SET_INT,
  14. OPTION_SET_PTR,
  15. /* options with arguments (usually) */
  16. OPTION_STRING,
  17. OPTION_INTEGER,
  18. OPTION_LONG,
  19. OPTION_CALLBACK,
  20. OPTION_U64,
  21. OPTION_UINTEGER,
  22. };
  23. enum parse_opt_flags {
  24. PARSE_OPT_KEEP_DASHDASH = 1,
  25. PARSE_OPT_STOP_AT_NON_OPTION = 2,
  26. PARSE_OPT_KEEP_ARGV0 = 4,
  27. PARSE_OPT_KEEP_UNKNOWN = 8,
  28. PARSE_OPT_NO_INTERNAL_HELP = 16,
  29. };
  30. enum parse_opt_option_flags {
  31. PARSE_OPT_OPTARG = 1,
  32. PARSE_OPT_NOARG = 2,
  33. PARSE_OPT_NONEG = 4,
  34. PARSE_OPT_HIDDEN = 8,
  35. PARSE_OPT_LASTARG_DEFAULT = 16,
  36. };
  37. struct option;
  38. typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
  39. /*
  40. * `type`::
  41. * holds the type of the option, you must have an OPTION_END last in your
  42. * array.
  43. *
  44. * `short_name`::
  45. * the character to use as a short option name, '\0' if none.
  46. *
  47. * `long_name`::
  48. * the long option name, without the leading dashes, NULL if none.
  49. *
  50. * `value`::
  51. * stores pointers to the values to be filled.
  52. *
  53. * `argh`::
  54. * token to explain the kind of argument this option wants. Keep it
  55. * homogenous across the repository.
  56. *
  57. * `help`::
  58. * the short help associated to what the option does.
  59. * Must never be NULL (except for OPTION_END).
  60. * OPTION_GROUP uses this pointer to store the group header.
  61. *
  62. * `flags`::
  63. * mask of parse_opt_option_flags.
  64. * PARSE_OPT_OPTARG: says that the argument is optionnal (not for BOOLEANs)
  65. * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs
  66. * PARSE_OPT_NONEG: says that this option cannot be negated
  67. * PARSE_OPT_HIDDEN this option is skipped in the default usage, showed in
  68. * the long one.
  69. *
  70. * `callback`::
  71. * pointer to the callback to use for OPTION_CALLBACK.
  72. *
  73. * `defval`::
  74. * default value to fill (*->value) with for PARSE_OPT_OPTARG.
  75. * OPTION_{BIT,SET_INT,SET_PTR} store the {mask,integer,pointer} to put in
  76. * the value when met.
  77. * CALLBACKS can use it like they want.
  78. */
  79. struct option {
  80. enum parse_opt_type type;
  81. int short_name;
  82. const char *long_name;
  83. void *value;
  84. const char *argh;
  85. const char *help;
  86. int flags;
  87. parse_opt_cb *callback;
  88. intptr_t defval;
  89. };
  90. #define check_vtype(v, type) ( BUILD_BUG_ON_ZERO(!__builtin_types_compatible_p(typeof(v), type)) + v )
  91. #define OPT_END() { .type = OPTION_END }
  92. #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) }
  93. #define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) }
  94. #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (b) }
  95. #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = (v), .help = (h) }
  96. #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = (v), .help = (h) }
  97. #define OPT_SET_INT(s, l, v, h, i) { .type = OPTION_SET_INT, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (i) }
  98. #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (p) }
  99. #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) }
  100. #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h) }
  101. #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = (v), .help = (h) }
  102. #define OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value = (v), .help = (h) }
  103. #define OPT_STRING(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = (v), (a), .help = (h) }
  104. #define OPT_DATE(s, l, v, h) \
  105. { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = "time", .help = (h), .callback = parse_opt_approxidate_cb }
  106. #define OPT_CALLBACK(s, l, v, a, h, f) \
  107. { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), (a), .help = (h), .callback = (f) }
  108. #define OPT_CALLBACK_NOOPT(s, l, v, a, h, f) \
  109. { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), (a), .help = (h), .callback = (f), .flags = PARSE_OPT_NOARG }
  110. #define OPT_CALLBACK_DEFAULT(s, l, v, a, h, f, d) \
  111. { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), (a), .help = (h), .callback = (f), .defval = (intptr_t)d, .flags = PARSE_OPT_LASTARG_DEFAULT }
  112. /* parse_options() will filter out the processed options and leave the
  113. * non-option argments in argv[].
  114. * Returns the number of arguments left in argv[].
  115. */
  116. extern int parse_options(int argc, const char **argv,
  117. const struct option *options,
  118. const char * const usagestr[], int flags);
  119. extern NORETURN void usage_with_options(const char * const *usagestr,
  120. const struct option *options);
  121. /*----- incremantal advanced APIs -----*/
  122. enum {
  123. PARSE_OPT_HELP = -1,
  124. PARSE_OPT_DONE,
  125. PARSE_OPT_UNKNOWN,
  126. };
  127. /*
  128. * It's okay for the caller to consume argv/argc in the usual way.
  129. * Other fields of that structure are private to parse-options and should not
  130. * be modified in any way.
  131. */
  132. struct parse_opt_ctx_t {
  133. const char **argv;
  134. const char **out;
  135. int argc, cpidx;
  136. const char *opt;
  137. int flags;
  138. };
  139. extern int parse_options_usage(const char * const *usagestr,
  140. const struct option *opts);
  141. extern void parse_options_start(struct parse_opt_ctx_t *ctx,
  142. int argc, const char **argv, int flags);
  143. extern int parse_options_step(struct parse_opt_ctx_t *ctx,
  144. const struct option *options,
  145. const char * const usagestr[]);
  146. extern int parse_options_end(struct parse_opt_ctx_t *ctx);
  147. /*----- some often used options -----*/
  148. extern int parse_opt_abbrev_cb(const struct option *, const char *, int);
  149. extern int parse_opt_approxidate_cb(const struct option *, const char *, int);
  150. extern int parse_opt_verbosity_cb(const struct option *, const char *, int);
  151. #define OPT__VERBOSE(var) OPT_BOOLEAN('v', "verbose", (var), "be verbose")
  152. #define OPT__QUIET(var) OPT_BOOLEAN('q', "quiet", (var), "be quiet")
  153. #define OPT__VERBOSITY(var) \
  154. { OPTION_CALLBACK, 'v', "verbose", (var), NULL, "be more verbose", \
  155. PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }, \
  156. { OPTION_CALLBACK, 'q', "quiet", (var), NULL, "be more quiet", \
  157. PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }
  158. #define OPT__DRY_RUN(var) OPT_BOOLEAN('n', "dry-run", (var), "dry run")
  159. #define OPT__ABBREV(var) \
  160. { OPTION_CALLBACK, 0, "abbrev", (var), "n", \
  161. "use <n> digits to display SHA-1s", \
  162. PARSE_OPT_OPTARG, &parse_opt_abbrev_cb, 0 }
  163. extern const char *parse_options_fix_filename(const char *prefix, const char *file);
  164. #endif /* __PERF_PARSE_OPTIONS_H */