9cfd68de5403631101241514945608293072abcb
[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_STR_SET,
16 };
17
18 /*
19  * Option define
20  */
21 struct fio_option {
22         const char *name;
23         enum fio_opt_type type;
24         unsigned int off1;
25         unsigned int off2;
26         unsigned int off3;
27         unsigned int off4;
28         unsigned int max_val;
29         void *cb;
30         const char *help;
31 };
32
33 typedef int (str_cb_fn)(void *, char *);
34
35 extern int parse_option(const char *, struct fio_option *, void *);
36 extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
37 extern int show_cmd_help(struct fio_option *, const char *);
38
39 extern void strip_blank_front(char **);
40 extern void strip_blank_end(char *);
41
42 /*
43  * Handlers for the options
44  */
45 typedef int (fio_opt_str_fn)(void *, const char *);
46 typedef int (fio_opt_str_val_fn)(void *, unsigned long long *);
47 typedef int (fio_opt_int_fn)(void *, unsigned int *);
48 typedef int (fio_opt_str_set_fn)(void *);
49
50 #define td_var(start, offset)   ((void *) start + (offset))
51
52 #endif