summaryrefslogtreecommitdiffstats
path: root/src/settings.c
blob: 029fc81f57af019bdbe2f3ae74c389338b3fdda4 (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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/**
 * Copyright © 2016  Mattias Andrée <maandree@member.fsf.org>
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#include "settings.h"
#include "arg.h"
#include "haiku.h"
#include "macros.h"
#include <ctype.h>
#include <errno.h>
#include <math.h>
#include <limits.h>



/**
 * Print usage information and exit if a condition is met.
 * 
 * @param  condition  Do no do anything iff this is zero.
 */
static void
usage(int condition)
{
	if (!condition) return;
	fprintf(stderr,
	        "Usage: %s [OPTIONS]...\n"
	       	"See `man 1 radharc` for more information.\n",
	        !argv0 ? "radharc" : argv0), exit(2);
}


/**
 * Parse a temperature string.
 * 
 * @param   str        The temperature string.
 * @param   temp       Output parameter for the temperature.
 *                     Overflow is truncated.
 * @param   direction  Unless `NULL`, will be set to +1 if `str`
 *                     starts with a '+', `-1` if `str` starts
 *                     with a '-', 0 otherwise. If `NULL` and
 *                     `str` starts with a '-' or a '+', the
 *                     function will fail.
 * @param   lower      The function shall fail if the evaluated
 *                     temperature is below this.
 * @return             0 on success, -1 on error.
 */
static int
parse_temperature(const char *str, long int *temp, int *direction, int lower)
{
	char *end;
	int dir = *str == '-' ? -1 : *str == '+' ? +1 : 0;
	str += !!dir;
	t (dir && !direction);
	if (dir) *direction = dir;
	t (!isdigit(*str));
	*temp = (errno = 0, strtol)(str, &end, 10);
	t ((errno && !((errno == ERANGE) && (*temp == LONG_MAX))) || *end || (*temp < lower));
	return 0;
fail:
	return -1;
}


/**
 * Parse a string as a positively valued `struct timespec`.
 * 
 * @param   str  The string.
 * @param   ts   Output parameter for the value.
 * @return       0 on success, -1 on error. 
 */
static int
parse_timespec(const char *str, struct timespec *ts)
{
#define DIGIT(var, c)          var += (var) * 10 + ((c) & 15);
#define ALL_DIGITS(cond, var)  while ((cond) && isdigit(*str))  DIGIT(var, *str++)

	int points = 0;
	memset(ts, 0, sizeof(*ts));

	/* Parse seconds. */
	t (!isdigit(*str));
	ALL_DIGITS(1, ts->tv_sec);

	/* End? */
	if (!*str)  return 0;
	t (*str != '.');

	/* Parse nanoseconds.*/
	ALL_DIGITS(points++ < 9, ts->tv_nsec);
	if ((points == 9) && isdigit(*str) && (*str++ >= '5') && (++(ts->tv_nsec) == 1000000000L))
		ts->tv_sec += 1, ts->tv_nsec = 0;
	while (isdigit(*str))  str++;
	t (*str);

	/* End! */
	return 0;
fail:
	return -1;
}


/**
 * Parse a latitude or a longitude value.
 * 
 * @param   str    The string.
 * @param   loc    Output parameter for the value.
 * @param   limit  The limit of the absolute value.
 * @return         0 on success, -1 on error.
 */
static int
parse_location(char *str, double *loc, double limit)
{
	char* end;
	if (strstr(str, "−") == str) /* Support proper minus. */
		*(str += strlen("−") - 1) = '-';
	if ((*str != '-') && (*str != '+') && (*str != '.') && !isdigit(*str))
		return -1;
	*loc = (errno = 0, strtod)(str, &end);
	return -(errno || *loc || (fabs(*loc) > limit));
}


/**
 * 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 *s)
{
	int location_set = 0;
	char *p;
	char *arg;
	int c = 0;

	memset(s, 0, sizeof(*s));
	s->natural_temp = 6500;
	s->day_temp     = 5500;
	s->night_temp   = 3500;
	s->trans_speed  = 50;

#define BOOLEAN(var)  var = !plus;  break
#define PLUS(...)  (plus ? (__VA_ARGS__) : 0)
	ARGBEGIN {
	case 'l':
		PLUS(location_set = 0);
		usage(!(p = strchr(arg = ARGF(), ':')));
		*p++ = '\0', location_set = 1;
		usage(parse_location(arg, &(s->latitude),   90.0));
		usage(parse_location(p,   &(s->longitude), 180.0));
		break;
	case 't':
		PLUS(s->day_temp = 5500, s->night_temp = 3500);
		s->temp = s->day_temp = s->night_temp = 0, s->temp_direction = 0;
		if ((p = strchr(arg = ARGF(), ':'))) {
			*p++ = '\0';
			usage(parse_temperature(arg, &(s->day_temp), NULL, 1000));
			usage(parse_temperature(p, &(s->night_temp), NULL, 1000));
		} else {
			usage(parse_temperature(arg, &(s->temp), &(s->temp_direction), 1000));
		}
		break;
	case 'T':
		PLUS(s->natural_temp = 6500);
		usage(parse_temperature(ARGF(), &(s->natural_temp), NULL, 1000));
		break;
	case 's':
		PLUS(s->trans_speed = 50);
		s->trans_speed = 0;
		usage(parse_timespec(ARGF(), &(s->transition)));
		break;
	case 'S':
		PLUS(s->trans_speed = 0);
		usage(parse_temperature(ARGF(), &(s->trans_speed), NULL, 1));
		break;
	case 'h':
		s->hookpath = (plus ? NULL : ARGF());
		break;
	case 'd': c++; /* Fall though. */
	case 'e': c++; /* Fall though. */
	case 'm': c++;
		PLUS(s->monitors_n = 0, free(s->monitors_id), free(s->monitors_arg));
		xrealloc(&(s->monitors_id),  s->monitors_n + 1);
		xrealloc(&(s->monitors_arg), s->monitors_n + 1);
		s->monitors_id[s->monitors_n] = ARGF();
		s->monitors_arg[s->monitors_n++] = (c == 3 ? 'm' : c == 2 ? 'e' : 'd'), c = 0;
		break;
	case 'p':  BOOLEAN(s->print_status);
	case 'n':  BOOLEAN(s->panic_start);
	case 'N':  BOOLEAN(s->panic_else);
	case 'o':  BOOLEAN(s->set_and_exit);
	case 'x':  BOOLEAN(s->ignore_calib);
	case 'i':  BOOLEAN(s->negative);
	case 'b':  BOOLEAN(s->use_bus);
	default:   usage(1);  break;
	} ARGEND;
	usage(argc);

	if (!location_set && !(s->temp))
		fprintf(stderr,
			"%s: The -l option is mandatory, unless single value -t is used. "
	        	"See `man 1 radharc` for more information.\n",
		        !argv0 ? "radharc" : argv0), exit(2);

	return;
