From 2ba3c7b5c33fbbbb22c619c196b63fd689885ece Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 19:51:28 +0100 Subject: Merge config-ini.h and options.h into common.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/common.h | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) (limited to 'src/common.h') diff --git a/src/common.h b/src/common.h index 0e0fd3b..746238d 100644 --- a/src/common.h +++ b/src/common.h @@ -111,6 +111,49 @@ struct transition_scheme { struct color_setting night; }; +struct config_ini_setting { + struct config_ini_setting *next; + char *name; + char *value; +}; + +struct config_ini_section { + struct config_ini_section *next; + char *name; + struct config_ini_setting *settings; +}; + +struct config_ini_state { + struct config_ini_section *sections; +}; + + +struct options { + /* Path to config file */ + char *config_filepath; + + struct transition_scheme scheme; + enum program_mode mode; + int verbose; + + /* Temperature to set in manual mode. */ + int temp_set; + /* Whether to fade between large skips in color temperature. */ + int use_fade; + /* Whether to preserve gamma ramps if supported by gamma method. */ + int preserve_gamma; + + /* Selected gamma method. */ + const struct gamma_method *method; + /* Arguments for gamma method. */ + char *method_args; + + /* Selected location provider. */ + const struct location_provider *provider; + /* Arguments for location provider. */ + char *provider_args; +}; + /* Gamma adjustment method */ typedef struct gamma_state GAMMA_STATE; @@ -180,6 +223,23 @@ LIST_RAMPS_STOP_VALUE_TYPES(X, ;); #undef X +int config_ini_init(struct config_ini_state *state, const char *filepath); +void config_ini_free(struct config_ini_state *state); +struct config_ini_section *config_ini_get_section(struct config_ini_state *state, const char *name); + + +void options_init(struct options *options); +void options_parse_args( + struct options *options, int argc, char *argv[], + const struct gamma_method *gamma_methods, + const struct location_provider *location_providers); +void options_parse_config_file( + struct options *options, struct config_ini_state *config_state, + const struct gamma_method *gamma_methods, + const struct location_provider *location_providers); +void options_set_defaults(struct options *options); + + void hooks_signal_period_change(enum period prev_period, enum period period); -- cgit v1.2.3-70-g09d2