Untangle the file creation mess
[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 };
18
19 /*
20  * Match a possible value string with the integer option.
21  */
22 struct value_pair {
23         const char *ival;               /* string option */
24         unsigned int oval;              /* output value */
25         const char *help;               /* help text for sub option */
26 };
27
28 #define PARSE_MAX_VP    16
29
30 /*
31  * Option define
32  */
33 struct fio_option {
34         const char *name;               /* option name */
35         const char *alias;              /* possible old allowed name */
36         enum fio_opt_type type;         /* option type */
37         unsigned int off1;              /* potential parameters */
38         unsigned int off2;
39         unsigned int off3;
40         unsigned int off4;
41         unsigned int maxval;            /* max and min value */
42         int minval;
43         int neg;                        /* negate value stored */
44         void *cb;                       /* callback */
45         const char *help;               /* help text for option */
46         const char *def;                /* default setting */
47         const struct value_pair posval[PARSE_MAX_VP];/* possible values */
48 };
49
50 typedef int (str_cb_fn)(void *, char *);
51
52 extern int parse_option(const char *, struct fio_option *, void *);
53 extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
54 extern int show_cmd_help(struct fio_option *, const char *);
55 extern void fill_default_options(void *, struct fio_option *);
56 extern void options_init(struct fio_option *);
57
58 extern void strip_blank_front(char **);
59 extern void strip_blank_end(char *);
60
61 /*
62  * Handlers for the options
63  */
64 typedef int (fio_opt_str_fn)(void *, const char *);
65 typedef int (fio_opt_str_val_fn)(void *, long long *);
66 typedef int (fio_opt_int_fn)(void *, int *);
67 typedef int (fio_opt_str_set_fn)(void *);
68
69 #define td_var(start, offset)   ((void *) start + (offset))
70
71 #ifndef min
72 #define min(a, b)       ((a) < (b) ? (a) : (b))
73 #endif
74 #ifndef max
75 #define max(a, b)       ((a) > (b) ? (a) : (b))
76 #endif
77
78 #endif