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