Always scramble buffers, if scramble_buffers is set
[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,
83349190 19 FIO_OPT_FLOAT_LIST,
e1f36503 20 FIO_OPT_STR_SET,
15ca150e 21 FIO_OPT_DEPRECATED,
e1f36503
JA
22};
23
b1ec1da6
JA
24/*
25 * Match a possible value string with the integer option.
26 */
27struct value_pair {
28 const char *ival; /* string option */
29 unsigned int oval; /* output value */
7837213b 30 const char *help; /* help text for sub option */
ebadc0ce 31 int orval; /* OR value */
c44b1ff5 32 void *cb; /* sub-option callback */
b1ec1da6
JA
33};
34
c06c78c0 35#define OPT_LEN_MAX 4096
3ae4f4af 36#define PARSE_MAX_VP 24
b1ec1da6 37
e1f36503
JA
38/*
39 * Option define
40 */
41struct fio_option {
ee738499 42 const char *name; /* option name */
e8b0e958 43 const char *lname; /* long option name */
03b74b3e 44 const char *alias; /* possible old allowed name */
ee738499
JA
45 enum fio_opt_type type; /* option type */
46 unsigned int off1; /* potential parameters */
e1f36503 47 unsigned int off2;
f90eff5a
JA
48 unsigned int off3;
49 unsigned int off4;
6eaf09d6
SL
50 unsigned int off5;
51 unsigned int off6;
ee738499 52 unsigned int maxval; /* max and min value */
63f29372 53 int minval;
83349190
YH
54 double maxfp; /* max and min floating value */
55 double minfp;
20eb06bd 56 unsigned int interval; /* client hint for suitable interval */
83349190 57 unsigned int maxlen; /* max length */
76a43db4 58 int neg; /* negate value stored */
3b8b7135 59 int prio;
ee738499
JA
60 void *cb; /* callback */
61 const char *help; /* help text for option */
62 const char *def; /* default setting */
f5b6bb85 63 struct value_pair posval[PARSE_MAX_VP];/* possible values */
afdf9352 64 const char *parent; /* parent option */
d71c154c 65 int hide; /* hide if parent isn't set */
a4ed77fe 66 int hide_on_set; /* hide on set, not on unset */
90265353
JA
67 const char *inverse; /* if set, apply opposite action to this option */
68 struct fio_option *inv_opt; /* cached lookup */
70a4c0c8 69 int (*verify)(struct fio_option *, void *);
07b3232d 70 const char *prof_name; /* only valid for specific profile */
7b504edd 71 void *prof_opts;
e8b0e958
JA
72 unsigned int category; /* what type of option */
73 unsigned int group; /* who to group with */
90265353 74 void *gui_data;
0de5b26f 75 int is_seconds; /* time value with seconds base */
88038bc7 76 int is_time; /* time based value */
c8931876 77 int no_warn_def;
e1f36503
JA
78};
79
80typedef int (str_cb_fn)(void *, char *);
81
292cc475 82extern int parse_option(char *, const char *, struct fio_option *, struct fio_option **, void *, int);
3b8b7135 83extern void sort_options(char **, struct fio_option *, int);
07b3232d
JA
84extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
85extern int show_cmd_help(struct fio_option *, const char *);
ee738499 86extern void fill_default_options(void *, struct fio_option *);
9f988e2e 87extern void option_init(struct fio_option *);
13335ddb 88extern void options_init(struct fio_option *);
7e356b2d 89extern void options_free(struct fio_option *, void *);
e1f36503
JA
90
91extern void strip_blank_front(char **);
92extern void strip_blank_end(char *);
88038bc7 93extern int str_to_decimal(const char *, long long *, int, void *, int, int);
9af4a244 94extern int check_str_bytes(const char *p, long long *val, void *data);
0de5b26f 95extern int check_str_time(const char *p, long long *val, int);
88038bc7 96extern int str_to_float(const char *str, double *val, int is_time);
e1f36503 97
a893c261
JA
98extern int string_distance(const char *s1, const char *s2);
99
e1f36503
JA
100/*
101 * Handlers for the options
102 */
b4692828 103typedef int (fio_opt_str_fn)(void *, const char *);
63f29372
JA
104typedef int (fio_opt_str_val_fn)(void *, long long *);
105typedef int (fio_opt_int_fn)(void *, int *);
e1f36503
JA
106typedef int (fio_opt_str_set_fn)(void *);
107
3b5dac63 108#define __td_var(start, offset) ((char *) start + (offset))
f0fdbcaf
JA
109
110struct thread_options;
111static inline void *td_var(struct thread_options *to, struct fio_option *o,
112 unsigned int offset)
113{
114 if (o->prof_opts)
115 return __td_var(o->prof_opts, offset);
116
117 return __td_var(to, offset);
118}
e1f36503 119
7bb59102
JA
120static inline int parse_is_percent(unsigned long long val)
121{
122 return val <= -1ULL && val >= (-1ULL - 100ULL);
123}
124
e1f36503 125#endif