-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfader.c
54 lines (43 loc) · 835 Bytes
/
fader.c
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
#include <stdlib.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <sys/un.h>
#include <unistd.h>
#include "ipc.h"
void
usage(const char * argv0) {
fputs("fader cmd\n", stderr);
exit(1);
}
int
main(int argc, char * argv[]) {
struct ipc ipc;
enum fader_type type = FADER_SET;
int value;
char * argv0 = *argv; argv++; argc--;
if (argc < 1) {
usage(argv0);
}
const char * cmd = *argv; argv++; argc--;
char * end;
value = strtol(cmd, &end, 0);
if (cmd[0] == '+' || cmd[0] == '-') {
type = FADER_INC;
if (*end == '%') {
type = FADER_INC_PERC;
}
} else if (*end == '%') {
type = FADER_SET_PERC;
}
struct msg msg = {
.type = type,
.value = value,
};
ipc_connect(&ipc);
ipc_msg_send(&ipc, &msg);
ipc_close(&ipc);
return 0;
}