RDMA engine: Change wording of HOWTO section
[fio.git] / parse.h
... / ...
CommitLineData
1#ifndef FIO_PARSE_H
2#define FIO_PARSE_H
3
4#include "flist.h"
5
6/*
7 * Option types
8 */
9enum fio_opt_type {
10 FIO_OPT_INVALID = 0,
11 FIO_OPT_STR,
12 FIO_OPT_STR_MULTI,
13 FIO_OPT_STR_VAL,
14 FIO_OPT_STR_VAL_TIME,
15 FIO_OPT_STR_STORE,
16 FIO_OPT_RANGE,
17 FIO_OPT_INT,
18 FIO_OPT_BOOL,
19 FIO_OPT_FLOAT_LIST,
20 FIO_OPT_STR_SET,
21 FIO_OPT_DEPRECATED,
22};
23
24/*
25 * Match a possible value string with the integer option.
26 */
27struct value_pair {
28 const char *ival; /* string option */
29 unsigned int oval; /* output value */
30 const char *help; /* help text for sub option */
31 int or; /* OR value */
32};
33
34#define OPT_LEN_MAX 4096
35#define PARSE_MAX_VP 16
36
37/*
38 * Option define
39 */
40struct fio_option {
41 const char *name; /* option name */
42 const char *alias; /* possible old allowed name */
43 enum fio_opt_type type; /* option type */
44 unsigned int off1; /* potential parameters */
45 unsigned int off2;
46 unsigned int off3;
47 unsigned int off4;
48 void *roff1, *roff2, *roff3, *roff4;
49 unsigned int maxval; /* max and min value */
50 int minval;
51 double maxfp; /* max and min floating value */
52 double minfp;
53 unsigned int maxlen; /* max length */
54 int neg; /* negate value stored */
55 int prio;
56 void *cb; /* callback */
57 const char *help; /* help text for option */
58 const char *def; /* default setting */
59 struct value_pair posval[PARSE_MAX_VP];/* possible values */
60 const char *parent; /* parent option */
61 int (*verify)(struct fio_option *, void *);
62 const char *prof_name; /* only valid for specific profile */
63};
64
65typedef int (str_cb_fn)(void *, char *);
66
67extern int parse_option(const char *, struct fio_option *, void *);
68extern void sort_options(char **, struct fio_option *, int);
69extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
70extern int show_cmd_help(struct fio_option *, const char *);
71extern void fill_default_options(void *, struct fio_option *);
72extern void option_init(struct fio_option *);
73extern void options_init(struct fio_option *);
74
75extern void strip_blank_front(char **);
76extern void strip_blank_end(char *);
77extern int str_to_decimal(const char *, long long *, int, void *);
78
79/*
80 * Handlers for the options
81 */
82typedef int (fio_opt_str_fn)(void *, const char *);
83typedef int (fio_opt_str_val_fn)(void *, long long *);
84typedef int (fio_opt_int_fn)(void *, int *);
85typedef int (fio_opt_str_set_fn)(void *);
86
87#define td_var(start, offset) ((void *) start + (offset))
88
89#ifndef min
90#define min(a, b) ((a) < (b) ? (a) : (b))
91#endif
92#ifndef max
93#define max(a, b) ((a) > (b) ? (a) : (b))
94#endif
95
96static inline int parse_is_percent(unsigned long long val)
97{
98 return val <= -1ULL && val >= (-1ULL - 100ULL);
99}
100
101#endif