splice: if splicing fails with EINVAL, it's most likely missing fs support
[fio.git] / parse.h
... / ...
CommitLineData
1#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,
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 FIO_OPT_DEPRECATED,
18};
19
20/*
21 * Match a possible value string with the integer option.
22 */
23struct value_pair {
24 const char *ival; /* string option */
25 unsigned int oval; /* output value */
26 const char *help; /* help text for sub option */
27};
28
29#define PARSE_MAX_VP 16
30
31/*
32 * Option define
33 */
34struct fio_option {
35 const char *name; /* option name */
36 const char *alias; /* possible old allowed name */
37 enum fio_opt_type type; /* option type */
38 unsigned int off1; /* potential parameters */
39 unsigned int off2;
40 unsigned int off3;
41 unsigned int off4;
42 unsigned int maxval; /* max and min value */
43 int minval;
44 int neg; /* negate value stored */
45 void *cb; /* callback */
46 const char *help; /* help text for option */
47 const char *def; /* default setting */
48 const struct value_pair posval[PARSE_MAX_VP];/* possible values */
49 const char *parent; /* parent option */
50};
51
52typedef int (str_cb_fn)(void *, char *);
53
54extern int parse_option(const char *, struct fio_option *, void *);
55extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, void *);
56extern int show_cmd_help(struct fio_option *, const char *);
57extern void fill_default_options(void *, struct fio_option *);
58extern void options_init(struct fio_option *);
59
60extern void strip_blank_front(char **);
61extern void strip_blank_end(char *);
62extern int str_to_decimal(const char *, long long *, int);
63
64/*
65 * Handlers for the options
66 */
67typedef int (fio_opt_str_fn)(void *, const char *);
68typedef int (fio_opt_str_val_fn)(void *, long long *);
69typedef int (fio_opt_int_fn)(void *, int *);
70typedef int (fio_opt_str_set_fn)(void *);
71
72#define td_var(start, offset) ((void *) start + (offset))
73
74#ifndef min
75#define min(a, b) ((a) < (b) ? (a) : (b))
76#endif
77#ifndef max
78#define max(a, b) ((a) > (b) ? (a) : (b))
79#endif
80
81#endif