fail:
	haiku(argv0 ? argv0 : "radharc");
	exit(1);
}


/**
 * Marshal settings into a buffer.
 * 
 * @param   buffer    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)
{
#define MARSHAL(N, DATUMP)  (n += aux = (N), (buf ? (memcpy(buf, DATUMP, aux), buf += aux, 0) : 0))

	size_t aux, n = 0, i = 0;
	char *buf = buffer;

	if (buffer)  i = marshal_settings(NULL, settings);
	MARSHAL(sizeof(i), &i);

	MARSHAL(sizeof(*settings), settings);
	if (settings->hookpath)      MARSHAL(strlen(settings->hookpath) + 1, settings->hookpath);
	if (settings->monitors_arg)  MARSHAL(settings->monitors_n, settings->monitors_arg);
	for (i = 0; i < settings->monitors_n; i++)
		MARSHAL(strlen(settings->monitors_id[i]) + 1, settings->monitors_id[i]);

	return n;
}


/**
 * 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)
{
#define UNMARSHAL(N, DATUMP)  (aux = (N), memcpy((DATUMP), buf, aux), buf += aux)

	size_t n, aux, i;
	struct settings s_, *s = NULL;
	char *buf = buffer;

	UNMARSHAL(sizeof(n), &n);
	if (!(s = *settings = malloc(n - sizeof(n))))  return 0;
	s->monitors_id = NULL, s->monitors_arg = NULL;

	UNMARSHAL(sizeof(s_), &s_);
	if (s_.monitors_n) {
		*s = s_;
		xmalloc(&(s->monitors_id),  s_.monitors_n);
		xmalloc(&(s->monitors_arg), s_.monitors_n);
	}

	buf = strchr(s->hookpath = buf, '\0') + 1;

	UNMARSHAL(s_.monitors_n, s->monitors_arg);
	for (i = 0; i < s_.monitors_n; i++)
		UNMARSHAL(strlen(buf + 1), s->monitors_id[i]);

	return n;

fail:
	CLEANUP(free(s->monitors_id), free(s->monitors_arg), free(s), *settings = NULL);
	return 0;
}