Add fio_cpuset_exit() empty handler for platforms that don't support affinity
[fio.git] / parse.h
1 #ifndef FIO_PARSE_H
2 #define FIO_PARSE_H
3
4 /*
5  * Option types
6  */
7 enum fio_opt_type {
8         FIO_OPT_STR = 0,
9         FIO_OPT_STR_VAL,
10         FIO_OPT_STR_VAL_INT,
11         FIO_OPT_STR_VAL_TIME,
12         FIO_OPT_STR_STORE,
13         FIO_OPT_RANGE,
14         FIO_OPT_INT,
15         FIO_OPT_BOOL,
16         FIO_OPT_STR_SET,
17         FIO_OPT_DEPRECATED,
18 };
19
20 /*
21  * Match a possible value string with the integer option.
22  */
23 struct value_pair {
24         const char *ival;               /* string option */
25         unsigned int oval;              /* output value */
26         const char *help;               /* help text for sub option */
27 };
28
29 #define OPT_LEN_MAX     1024
30 #define PARSE_MAX_VP    16
31
32 /*
33  * Option define
34  */
35 struct fio_option {
36         const char *name;               /* option name */
37         const char *alias;              /* possible old allowed name */
38         enum fio_opt_type type;         /* option type */
39         unsigned int off1;              /* potential parameters */
40         unsigned int off2;
41         unsigned int off3;
42         unsigned int off4;
43         unsigned int maxval;            /* max and min value */
44         int minval;
45         int neg;                        /* negate value stored */
46         int prio;
47         void *cb;                       /* callback */
48         const char *help;               /* help text for option */
49         const char *def;                /* default setting */
50         const struct value_pair posval[PARSE_MAX_VP];/* possible values */
51         const char *parent;             /* parent option */
52 };
53
54 typedef int (str_cb_fn)(void *, char *);
55
56 extern int parse_option(const char *, struct fio_option *, void *);
57 extern void sort_options(char **, struct fio_option *, int);
58 extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
59 extern int show_cmd_help(struct fio_option *, const char *);
60 extern void fill_default_options(void *, struct fio_option *);
61 extern void options_init(struct fio_option *);
62
63 extern void strip_blank_front(char **);
64 extern void strip_blank_end(char *);
65 extern int str_to_decimal(const char *, long long *, int);
66
67 /*
68  * Handlers for the options
69  */
70 typedef int (fio_opt_str_fn)(void *, const char *);
71 typedef int (fio_opt_str_val_fn)(void *, long long *);
72 typedef int (fio_opt_int_fn)(void *, int *);
73 typedef int (fio_opt_str_set_fn)(void *);
74
75 #define td_var(start, offset)   ((void *) start + (offset))
76
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
84 #endif