Allow the adding of 'posval' for dynamic options like 'profile'
[fio.git] / options.h
index cf823fc62535a7158c6e5de0552dc2fb3bec67a1..c6c2086e0a76286a87f44bbb469307ccdddc09e4 100644 (file)
--- a/options.h
+++ b/options.h
@@ -3,6 +3,7 @@
 
 #define FIO_MAX_OPTS           512
 
+#include <string.h>
 #include "parse.h"
 #include "flist.h"
 
@@ -12,4 +13,29 @@ int add_option(struct fio_option *);
 void invalidate_profile_options(const char *);
 extern char *exec_profile;
 
+void add_opt_posval(const char *, const char *, const char *);
+void del_opt_posval(const char *, const char *);
+
+static inline int o_match(struct fio_option *o, const char *opt)
+{
+       if (!strcmp(o->name, opt))
+               return 1;
+       else if (o->alias && !strcmp(o->alias, opt))
+               return 1;
+
+       return 0;
+}
+
+static inline struct fio_option *find_option(struct fio_option *options,
+                                            const char *opt)
+{
+       struct fio_option *o;
+
+       for (o = &options[0]; o->name; o++)
+               if (o_match(o, opt))
+                       return o;
+
+       return NULL;
+}
+
 #endif