summaryrefslogtreecommitdiffstats
path: root/src/settings.h
blob: 980c6f6241cd936456d2c534e04c2cf52ecbed22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/**
 * Copyright © 2016  Mattias Andrée <maandree@member.fsf.org>
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */
#include <time.h>



/**
 * Settings from the command line.
 */
struct settings {
	/**
	 * Print current status and exit?
	 */
	int print_status : 1;

	/**
	 * Start without transition?
	 */
	int panic_start : 1;

	/**
	 * Never transition, apart from at start?
	 */
	int panic_else : 1;

	/**
	 * Set temperature, possibly with transition, and exit?
	 */
	int set_and_exit : 1;

	/**
	 * Ignore calibrations?
	 */
	int ignore_calib : 1;

	/**
	 * Apply negative image filter?
	 */
	int negative : 1;

	/**
	 * Broadcast event with bus?
	 */
	int use_bus : 1;

	/**
	 * -1 to decrease temperature,
	 * +1 to increase temperature,
	 *  0 to set temperature.
	 */
	int temp_direction;

	/**
	 * The temperature, if use, the program will exit when it is done.
	 */
	long int temp;

	/**
	 * The temperature at full daytime.
	 */
	long int day_temp;

	/**
	 * The temperature at full night.
	 */
	long int night_temp;

	/**
	 * The temperature when disabled.
	 */
	long int natural_temp;

	/**
	 * Pathname to the hook script.
	 * Do not free this.
	 */
	char *hookpath;

	/**
	 * The number of seconds the transition takes.
	 */
	struct timespec transition;

	/**
	 * The number of kelvins per seconds the
	 * temperature is adjusted during transition.
	 */
	long int trans_speed;

	/**
	 * The user's latitudinal position.
	 */
	double latitude;

	/**
	 * The user's longitudinal position.
	 */
	double longitude;

	/**
	 * The number of elements in `monitors_id` and in `monitors_arg`.
	 */
	size_t monitors_n;

	/**
	 * Values for -d, -e, and -m, in order.
	 * Do not free its elements.
	 */
	char **monitors_id;

	/**
	 * The option (the character after the dash)
	 * the option used in correspnding element
	 * in `monitors_id`.
	 */
	char *monitors_arg;
};



/**
 * Parse the command line.
 * 
 * @param  argc      The number of elements in `argv`.
 * @param  argv      The commnad line arguments including the zeroth elemenet.
 * @param  settings  Output parameter for the settings.
 */
void parse_command_line(int argc, char *argv[], struct settings *settings);


/**
 * Marshal settings into a buffer.
 * 
 * @param   param     The buffer, `NULL` if you want to know the required size.
 * @param   settings  The settings to marshal.
 * @return            The size of the output.
 */
size_t marshal_settings(char *buffer, const struct settings *settings);

/**
 * Unmarshal settings from a buffer.
 * 
 * @param   buffer    The buffer.
 * @param   settings  Output parameter for the settings, will be allocated.
 * @return            The number of unmarshalled bytes, 0 on error.
 */
size_t unmarshal_settings(char *buffer, struct settings **settings);