Wait for async threads before freeing/killing IO buffers
[fio.git] / parse.h
CommitLineData
e1f36503
JA
1#ifndef FIO_PARSE_H
2#define FIO_PARSE_H
3
4/*
5 * Option types
6 */
7enum fio_opt_type {
8 FIO_OPT_STR = 0,
9 FIO_OPT_STR_VAL,
10 FIO_OPT_STR_VAL_TIME,
11 FIO_OPT_STR_STORE,
12 FIO_OPT_RANGE,
13 FIO_OPT_INT,
13335ddb 14 FIO_OPT_BOOL,
e1f36503 15 FIO_OPT_STR_SET,
15ca150e 16 FIO_OPT_DEPRECATED,
e1f36503
JA
17};
18
b1ec1da6
JA
19/*
20 * Match a possible value string with the integer option.
21 */
22struct value_pair {
23 const char *ival; /* string option */
24 unsigned int oval; /* output value */
7837213b 25 const char *help; /* help text for sub option */
b1ec1da6
JA
26};
27
88b5a391 28#define OPT_LEN_MAX 1024
b1ec1da6
JA
29#define PARSE_MAX_VP 16
30
e1f36503
JA
31/*
32 * Option define
33 */
34struct fio_option {
ee738499 35 const char *name; /* option name */
03b74b3e 36 const char *alias; /* possible old allowed name */
ee738499
JA
37 enum fio_opt_type type; /* option type */
38 unsigned int off1; /* potential parameters */
e1f36503 39 unsigned int off2;
f90eff5a
JA
40 unsigned int off3;
41 unsigned int off4;
ee738499 42 unsigned int maxval; /* max and min value */
63f29372 43 int minval;
76a43db4 44 int neg; /* negate value stored */
3b8b7135 45 int prio;
ee738499
JA
46 void *cb; /* callback */
47 const char *help; /* help text for option */
48 const char *def; /* default setting */
b1ec1da6 49 const struct value_pair posval[PARSE_MAX_VP];/* possible values */
afdf9352 50 const char *parent; /* parent option */
70a4c0c8 51 int (*verify)(struct fio_option *, void *);
e1f36503
JA
52};
53
54typedef int (str_cb_fn)(void *, char *);
55
56extern int parse_option(const char *, struct fio_option *, void *);
3b8b7135 57extern void sort_options(char **, struct fio_option *, int);
b4692828 58extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
fd28ca49 59extern int show_cmd_help(struct fio_option *, const char *);
ee738499 60extern void fill_default_options(void *, struct fio_option *);
13335ddb 61extern void options_init(struct fio_option *);
e1f36503
JA
62
63extern void strip_blank_front(char **);
64extern void strip_blank_end(char *);
d6978a32 65extern int str_to_decimal(const char *, long long *, int, void *);
e1f36503
JA
66
67/*
68 * Handlers for the options
69 */
b4692828 70typedef int (fio_opt_str_fn)(void *, const char *);
63f29372
JA
71typedef int (fio_opt_str_val_fn)(void *, long long *);
72typedef int (fio_opt_int_fn)(void *, int *);
e1f36503
JA
73typedef int (fio_opt_str_set_fn)(void *);
74
75#define td_var(start, offset) ((void *) start + (offset))
76
0e9f7fac
JA
77#ifndef min
78#define min(a, b) ((a) < (b) ? (a) : (b))
79#endif
80#ifndef max
81#define max(a, b) ((a) > (b) ? (a) : (b))
82#endif
83
e1f36503 84#endif