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