Blame


1 3baa2617 2022-02-16 op /*
2 3baa2617 2022-02-16 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 3baa2617 2022-02-16 op *
4 3baa2617 2022-02-16 op * Permission to use, copy, modify, and distribute this software for any
5 3baa2617 2022-02-16 op * purpose with or without fee is hereby granted, provided that the above
6 3baa2617 2022-02-16 op * copyright notice and this permission notice appear in all copies.
7 3baa2617 2022-02-16 op *
8 3baa2617 2022-02-16 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 3baa2617 2022-02-16 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 3baa2617 2022-02-16 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 3baa2617 2022-02-16 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 3baa2617 2022-02-16 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 3baa2617 2022-02-16 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 3baa2617 2022-02-16 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 3baa2617 2022-02-16 op */
16 3baa2617 2022-02-16 op
17 3baa2617 2022-02-16 op #include <sys/types.h>
18 3baa2617 2022-02-16 op #include <sys/socket.h>
19 3baa2617 2022-02-16 op #include <sys/queue.h>
20 3baa2617 2022-02-16 op #include <sys/uio.h>
21 3baa2617 2022-02-16 op #include <sys/un.h>
22 3baa2617 2022-02-16 op
23 3baa2617 2022-02-16 op #include <errno.h>
24 3baa2617 2022-02-16 op #include <event.h>
25 3baa2617 2022-02-16 op #include <limits.h>
26 3baa2617 2022-02-16 op #include <sndio.h>
27 3baa2617 2022-02-16 op #include <stdio.h>
28 3baa2617 2022-02-16 op #include <stdlib.h>
29 3baa2617 2022-02-16 op #include <stdint.h>
30 3baa2617 2022-02-16 op #include <string.h>
31 3baa2617 2022-02-16 op #include <syslog.h>
32 3baa2617 2022-02-16 op #include <unistd.h>
33 3baa2617 2022-02-16 op #include <imsg.h>
34 3baa2617 2022-02-16 op
35 3baa2617 2022-02-16 op #include "amused.h"
36 3baa2617 2022-02-16 op #include "log.h"
37 bb3f279f 2022-02-16 op #include "playlist.h"
38 3baa2617 2022-02-16 op #include "xmalloc.h"
39 3baa2617 2022-02-16 op
40 3baa2617 2022-02-16 op static struct imsgbuf *ibuf;
41 3baa2617 2022-02-16 op
42 3baa2617 2022-02-16 op int ctl_noarg(struct parse_result *, int, char **);
43 3baa2617 2022-02-16 op int ctl_add(struct parse_result *, int, char **);
44 8e916714 2022-02-17 op int ctl_show(struct parse_result *, int, char **);
45 14be015f 2022-02-17 op int ctl_load(struct parse_result *, int, char **);
46 a913de21 2022-02-17 op int ctl_jump(struct parse_result *, int, char **);
47 310ef57c 2022-02-19 op int ctl_repeat(struct parse_result *, int, char **);
48 3baa2617 2022-02-16 op
49 3baa2617 2022-02-16 op struct ctl_command ctl_commands[] = {
50 3baa2617 2022-02-16 op { "play", PLAY, ctl_noarg, "" },
51 3baa2617 2022-02-16 op { "pause", PAUSE, ctl_noarg, "" },
52 3baa2617 2022-02-16 op { "toggle", TOGGLE, ctl_noarg, "" },
53 3baa2617 2022-02-16 op { "stop", STOP, ctl_noarg, "" },
54 3baa2617 2022-02-16 op { "restart", RESTART, ctl_noarg, "" },
55 3baa2617 2022-02-16 op { "add", ADD, ctl_add, "files...", 1 },
56 3baa2617 2022-02-16 op { "flush", FLUSH, ctl_noarg, "" },
57 714abf92 2022-02-19 op { "show", SHOW, ctl_show, "[-p]" },
58 bb3f279f 2022-02-16 op { "status", STATUS, ctl_noarg, "" },
59 af27e631 2022-02-17 op { "next", NEXT, ctl_noarg, "" },
60 af27e631 2022-02-17 op { "prev", PREV, ctl_noarg, "" },
61 14be015f 2022-02-17 op { "load", LOAD, ctl_load, "[file]", 1 },
62 a913de21 2022-02-17 op { "jump", JUMP, ctl_jump, "pattern" },
63 310ef57c 2022-02-19 op { "repeat", REPEAT, ctl_repeat, "one|all on|off" },
64 3baa2617 2022-02-16 op { NULL },
65 3baa2617 2022-02-16 op };
66 3baa2617 2022-02-16 op
67 3baa2617 2022-02-16 op __dead void
68 3baa2617 2022-02-16 op usage(void)
69 3baa2617 2022-02-16 op {
70 3baa2617 2022-02-16 op fprintf(stderr, "usage: %s [-dv] [-s socket]\n", getprogname());
71 3baa2617 2022-02-16 op fprintf(stderr, "%s version %s\n", getprogname(), AMUSED_VERSION);
72 3baa2617 2022-02-16 op exit(1);
73 3baa2617 2022-02-16 op }
74 3baa2617 2022-02-16 op
75 3baa2617 2022-02-16 op static __dead void
76 3baa2617 2022-02-16 op ctl_usage(struct ctl_command *ctl)
77 3baa2617 2022-02-16 op {
78 3baa2617 2022-02-16 op fprintf(stderr, "usage: %s [-v] [-s socket] %s %s\n", getprogname(),
79 3baa2617 2022-02-16 op ctl->name, ctl->usage);
80 3baa2617 2022-02-16 op exit(1);
81 3baa2617 2022-02-16 op }
82 3baa2617 2022-02-16 op
83 3baa2617 2022-02-16 op static int
84 3baa2617 2022-02-16 op parse(int argc, char **argv)
85 3baa2617 2022-02-16 op {
86 3baa2617 2022-02-16 op struct ctl_command *ctl = NULL;
87 3baa2617 2022-02-16 op struct parse_result res;
88 3baa2617 2022-02-16 op int i, status;
89 3baa2617 2022-02-16 op
90 3baa2617 2022-02-16 op memset(&res, 0, sizeof(res));
91 3baa2617 2022-02-16 op
92 3baa2617 2022-02-16 op for (i = 0; ctl_commands[i].name != NULL; ++i) {
93 3baa2617 2022-02-16 op if (strncmp(ctl_commands[i].name, argv[0], strlen(argv[0]))
94 3baa2617 2022-02-16 op == 0) {
95 3baa2617 2022-02-16 op if (ctl != NULL) {
96 3baa2617 2022-02-16 op fprintf(stderr,
97 3baa2617 2022-02-16 op "ambiguous argument: %s\n", argv[0]);
98 3baa2617 2022-02-16 op usage();
99 3baa2617 2022-02-16 op }
100 3baa2617 2022-02-16 op ctl = &ctl_commands[i];
101 3baa2617 2022-02-16 op }
102 3baa2617 2022-02-16 op }
103 3baa2617 2022-02-16 op
104 3baa2617 2022-02-16 op if (ctl == NULL) {
105 3baa2617 2022-02-16 op fprintf(stderr, "unknown argument: %s\n", argv[0]);
106 3baa2617 2022-02-16 op usage();
107 3baa2617 2022-02-16 op }
108 3baa2617 2022-02-16 op
109 3baa2617 2022-02-16 op res.action = ctl->action;
110 3baa2617 2022-02-16 op res.ctl = ctl;
111 3baa2617 2022-02-16 op
112 3baa2617 2022-02-16 op if (!ctl->has_pledge) {
113 3baa2617 2022-02-16 op /* pledge(2) default if command doesn't have its own */
114 3baa2617 2022-02-16 op if (pledge("stdio", NULL) == -1)
115 3baa2617 2022-02-16 op fatal("pledge");
116 3baa2617 2022-02-16 op }
117 3baa2617 2022-02-16 op
118 3baa2617 2022-02-16 op status = ctl->main(&res, argc, argv);
119 3baa2617 2022-02-16 op close(ibuf->fd);
120 3baa2617 2022-02-16 op free(ibuf);
121 3baa2617 2022-02-16 op return status;
122 3baa2617 2022-02-16 op }
123 3baa2617 2022-02-16 op
124 3baa2617 2022-02-16 op static int
125 3baa2617 2022-02-16 op enqueue_tracks(char **files)
126 3baa2617 2022-02-16 op {
127 3baa2617 2022-02-16 op char res[PATH_MAX];
128 3baa2617 2022-02-16 op int enq = 0;
129 3baa2617 2022-02-16 op
130 3baa2617 2022-02-16 op for (; *files != NULL; ++files) {
131 3baa2617 2022-02-16 op memset(&res, 0, sizeof(res));
132 3baa2617 2022-02-16 op if (realpath(*files, res) == NULL) {
133 3baa2617 2022-02-16 op log_warn("realpath %s", *files);
134 3baa2617 2022-02-16 op continue;
135 3baa2617 2022-02-16 op }
136 3baa2617 2022-02-16 op
137 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_ADD, 0, 0, -1,
138 3baa2617 2022-02-16 op res, sizeof(res));
139 3baa2617 2022-02-16 op enq++;
140 3baa2617 2022-02-16 op }
141 3baa2617 2022-02-16 op
142 3baa2617 2022-02-16 op return enq == 0;
143 a913de21 2022-02-17 op }
144 a913de21 2022-02-17 op
145 a913de21 2022-02-17 op static int
146 a913de21 2022-02-17 op jump_req(const char *arg)
147 a913de21 2022-02-17 op {
148 a913de21 2022-02-17 op char path[PATH_MAX];
149 a913de21 2022-02-17 op
150 a913de21 2022-02-17 op memset(path, 0, sizeof(path));
151 a913de21 2022-02-17 op strlcpy(path, arg, sizeof(path));
152 a913de21 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_JUMP, 0, 0, -1, path, sizeof(path));
153 a913de21 2022-02-17 op return 0;
154 3baa2617 2022-02-16 op }
155 3baa2617 2022-02-16 op
156 8ff9231f 2022-02-16 op static void
157 8ff9231f 2022-02-16 op print_error_message(const char *prfx, struct imsg *imsg)
158 8ff9231f 2022-02-16 op {
159 8ff9231f 2022-02-16 op size_t datalen;
160 8ff9231f 2022-02-16 op char *msg;
161 8ff9231f 2022-02-16 op
162 8ff9231f 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
163 8ff9231f 2022-02-16 op if ((msg = calloc(1, datalen)) == NULL)
164 8ff9231f 2022-02-16 op fatal("calloc %zu", datalen);
165 8ff9231f 2022-02-16 op memcpy(msg, imsg->data, datalen);
166 8ff9231f 2022-02-16 op if (datalen == 0 || msg[datalen-1] != '\0')
167 8ff9231f 2022-02-16 op fatalx("malformed error message");
168 8ff9231f 2022-02-16 op
169 8ff9231f 2022-02-16 op log_warnx("%s: %s", prfx, msg);
170 8ff9231f 2022-02-16 op free(msg);
171 8ff9231f 2022-02-16 op }
172 8ff9231f 2022-02-16 op
173 3baa2617 2022-02-16 op static int
174 8ff9231f 2022-02-16 op show_add(struct imsg *imsg, int *ret, char ***files)
175 8ff9231f 2022-02-16 op {
176 8ff9231f 2022-02-16 op if (**files == NULL) {
177 8ff9231f 2022-02-16 op log_warnx("received more replies than file sent");
178 8ff9231f 2022-02-16 op *ret = 1;
179 8ff9231f 2022-02-16 op return 1;
180 8ff9231f 2022-02-16 op }
181 8ff9231f 2022-02-16 op
182 8ff9231f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR)
183 8ff9231f 2022-02-16 op print_error_message(**files, imsg);
184 8ff9231f 2022-02-16 op else if (imsg->hdr.type == IMSG_CTL_ADD)
185 8ff9231f 2022-02-16 op log_debug("enqueued %s", **files);
186 8ff9231f 2022-02-16 op else
187 8ff9231f 2022-02-16 op fatalx("got invalid message %d", imsg->hdr.type);
188 8ff9231f 2022-02-16 op
189 8ff9231f 2022-02-16 op (*files)++;
190 8ff9231f 2022-02-16 op return (**files) == NULL;
191 8ff9231f 2022-02-16 op }
192 8ff9231f 2022-02-16 op
193 8ff9231f 2022-02-16 op static int
194 8e916714 2022-02-17 op show_complete(struct parse_result *res, struct imsg *imsg, int *ret)
195 3baa2617 2022-02-16 op {
196 63dd8e70 2022-02-17 op struct player_status s;
197 3baa2617 2022-02-16 op size_t datalen;
198 3baa2617 2022-02-16 op
199 8ff9231f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR) {
200 8ff9231f 2022-02-16 op print_error_message("show failed", imsg);
201 8ff9231f 2022-02-16 op *ret = 1;
202 8ff9231f 2022-02-16 op return 1;
203 8ff9231f 2022-02-16 op }
204 8ff9231f 2022-02-16 op
205 3baa2617 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
206 3baa2617 2022-02-16 op if (datalen == 0)
207 3baa2617 2022-02-16 op return 1;
208 3baa2617 2022-02-16 op
209 63dd8e70 2022-02-17 op if (datalen != sizeof(s))
210 3baa2617 2022-02-16 op fatalx("%s: data size mismatch", __func__);
211 63dd8e70 2022-02-17 op memcpy(&s, imsg->data, sizeof(s));
212 63dd8e70 2022-02-17 op if (s.path[sizeof(s.path)-1] != '\0')
213 3baa2617 2022-02-16 op fatalx("%s: data corrupted?", __func__);
214 3baa2617 2022-02-16 op
215 8e916714 2022-02-17 op if (res->pretty)
216 8e916714 2022-02-17 op printf("%c ", s.status == STATE_PLAYING ? '>' : ' ');
217 8e916714 2022-02-17 op printf("%s\n", s.path);
218 3baa2617 2022-02-16 op return 0;
219 bb3f279f 2022-02-16 op }
220 bb3f279f 2022-02-16 op
221 bb3f279f 2022-02-16 op static int
222 bb3f279f 2022-02-16 op show_status(struct imsg *imsg, int *ret)
223 bb3f279f 2022-02-16 op {
224 bb3f279f 2022-02-16 op struct player_status s;
225 bb3f279f 2022-02-16 op size_t datalen;
226 bb3f279f 2022-02-16 op
227 bb3f279f 2022-02-16 op if (imsg->hdr.type == IMSG_CTL_ERR) {
228 bb3f279f 2022-02-16 op print_error_message("show failed", imsg);
229 bb3f279f 2022-02-16 op *ret = 1;
230 bb3f279f 2022-02-16 op return 1;
231 bb3f279f 2022-02-16 op }
232 bb3f279f 2022-02-16 op
233 bb3f279f 2022-02-16 op if (imsg->hdr.type != IMSG_CTL_STATUS)
234 bb3f279f 2022-02-16 op fatalx("%s: got wrong reply", __func__);
235 bb3f279f 2022-02-16 op
236 bb3f279f 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
237 bb3f279f 2022-02-16 op if (datalen != sizeof(s))
238 bb3f279f 2022-02-16 op fatalx("%s: data size mismatch", __func__);
239 bb3f279f 2022-02-16 op memcpy(&s, imsg->data, sizeof(s));
240 bb3f279f 2022-02-16 op if (s.path[sizeof(s.path)-1] != '\0')
241 bb3f279f 2022-02-16 op fatalx("%s: data corrupted?", __func__);
242 bb3f279f 2022-02-16 op
243 bb3f279f 2022-02-16 op switch (s.status) {
244 bb3f279f 2022-02-16 op case STATE_STOPPED:
245 bb3f279f 2022-02-16 op printf("stopped ");
246 bb3f279f 2022-02-16 op break;
247 bb3f279f 2022-02-16 op case STATE_PLAYING:
248 bb3f279f 2022-02-16 op printf("playing ");
249 bb3f279f 2022-02-16 op break;
250 bb3f279f 2022-02-16 op case STATE_PAUSED:
251 bb3f279f 2022-02-16 op printf("paused ");
252 bb3f279f 2022-02-16 op break;
253 bb3f279f 2022-02-16 op default:
254 bb3f279f 2022-02-16 op printf("unknown ");
255 bb3f279f 2022-02-16 op break;
256 bb3f279f 2022-02-16 op }
257 bb3f279f 2022-02-16 op
258 bb3f279f 2022-02-16 op printf("%s\n", s.path);
259 bb3f279f 2022-02-16 op return 1;
260 7a427ecd 2022-02-17 op }
261 7a427ecd 2022-02-17 op
262 7a427ecd 2022-02-17 op static int
263 7a427ecd 2022-02-17 op show_load(struct parse_result *res, struct imsg *imsg, int *ret)
264 7a427ecd 2022-02-17 op {
265 ec1fb0c7 2022-02-17 op FILE *f;
266 7a427ecd 2022-02-17 op const char *file;
267 7a427ecd 2022-02-17 op char *line = NULL;
268 7a427ecd 2022-02-17 op char path[PATH_MAX];
269 7a427ecd 2022-02-17 op size_t linesize = 0;
270 7a427ecd 2022-02-17 op ssize_t linelen;
271 7a427ecd 2022-02-17 op int any = 0;
272 7a427ecd 2022-02-17 op
273 7a427ecd 2022-02-17 op if (imsg->hdr.type == IMSG_CTL_ERR) {
274 7a427ecd 2022-02-17 op print_error_message("load failed", imsg);
275 7a427ecd 2022-02-17 op *ret = 1;
276 7a427ecd 2022-02-17 op return 1;
277 7a427ecd 2022-02-17 op }
278 7a427ecd 2022-02-17 op
279 7a427ecd 2022-02-17 op if (imsg->hdr.type == IMSG_CTL_ADD)
280 7a427ecd 2022-02-17 op return 0;
281 7a427ecd 2022-02-17 op
282 7a427ecd 2022-02-17 op if (imsg->hdr.type == IMSG_CTL_COMMIT)
283 7a427ecd 2022-02-17 op return 1;
284 7a427ecd 2022-02-17 op
285 7a427ecd 2022-02-17 op if (imsg->hdr.type != IMSG_CTL_BEGIN)
286 7a427ecd 2022-02-17 op fatalx("got unexpected message %d", imsg->hdr.type);
287 7a427ecd 2022-02-17 op
288 ec1fb0c7 2022-02-17 op if (res->file == NULL)
289 ec1fb0c7 2022-02-17 op f = stdin;
290 ec1fb0c7 2022-02-17 op else if ((f = fopen(res->file, "r")) == NULL) {
291 ec1fb0c7 2022-02-17 op log_warn("can't open %s", res->file);
292 ec1fb0c7 2022-02-17 op *ret = 1;
293 ec1fb0c7 2022-02-17 op return 1;
294 ec1fb0c7 2022-02-17 op }
295 ec1fb0c7 2022-02-17 op
296 ec1fb0c7 2022-02-17 op while ((linelen = getline(&line, &linesize, f)) != -1) {
297 7a427ecd 2022-02-17 op if (linelen == 0)
298 7a427ecd 2022-02-17 op continue;
299 7a427ecd 2022-02-17 op line[linelen-1] = '\0';
300 7a427ecd 2022-02-17 op file = line;
301 7a427ecd 2022-02-17 op if (file[0] == '>' && file[1] == ' ')
302 7a427ecd 2022-02-17 op file += 2;
303 7a427ecd 2022-02-17 op if (file[0] == ' ' && file[1] == ' ')
304 7a427ecd 2022-02-17 op file += 2;
305 7a427ecd 2022-02-17 op
306 7a427ecd 2022-02-17 op memset(&path, 0, sizeof(path));
307 7a427ecd 2022-02-17 op if (realpath(file, path) == NULL) {
308 7a427ecd 2022-02-17 op log_warn("realpath %s", file);
309 7a427ecd 2022-02-17 op continue;
310 7a427ecd 2022-02-17 op }
311 7a427ecd 2022-02-17 op
312 7a427ecd 2022-02-17 op any++;
313 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_ADD, 0, 0, -1,
314 7a427ecd 2022-02-17 op path, sizeof(path));
315 7a427ecd 2022-02-17 op }
316 7a427ecd 2022-02-17 op
317 7a427ecd 2022-02-17 op free(line);
318 ec1fb0c7 2022-02-17 op if (ferror(f))
319 7a427ecd 2022-02-17 op fatal("getline");
320 ec1fb0c7 2022-02-17 op fclose(f);
321 7a427ecd 2022-02-17 op
322 7a427ecd 2022-02-17 op if (!any) {
323 7a427ecd 2022-02-17 op *ret = 1;
324 7a427ecd 2022-02-17 op return 1;
325 7a427ecd 2022-02-17 op }
326 7a427ecd 2022-02-17 op
327 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_COMMIT, 0, 0, -1,
328 7a427ecd 2022-02-17 op NULL, 0);
329 7a427ecd 2022-02-17 op imsg_flush(ibuf);
330 7a427ecd 2022-02-17 op return 0;
331 3baa2617 2022-02-16 op }
332 3baa2617 2022-02-16 op
333 3baa2617 2022-02-16 op static int
334 3baa2617 2022-02-16 op ctlaction(struct parse_result *res)
335 3baa2617 2022-02-16 op {
336 3baa2617 2022-02-16 op struct imsg imsg;
337 3baa2617 2022-02-16 op ssize_t n;
338 3baa2617 2022-02-16 op int ret = 0, done = 1;
339 8ff9231f 2022-02-16 op char **files;
340 3baa2617 2022-02-16 op
341 3baa2617 2022-02-16 op switch (res->action) {
342 3baa2617 2022-02-16 op case PLAY:
343 146307bd 2022-02-17 op done = 0;
344 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_PLAY, 0, 0, -1, NULL, 0);
345 146307bd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
346 3baa2617 2022-02-16 op break;
347 3baa2617 2022-02-16 op case PAUSE:
348 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_PAUSE, 0, 0, -1, NULL, 0);
349 3baa2617 2022-02-16 op break;
350 3baa2617 2022-02-16 op case TOGGLE:
351 146307bd 2022-02-17 op done = 0;
352 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_TOGGLE_PLAY, 0, 0, -1, NULL, 0);
353 146307bd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
354 3baa2617 2022-02-16 op break;
355 3baa2617 2022-02-16 op case STOP:
356 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_STOP, 0, 0, -1, NULL, 0);
357 3baa2617 2022-02-16 op break;
358 3baa2617 2022-02-16 op case RESTART:
359 146307bd 2022-02-17 op done = 0;
360 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_RESTART, 0, 0, -1, NULL, 0);
361 146307bd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
362 3baa2617 2022-02-16 op break;
363 3baa2617 2022-02-16 op case ADD:
364 8ff9231f 2022-02-16 op done = 0;
365 8ff9231f 2022-02-16 op files = res->files;
366 3baa2617 2022-02-16 op ret = enqueue_tracks(res->files);
367 3baa2617 2022-02-16 op break;
368 3baa2617 2022-02-16 op case FLUSH:
369 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_FLUSH, 0, 0, -1, NULL, 0);
370 3baa2617 2022-02-16 op break;
371 3baa2617 2022-02-16 op case SHOW:
372 3baa2617 2022-02-16 op done = 0;
373 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_SHOW, 0, 0, -1, NULL, 0);
374 3baa2617 2022-02-16 op break;
375 bb3f279f 2022-02-16 op case STATUS:
376 bb3f279f 2022-02-16 op done = 0;
377 bb3f279f 2022-02-16 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
378 af27e631 2022-02-17 op break;
379 af27e631 2022-02-17 op case NEXT:
380 146307bd 2022-02-17 op done = 0;
381 af27e631 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_NEXT, 0, 0, -1, NULL, 0);
382 146307bd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
383 bb3f279f 2022-02-16 op break;
384 af27e631 2022-02-17 op case PREV:
385 146307bd 2022-02-17 op done = 0;
386 af27e631 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_PREV, 0, 0, -1, NULL, 0);
387 146307bd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_STATUS, 0, 0, -1, NULL, 0);
388 af27e631 2022-02-17 op break;
389 14be015f 2022-02-17 op case LOAD:
390 7a427ecd 2022-02-17 op done = 0;
391 7a427ecd 2022-02-17 op imsg_compose(ibuf, IMSG_CTL_BEGIN, 0, 0, -1, NULL, 0);
392 a913de21 2022-02-17 op break;
393 a913de21 2022-02-17 op case JUMP:
394 a913de21 2022-02-17 op done = 0;
395 a913de21 2022-02-17 op ret = jump_req(res->file);
396 7a427ecd 2022-02-17 op break;
397 310ef57c 2022-02-19 op case REPEAT:
398 310ef57c 2022-02-19 op imsg_compose(ibuf, IMSG_CTL_REPEAT, 0, 0, -1,
399 310ef57c 2022-02-19 op &res->rep, sizeof(res->rep));
400 310ef57c 2022-02-19 op break;
401 3baa2617 2022-02-16 op case NONE:
402 3baa2617 2022-02-16 op /* action not expected */
403 3baa2617 2022-02-16 op fatalx("invalid action %u", res->action);
404 3baa2617 2022-02-16 op break;
405 3baa2617 2022-02-16 op }
406 3baa2617 2022-02-16 op
407 3baa2617 2022-02-16 op if (ret != 0)
408 3baa2617 2022-02-16 op goto end;
409 3baa2617 2022-02-16 op
410 3baa2617 2022-02-16 op imsg_flush(ibuf);
411 3baa2617 2022-02-16 op
412 3baa2617 2022-02-16 op while (!done) {
413 3baa2617 2022-02-16 op if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
414 3baa2617 2022-02-16 op fatalx("imsg_read error");
415 3baa2617 2022-02-16 op if (n == 0)
416 3baa2617 2022-02-16 op fatalx("pipe closed");
417 3baa2617 2022-02-16 op
418 3baa2617 2022-02-16 op while (!done) {
419 3baa2617 2022-02-16 op if ((n = imsg_get(ibuf, &imsg)) == -1)
420 3baa2617 2022-02-16 op fatalx("imsg_get error");
421 3baa2617 2022-02-16 op if (n == 0)
422 3baa2617 2022-02-16 op break;
423 3baa2617 2022-02-16 op
424 3baa2617 2022-02-16 op switch (res->action) {
425 8ff9231f 2022-02-16 op case ADD:
426 8ff9231f 2022-02-16 op done = show_add(&imsg, &ret, &files);
427 8ff9231f 2022-02-16 op break;
428 3baa2617 2022-02-16 op case SHOW:
429 8e916714 2022-02-17 op done = show_complete(res, &imsg, &ret);
430 3baa2617 2022-02-16 op break;
431 146307bd 2022-02-17 op case PLAY:
432 146307bd 2022-02-17 op case TOGGLE:
433 146307bd 2022-02-17 op case RESTART:
434 bb3f279f 2022-02-16 op case STATUS:
435 146307bd 2022-02-17 op case NEXT:
436 146307bd 2022-02-17 op case PREV:
437 a913de21 2022-02-17 op case JUMP:
438 bb3f279f 2022-02-16 op done = show_status(&imsg, &ret);
439 bb3f279f 2022-02-16 op break;
440 7a427ecd 2022-02-17 op case LOAD:
441 7a427ecd 2022-02-17 op done = show_load(res, &imsg, &ret);
442 7a427ecd 2022-02-17 op break;
443 3baa2617 2022-02-16 op default:
444 3baa2617 2022-02-16 op done = 1;
445 3baa2617 2022-02-16 op break;
446 3baa2617 2022-02-16 op }
447 3baa2617 2022-02-16 op
448 3baa2617 2022-02-16 op imsg_free(&imsg);
449 3baa2617 2022-02-16 op }
450 3baa2617 2022-02-16 op }
451 3baa2617 2022-02-16 op
452 3baa2617 2022-02-16 op end:
453 3baa2617 2022-02-16 op return ret;
454 3baa2617 2022-02-16 op }
455 3baa2617 2022-02-16 op
456 3baa2617 2022-02-16 op int
457 3baa2617 2022-02-16 op ctl_noarg(struct parse_result *res, int argc, char **argv)
458 3baa2617 2022-02-16 op {
459 3baa2617 2022-02-16 op if (argc != 1)
460 3baa2617 2022-02-16 op ctl_usage(res->ctl);
461 3baa2617 2022-02-16 op return ctlaction(res);
462 3baa2617 2022-02-16 op }
463 3baa2617 2022-02-16 op
464 3baa2617 2022-02-16 op int
465 3baa2617 2022-02-16 op ctl_add(struct parse_result *res, int argc, char **argv)
466 3baa2617 2022-02-16 op {
467 3baa2617 2022-02-16 op if (argc < 2)
468 3baa2617 2022-02-16 op ctl_usage(res->ctl);
469 3baa2617 2022-02-16 op res->files = argv+1;
470 14be015f 2022-02-17 op
471 14be015f 2022-02-17 op if (pledge("stdio rpath", NULL) == -1)
472 14be015f 2022-02-17 op fatal("pledge");
473 14be015f 2022-02-17 op
474 3baa2617 2022-02-16 op return ctlaction(res);
475 3baa2617 2022-02-16 op }
476 14be015f 2022-02-17 op
477 14be015f 2022-02-17 op int
478 8e916714 2022-02-17 op ctl_show(struct parse_result *res, int argc, char **argv)
479 8e916714 2022-02-17 op {
480 8e916714 2022-02-17 op int ch;
481 8e916714 2022-02-17 op
482 8e916714 2022-02-17 op while ((ch = getopt(argc, argv, "p")) != -1) {
483 8e916714 2022-02-17 op switch (ch) {
484 8e916714 2022-02-17 op case 'p':
485 8e916714 2022-02-17 op res->pretty = 1;
486 8e916714 2022-02-17 op break;
487 8e916714 2022-02-17 op default:
488 8e916714 2022-02-17 op ctl_usage(res->ctl);
489 8e916714 2022-02-17 op }
490 8e916714 2022-02-17 op }
491 8e916714 2022-02-17 op
492 8e916714 2022-02-17 op return ctlaction(res);
493 8e916714 2022-02-17 op }
494 8e916714 2022-02-17 op
495 8e916714 2022-02-17 op int
496 14be015f 2022-02-17 op ctl_load(struct parse_result *res, int argc, char **argv)
497 14be015f 2022-02-17 op {
498 14be015f 2022-02-17 op if (argc < 2)
499 ec1fb0c7 2022-02-17 op res->file = NULL;
500 ec1fb0c7 2022-02-17 op else if (argc == 2)
501 ec1fb0c7 2022-02-17 op res->file = argv[1];
502 ec1fb0c7 2022-02-17 op else
503 14be015f 2022-02-17 op ctl_usage(res->ctl);
504 14be015f 2022-02-17 op
505 14be015f 2022-02-17 op if (pledge("stdio rpath", NULL) == -1)
506 14be015f 2022-02-17 op fatal("pledge");
507 14be015f 2022-02-17 op
508 7a427ecd 2022-02-17 op return ctlaction(res);
509 14be015f 2022-02-17 op }
510 14be015f 2022-02-17 op
511 a913de21 2022-02-17 op int
512 a913de21 2022-02-17 op ctl_jump(struct parse_result *res, int argc, char **argv)
513 a913de21 2022-02-17 op {
514 a913de21 2022-02-17 op int ch;
515 a913de21 2022-02-17 op
516 a913de21 2022-02-17 op while ((ch = getopt(argc, argv, "")) != -1)
517 a913de21 2022-02-17 op ctl_usage(res->ctl);
518 a913de21 2022-02-17 op argc -= optind;
519 a913de21 2022-02-17 op argv += optind;
520 a913de21 2022-02-17 op
521 a913de21 2022-02-17 op if (argc != 1)
522 a913de21 2022-02-17 op ctl_usage(res->ctl);
523 a913de21 2022-02-17 op
524 a913de21 2022-02-17 op res->file = argv[0];
525 310ef57c 2022-02-19 op return ctlaction(res);
526 310ef57c 2022-02-19 op }
527 310ef57c 2022-02-19 op
528 310ef57c 2022-02-19 op int
529 310ef57c 2022-02-19 op ctl_repeat(struct parse_result *res, int argc, char **argv)
530 310ef57c 2022-02-19 op {
531 310ef57c 2022-02-19 op int ch, b;
532 310ef57c 2022-02-19 op
533 310ef57c 2022-02-19 op while ((ch = getopt(argc, argv, "")) != -1)
534 310ef57c 2022-02-19 op ctl_usage(res->ctl);
535 310ef57c 2022-02-19 op argc -= optind;
536 310ef57c 2022-02-19 op argv += optind;
537 310ef57c 2022-02-19 op
538 310ef57c 2022-02-19 op if (argc != 2)
539 310ef57c 2022-02-19 op ctl_usage(res->ctl);
540 310ef57c 2022-02-19 op
541 310ef57c 2022-02-19 op if (!strcmp(argv[1], "on"))
542 310ef57c 2022-02-19 op b = 1;
543 310ef57c 2022-02-19 op else if (!strcmp(argv[1], "off"))
544 310ef57c 2022-02-19 op b = 0;
545 310ef57c 2022-02-19 op else
546 310ef57c 2022-02-19 op ctl_usage(res->ctl);
547 310ef57c 2022-02-19 op
548 310ef57c 2022-02-19 op res->rep.repeat_one = -1;
549 310ef57c 2022-02-19 op res->rep.repeat_all = -1;
550 310ef57c 2022-02-19 op if (!strcmp(argv[0], "one"))
551 310ef57c 2022-02-19 op res->rep.repeat_one = b;
552 310ef57c 2022-02-19 op else if (!strcmp(argv[0], "all"))
553 310ef57c 2022-02-19 op res->rep.repeat_all = b;
554 310ef57c 2022-02-19 op else
555 310ef57c 2022-02-19 op ctl_usage(res->ctl);
556 310ef57c 2022-02-19 op
557 a913de21 2022-02-17 op return ctlaction(res);
558 a913de21 2022-02-17 op }
559 a913de21 2022-02-17 op
560 fea541a8 2022-02-16 op static int
561 fea541a8 2022-02-16 op sockconn(void)
562 3baa2617 2022-02-16 op {
563 fea541a8 2022-02-16 op struct sockaddr_un sun;
564 fea541a8 2022-02-16 op int sock, saved_errno;
565 3baa2617 2022-02-16 op
566 fea541a8 2022-02-16 op if ((sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
567 3baa2617 2022-02-16 op fatal("socket");
568 3baa2617 2022-02-16 op
569 3baa2617 2022-02-16 op memset(&sun, 0, sizeof(sun));
570 3baa2617 2022-02-16 op sun.sun_family = AF_UNIX;
571 3baa2617 2022-02-16 op strlcpy(sun.sun_path, csock, sizeof(sun.sun_path));
572 fea541a8 2022-02-16 op if (connect(sock, (struct sockaddr *)&sun, sizeof(sun)) == -1) {
573 fea541a8 2022-02-16 op saved_errno = errno;
574 fea541a8 2022-02-16 op close(sock);
575 fea541a8 2022-02-16 op errno = saved_errno;
576 fea541a8 2022-02-16 op return -1;
577 fea541a8 2022-02-16 op }
578 3baa2617 2022-02-16 op
579 fea541a8 2022-02-16 op return sock;
580 fea541a8 2022-02-16 op }
581 fea541a8 2022-02-16 op
582 fea541a8 2022-02-16 op __dead void
583 fea541a8 2022-02-16 op ctl(int argc, char **argv)
584 fea541a8 2022-02-16 op {
585 fea541a8 2022-02-16 op int ctl_sock, i = 0;
586 3baa2617 2022-02-16 op
587 fea541a8 2022-02-16 op log_init(1, LOG_DAEMON);
588 fea541a8 2022-02-16 op log_setverbose(verbose);
589 fea541a8 2022-02-16 op
590 fea541a8 2022-02-16 op do {
591 fea541a8 2022-02-16 op struct timespec ts = { 0, 50000000 }; /* 0.05 seconds */
592 fea541a8 2022-02-16 op
593 fea541a8 2022-02-16 op if ((ctl_sock = sockconn()) != -1)
594 fea541a8 2022-02-16 op break;
595 fea541a8 2022-02-16 op if (errno != ENOENT && errno != ECONNREFUSED)
596 fea541a8 2022-02-16 op fatal("connect %s", csock);
597 fea541a8 2022-02-16 op
598 fea541a8 2022-02-16 op if (i == 0)
599 fea541a8 2022-02-16 op spawn_daemon();
600 fea541a8 2022-02-16 op
601 fea541a8 2022-02-16 op nanosleep(&ts, NULL);
602 fea541a8 2022-02-16 op } while (++i < 20);
603 fea541a8 2022-02-16 op
604 fea541a8 2022-02-16 op if (ctl_sock == -1)
605 fea541a8 2022-02-16 op fatalx("failed to connect to the daemon");
606 fea541a8 2022-02-16 op
607 3baa2617 2022-02-16 op ibuf = xmalloc(sizeof(*ibuf));
608 3baa2617 2022-02-16 op imsg_init(ibuf, ctl_sock);
609 3baa2617 2022-02-16 op
610 3baa2617 2022-02-16 op optreset = 1;
611 3baa2617 2022-02-16 op optind = 1;
612 3baa2617 2022-02-16 op
613 3baa2617 2022-02-16 op exit(parse(argc, argv));
614 3baa2617 2022-02-16 op }