aboutsummaryrefslogtreecommitdiff
path: root/lux.c
blob: 60bba25bab7e9b309ceddf4941ea6df9733b12c0 (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
/*
 * BSD Zero Clause License
 * 
 * Copyright (c) 2022 Thomas Voss
 * 
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 * PERFORMANCE OF THIS SOFTWARE.
 */

#include <err.h>
#include <getopt.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>

#include <lux.h>

#define die(...) err(EXIT_FAILURE, __VA_ARGS__);
#define diex(...) errx(EXIT_FAILURE, __VA_ARGS__);

static int parseint(char *);
static double parsedouble(char *);
static void usage(char *);

int
main(int argc, char **argv)
{
	int br, max, opt;
	double pr;
	lux_t disp;
	const char *optstr = "d:D:gGi:I:ms:S:";
	static struct option longopts[] = {
		{"decrease",         required_argument, NULL, 'd'},
		{"decrease-percent", required_argument, NULL, 'D'},
		{"get",              no_argument,       NULL, 'g'},
		{"get-percent",      no_argument,       NULL, 'G'},
		{"increase",         required_argument, NULL, 'i'},
		{"increase-percent", required_argument, NULL, 'I'},
		{"max",              no_argument,       NULL, 'm'},
		{"set",              required_argument, NULL, 's'},
		{"set-percent",      required_argument, NULL, 'S'},
		{NULL,               0,                 NULL,  0 }
	};

	luxinit(&disp);
	if (argc == 1)
		goto Gflag;
	else while (true) {
		opt = getopt_long(argc, argv, optstr, longopts, NULL);
		if (opt == -1)
			break;

		switch (opt) {
		case 'm':
			if ((max = luxmax(&disp)) == -1)
				die("luxmax");
			printf("%d\n", max);
			break;
		case 'g':
			if ((br = luxget(&disp)) == -1)
				die("luxget");
			printf("%d\n", br);
			break;
		case 'G':
Gflag:
			if ((pr = luxgetp(&disp)) == -1)
				die("luxgetp");
			printf("%f\n", pr);
			break;
		case 'd':
		case 'i':
		case 's':
			br = parseint(optarg);
			if (opt == 'd')
				br = -br;
			if (opt != 's') {
				int tmp = luxget(&disp);
				if (tmp == -1)
					die("luxget");
				br += luxget(&disp);
			}
			if (br > (max = luxmax(&disp)))
				br = max;
			else if (br < 0)
				br = 0;
			if (luxset(&disp, br) == -1)
				die("luxset");
			break;
		case 'D':
		case 'I':
		case 'S':
			pr = parsedouble(optarg);
			if (opt == 'D')
				pr = -pr;
			if (opt != 'S') {
				double tmp = luxgetp(&disp);
				if (tmp == -1)
					die("luxgetp");
				pr += luxgetp(&disp);
			}
			if (pr > 100)
				pr = 100;
			else if (pr < 0)
				pr = 0;
			if (luxsetp(&disp, pr) == -1)
				die("luxset");
			break;
		default:
			usage(argv[0]);
		}
	}

	luxfree(&disp);
	return EXIT_SUCCESS;
}

int
parseint(char *s)
{
	char *endptr;
	long n = strtol(optarg, &endptr, 0);
	if (*s != '\0' && *endptr == '\0')
		return (int) n;
	diex("parseint: invalid integer '%s'", s);
}

double
parsedouble(char *s)
{
	char *endptr;
	double n = strtod(optarg, &endptr);
	if (*s != '\0' && *endptr == '\0')
		return n;
	diex("parsedouble: invalid double '%s'", s);
}

void
usage(char *s)
{
	fprintf(stderr, "Usage: %s [-gGm] [-dDiIsS val]\n", s);
	exit(EXIT_FAILURE);
}