2 * UCW Library -- Interface between command-line options and configuration
4 * (c) 2013 Jan Moskyto Matejka <mq@ucw.cz>
5 * (c) 2014 Martin Mares <mj@ucw.cz>
7 * This software may be freely distributed and used according to the terms
8 * of the GNU Lesser General Public License.
13 #include <ucw/opt-internal.h>
15 #include <ucw/conf-internal.h>
16 #include <ucw/fastbuf.h>
22 static void opt_conf_end_of_options(struct cf_context *cc) {
24 if (cc->postpone_commit && cf_close_group())
25 opt_failure("Loading of configuration failed");
28 void opt_handle_config(struct opt_item * opt UNUSED, const char * value, void * data UNUSED)
31 exit(1); // Error message is already printed by cf_load()
34 void opt_handle_set(struct opt_item * opt UNUSED, const char * value, void * data UNUSED)
36 struct cf_context *cc = cf_get_context();
39 opt_failure("Cannot set %s", value);
42 void opt_handle_dumpconfig(struct opt_item * opt UNUSED, const char * value UNUSED, void * data UNUSED)
44 struct cf_context *cc = cf_get_context();
45 opt_conf_end_of_options(cc);
46 struct fastbuf *b = bfdopen(1, 4096);
52 void opt_conf_hook_internal(struct opt_item * opt, const char * value UNUSED, void * data UNUSED) {
57 } state = OPT_CONF_HOOK_BEGIN;
59 bool confopt = opt->flags & OPT_BEFORE_CONFIG;
62 case OPT_CONF_HOOK_BEGIN:
64 state = OPT_CONF_HOOK_CONFIG;
66 opt_conf_end_of_options(cf_get_context());
67 state = OPT_CONF_HOOK_OTHERS;
70 case OPT_CONF_HOOK_CONFIG:
72 opt_conf_end_of_options(cf_get_context());
73 state = OPT_CONF_HOOK_OTHERS;
76 case OPT_CONF_HOOK_OTHERS:
78 opt_failure("Config options must stand before other options.");