[PATCH] Option minval should be signed
[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  * Option define
21  */
22 struct fio_option {
23         const char *name;               /* option name */
24         enum fio_opt_type type;         /* option type */
25         unsigned int off1;              /* potential parameters */
26         unsigned int off2;
27         unsigned int off3;
28         unsigned int off4;
29         unsigned int maxval;            /* max and min value */
30         int minval;
31         void *cb;                       /* callback */
32         const char *help;               /* help text for option */
33         const char *def;                /* default setting */
34         const char *posval[16];         /* possible values */
35 };
36
37 typedef int (str_cb_fn)(void *, char *);
38
39 extern int parse_option(const char *, struct fio_option *, void *);
40 extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
41 extern int show_cmd_help(struct fio_option *, const char *);
42 extern void fill_default_options(void *, struct fio_option *);
43 extern void options_init(struct fio_option *);
44
45 extern void strip_blank_front(char **);
46 extern void strip_blank_end(char *);
47
48 /*
49  * Handlers for the options
50  */
51 typedef int (fio_opt_str_fn)(void *, const char *);
52 typedef int (fio_opt_str_val_fn)(void *, long long *);
53 typedef int (fio_opt_int_fn)(void *, int *);
54 typedef int (fio_opt_str_set_fn)(void *);
55
56 #define td_var(start, offset)   ((void *) start + (offset))
57
58 #endif