client: remove command reply after calling into client update_job
[fio.git] / options.h
CommitLineData
9f988e2e
JA
1#ifndef FIO_OPTION_H
2#define FIO_OPTION_H
3
07b3232d
JA
4#define FIO_MAX_OPTS 512
5
f5b6bb85 6#include <string.h>
9f988e2e
JA
7#include "parse.h"
8#include "flist.h"
9
10#define td_var_offset(var) ((size_t) &((struct thread_options *)0)->var)
11
07b3232d
JA
12int add_option(struct fio_option *);
13void invalidate_profile_options(const char *);
14extern char *exec_profile;
9f988e2e 15
f5b6bb85
JA
16void add_opt_posval(const char *, const char *, const char *);
17void del_opt_posval(const char *, const char *);
7e356b2d
JA
18struct thread_data;
19void fio_options_free(struct thread_data *);
f5b6bb85 20
9af4a244
JA
21extern struct fio_option fio_options[FIO_MAX_OPTS];
22
f5b6bb85
JA
23static inline int o_match(struct fio_option *o, const char *opt)
24{
25 if (!strcmp(o->name, opt))
26 return 1;
27 else if (o->alias && !strcmp(o->alias, opt))
28 return 1;
29
30 return 0;
31}
32
33static inline struct fio_option *find_option(struct fio_option *options,
34 const char *opt)
35{
36 struct fio_option *o;
37
38 for (o = &options[0]; o->name; o++)
39 if (o_match(o, opt))
40 return o;
41
42 return NULL;
43}
44
9af4a244
JA
45struct opt_group {
46 const char *name;
47 unsigned int mask;
48};
49
50enum opt_category {
e8b0e958
JA
51 __FIO_OPT_C_GENERAL = 0,
52 __FIO_OPT_C_IO,
53 __FIO_OPT_C_FILE,
54 __FIO_OPT_C_STAT,
55 __FIO_OPT_C_LOG,
56 __FIO_OPT_C_NR,
57
58 FIO_OPT_C_GENERAL = (1U << __FIO_OPT_C_GENERAL),
59 FIO_OPT_C_IO = (1U << __FIO_OPT_C_IO),
60 FIO_OPT_C_FILE = (1U << __FIO_OPT_C_FILE),
61 FIO_OPT_C_STAT = (1U << __FIO_OPT_C_STAT),
62 FIO_OPT_C_LOG = (1U << __FIO_OPT_C_LOG),
63 FIO_OPT_C_INVALID = (1U << __FIO_OPT_C_NR),
64};
65
66enum opt_category_group {
67 __FIO_OPT_G_RATE = 0,
e231bbe6 68 __FIO_OPT_G_ZONE,
e8b0e958
JA
69 __FIO_OPT_G_RWMIX,
70 __FIO_OPT_G_VERIFY,
71 __FIO_OPT_G_TRIM,
72 __FIO_OPT_G_IOLOG,
73 __FIO_OPT_G_IO_DEPTH,
74 __FIO_OPT_G_IO_FLOW,
0626037e
JA
75 __FIO_OPT_G_DESC,
76 __FIO_OPT_G_FILENAME,
77 __FIO_OPT_G_IO_BASIC,
a1f6afec
JA
78 __FIO_OPT_G_CGROUP,
79 __FIO_OPT_G_RUNTIME,
10860056
JA
80 __FIO_OPT_G_PROCESS,
81 __FIO_OPT_G_CRED,
82 __FIO_OPT_G_CLOCK,
3ceb458f
JA
83 __FIO_OPT_G_IO_TYPE,
84 __FIO_OPT_G_THINKTIME,
85 __FIO_OPT_G_RANDOM,
86 __FIO_OPT_G_IO_BUF,
e231bbe6 87 __FIO_OPT_G_NR,
9af4a244 88
e8b0e958 89 FIO_OPT_G_RATE = (1U << __FIO_OPT_G_RATE),
9af4a244 90 FIO_OPT_G_ZONE = (1U << __FIO_OPT_G_ZONE),
e8b0e958
JA
91 FIO_OPT_G_RWMIX = (1U << __FIO_OPT_G_RWMIX),
92 FIO_OPT_G_VERIFY = (1U << __FIO_OPT_G_VERIFY),
93 FIO_OPT_G_TRIM = (1U << __FIO_OPT_G_TRIM),
94 FIO_OPT_G_IOLOG = (1U << __FIO_OPT_G_IOLOG),
95 FIO_OPT_G_IO_DEPTH = (1U << __FIO_OPT_G_IO_DEPTH),
96 FIO_OPT_G_IO_FLOW = (1U << __FIO_OPT_G_IO_FLOW),
0626037e
JA
97 FIO_OPT_G_DESC = (1U << __FIO_OPT_G_DESC),
98 FIO_OPT_G_FILENAME = (1U << __FIO_OPT_G_FILENAME),
99 FIO_OPT_G_IO_BASIC = (1U << __FIO_OPT_G_IO_BASIC),
a1f6afec
JA
100 FIO_OPT_G_CGROUP = (1U << __FIO_OPT_G_CGROUP),
101 FIO_OPT_G_RUNTIME = (1U << __FIO_OPT_G_RUNTIME),
10860056
JA
102 FIO_OPT_G_PROCESS = (1U << __FIO_OPT_G_PROCESS),
103 FIO_OPT_G_CRED = (1U << __FIO_OPT_G_CRED),
104 FIO_OPT_G_CLOCK = (1U << __FIO_OPT_G_CLOCK),
3ceb458f
JA
105 FIO_OPT_G_IO_TYPE = (1U << __FIO_OPT_G_IO_TYPE),
106 FIO_OPT_G_THINKTIME = (1U << __FIO_OPT_G_THINKTIME),
107 FIO_OPT_G_RANDOM = (1U << __FIO_OPT_G_RANDOM),
108 FIO_OPT_G_IO_BUF = (1U << __FIO_OPT_G_IO_BUF),
9af4a244
JA
109 FIO_OPT_G_INVALID = (1U << __FIO_OPT_G_NR),
110};
111
112extern struct opt_group *opt_group_from_mask(unsigned int *mask);
e8b0e958 113extern struct opt_group *opt_group_cat_from_mask(unsigned int *mask);
c504ee55 114extern struct fio_option *fio_option_find(const char *name);
3c3ed070 115extern unsigned int fio_get_kb_base(void *);
9af4a244 116
9f988e2e 117#endif