blob: 563712eede06dca557bfbdcbaae8ecbb73123dfe [file] [log] [blame]
Jens Axboee1f36502006-10-27 10:54:08 +02001#ifndef FIO_PARSE_H
2#define FIO_PARSE_H
3
4/*
5 * Option types
6 */
7enum fio_opt_type {
8 FIO_OPT_STR = 0,
9 FIO_OPT_STR_VAL,
Jens Axboe75e6f362006-11-03 08:17:09 +010010 FIO_OPT_STR_VAL_INT,
Jens Axboee1f36502006-10-27 10:54:08 +020011 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 */
21struct fio_option {
22 char *name;
23 enum fio_opt_type type;
24 unsigned int off1;
25 unsigned int off2;
26 unsigned int max_val;
27 void *cb;
28};
29
30typedef int (str_cb_fn)(void *, char *);
31
32extern int parse_option(const char *, struct fio_option *, void *);
Jens Axboeb4692822006-10-27 13:43:22 +020033extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
Jens Axboee1f36502006-10-27 10:54:08 +020034
35extern void strip_blank_front(char **);
36extern void strip_blank_end(char *);
37
38/*
39 * Handlers for the options
40 */
Jens Axboeb4692822006-10-27 13:43:22 +020041typedef int (fio_opt_str_fn)(void *, const char *);
Jens Axboee1f36502006-10-27 10:54:08 +020042typedef int (fio_opt_str_val_fn)(void *, unsigned long long *);
43typedef int (fio_opt_int_fn)(void *, unsigned int *);
44typedef int (fio_opt_str_set_fn)(void *);
45
46#define td_var(start, offset) ((void *) start + (offset))
47
48#endif