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/queue.h>
19 3baa2617 2022-02-16 op #include <sys/socket.h>
20 3baa2617 2022-02-16 op #include <sys/uio.h>
21 3baa2617 2022-02-16 op #include <sys/wait.h>
22 3baa2617 2022-02-16 op
23 3baa2617 2022-02-16 op #include <event.h>
24 3baa2617 2022-02-16 op #include <errno.h>
25 3baa2617 2022-02-16 op #include <fcntl.h>
26 3baa2617 2022-02-16 op #include <limits.h>
27 3baa2617 2022-02-16 op #include <sndio.h>
28 3baa2617 2022-02-16 op #include <signal.h>
29 3baa2617 2022-02-16 op #include <stdio.h>
30 3baa2617 2022-02-16 op #include <stdlib.h>
31 3baa2617 2022-02-16 op #include <stdint.h>
32 3baa2617 2022-02-16 op #include <string.h>
33 3baa2617 2022-02-16 op #include <syslog.h>
34 3baa2617 2022-02-16 op #include <unistd.h>
35 3baa2617 2022-02-16 op #include <imsg.h>
36 3baa2617 2022-02-16 op
37 3baa2617 2022-02-16 op #include "amused.h"
38 3baa2617 2022-02-16 op #include "control.h"
39 3baa2617 2022-02-16 op #include "log.h"
40 3baa2617 2022-02-16 op #include "playlist.h"
41 3baa2617 2022-02-16 op #include "xmalloc.h"
42 3baa2617 2022-02-16 op
43 3baa2617 2022-02-16 op struct sio_hdl *hdl;
44 3baa2617 2022-02-16 op char *csock = NULL;
45 3baa2617 2022-02-16 op int debug;
46 3baa2617 2022-02-16 op int verbose;
47 3baa2617 2022-02-16 op struct imsgev *iev_player;
48 3baa2617 2022-02-16 op
49 3baa2617 2022-02-16 op const char *argv0;
50 3baa2617 2022-02-16 op pid_t player_pid;
51 3baa2617 2022-02-16 op struct event ev_sigint;
52 3baa2617 2022-02-16 op struct event ev_sigterm;
53 3baa2617 2022-02-16 op
54 3baa2617 2022-02-16 op enum amused_process {
55 3baa2617 2022-02-16 op PROC_MAIN,
56 3baa2617 2022-02-16 op PROC_PLAYER,
57 3baa2617 2022-02-16 op };
58 3baa2617 2022-02-16 op
59 3baa2617 2022-02-16 op __dead void
60 3baa2617 2022-02-16 op main_shutdown(void)
61 3baa2617 2022-02-16 op {
62 3baa2617 2022-02-16 op pid_t pid;
63 3baa2617 2022-02-16 op int status;
64 3baa2617 2022-02-16 op
65 3baa2617 2022-02-16 op /* close pipes. */
66 3baa2617 2022-02-16 op msgbuf_clear(&iev_player->ibuf.w);
67 3baa2617 2022-02-16 op close(iev_player->ibuf.fd);
68 3baa2617 2022-02-16 op free(iev_player);
69 3baa2617 2022-02-16 op
70 3baa2617 2022-02-16 op log_debug("waiting for children to terminate");
71 3baa2617 2022-02-16 op do {
72 3baa2617 2022-02-16 op pid = wait(&status);
73 3baa2617 2022-02-16 op if (pid == -1) {
74 3baa2617 2022-02-16 op if (errno != EINTR && errno != ECHILD)
75 3baa2617 2022-02-16 op fatal("wait");
76 3baa2617 2022-02-16 op } else if (WIFSIGNALED(status))
77 3baa2617 2022-02-16 op log_warnx("player terminated; signal %d",
78 3baa2617 2022-02-16 op WTERMSIG(status));
79 3baa2617 2022-02-16 op } while (pid != -1 || (pid == -1 && errno == EINTR));
80 3baa2617 2022-02-16 op
81 3baa2617 2022-02-16 op log_info("terminating");
82 3baa2617 2022-02-16 op exit(0);
83 3baa2617 2022-02-16 op }
84 3baa2617 2022-02-16 op
85 3baa2617 2022-02-16 op static void
86 3baa2617 2022-02-16 op main_sig_handler(int sig, short event, void *arg)
87 3baa2617 2022-02-16 op {
88 3baa2617 2022-02-16 op /*
89 3baa2617 2022-02-16 op * Normal signal handler rules don't apply because libevent
90 3baa2617 2022-02-16 op * decouples for us.
91 3baa2617 2022-02-16 op */
92 3baa2617 2022-02-16 op
93 3baa2617 2022-02-16 op switch (sig) {
94 3baa2617 2022-02-16 op case SIGTERM:
95 3baa2617 2022-02-16 op case SIGINT:
96 3baa2617 2022-02-16 op main_shutdown();
97 3baa2617 2022-02-16 op break;
98 3baa2617 2022-02-16 op default:
99 3baa2617 2022-02-16 op fatalx("unexpected signal %d", sig);
100 3baa2617 2022-02-16 op }
101 3baa2617 2022-02-16 op }
102 3baa2617 2022-02-16 op
103 3baa2617 2022-02-16 op static void
104 3baa2617 2022-02-16 op main_dispatch_player(int sig, short event, void *d)
105 3baa2617 2022-02-16 op {
106 3baa2617 2022-02-16 op struct imsgev *iev = d;
107 3baa2617 2022-02-16 op struct imsgbuf *ibuf = &iev->ibuf;
108 3baa2617 2022-02-16 op struct imsg imsg;
109 3baa2617 2022-02-16 op ssize_t n;
110 3baa2617 2022-02-16 op int shut = 0;
111 3baa2617 2022-02-16 op
112 3baa2617 2022-02-16 op if (event & EV_READ) {
113 3baa2617 2022-02-16 op if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
114 3baa2617 2022-02-16 op fatal("imsg_read error");
115 3baa2617 2022-02-16 op if (n == 0) /* Connection closed */
116 3baa2617 2022-02-16 op shut = 1;
117 3baa2617 2022-02-16 op }
118 3baa2617 2022-02-16 op if (event & EV_WRITE) {
119 3baa2617 2022-02-16 op if ((n = msgbuf_write(&ibuf->w)) == -1 && errno != EAGAIN)
120 3baa2617 2022-02-16 op fatal("msgbuf_write");
121 3baa2617 2022-02-16 op if (n == 0) /* Connection closed */
122 3baa2617 2022-02-16 op shut = 1;
123 3baa2617 2022-02-16 op }
124 3baa2617 2022-02-16 op
125 3baa2617 2022-02-16 op for (;;) {
126 3baa2617 2022-02-16 op if ((n = imsg_get(ibuf, &imsg)) == -1)
127 3baa2617 2022-02-16 op fatal("imsg_get");
128 3baa2617 2022-02-16 op if (n == 0) /* No more messages. */
129 3baa2617 2022-02-16 op break;
130 3baa2617 2022-02-16 op
131 3baa2617 2022-02-16 op switch (imsg.hdr.type) {
132 3baa2617 2022-02-16 op case IMSG_ERR:
133 13b83883 2022-02-16 op playlist_dropcurrent();
134 f3bd773b 2022-02-19 op main_playlist_advance();
135 87f575c3 2022-02-21 op if (play_state == STATE_PLAYING)
136 87f575c3 2022-02-21 op control_notify(NULL, IMSG_CTL_NEXT);
137 87f575c3 2022-02-21 op else
138 87f575c3 2022-02-21 op control_notify(NULL, IMSG_CTL_STOP);
139 f3bd773b 2022-02-19 op break;
140 aaccc123 2022-02-16 op case IMSG_EOF:
141 f3bd773b 2022-02-19 op if (repeat_one && current_song != NULL)
142 f3bd773b 2022-02-19 op if (main_play_song(current_song))
143 f3bd773b 2022-02-19 op break;
144 aaccc123 2022-02-16 op main_playlist_advance();
145 87f575c3 2022-02-21 op if (play_state == STATE_PLAYING)
146 87f575c3 2022-02-21 op control_notify(NULL, IMSG_CTL_NEXT);
147 87f575c3 2022-02-21 op else
148 87f575c3 2022-02-21 op control_notify(NULL, IMSG_CTL_STOP);
149 3baa2617 2022-02-16 op break;
150 13b83883 2022-02-16 op
151 3baa2617 2022-02-16 op default:
152 3baa2617 2022-02-16 op log_debug("%s: error handling imsg %d", __func__,
153 3baa2617 2022-02-16 op imsg.hdr.type);
154 3baa2617 2022-02-16 op break;
155 3baa2617 2022-02-16 op }
156 3baa2617 2022-02-16 op imsg_free(&imsg);
157 3baa2617 2022-02-16 op }
158 3baa2617 2022-02-16 op
159 3baa2617 2022-02-16 op if (!shut)
160 3baa2617 2022-02-16 op imsg_event_add(iev);
161 3baa2617 2022-02-16 op else {
162 3baa2617 2022-02-16 op /* This pipe is dead. Remove its event handler. */
163 3baa2617 2022-02-16 op event_del(&iev->ev);
164 3baa2617 2022-02-16 op event_loopexit(NULL);
165 3baa2617 2022-02-16 op }
166 3baa2617 2022-02-16 op }
167 3baa2617 2022-02-16 op
168 3baa2617 2022-02-16 op static pid_t
169 3baa2617 2022-02-16 op start_child(enum amused_process proc, int fd)
170 3baa2617 2022-02-16 op {
171 4c86871a 2022-02-17 op const char *argv[6];
172 3baa2617 2022-02-16 op int argc = 0;
173 3baa2617 2022-02-16 op pid_t pid;
174 3baa2617 2022-02-16 op
175 3baa2617 2022-02-16 op switch (pid = fork()) {
176 3baa2617 2022-02-16 op case -1:
177 3baa2617 2022-02-16 op fatal("cannot fork");
178 3baa2617 2022-02-16 op case 0:
179 3baa2617 2022-02-16 op break;
180 3baa2617 2022-02-16 op default:
181 3baa2617 2022-02-16 op close(fd);
182 3baa2617 2022-02-16 op return pid;
183 3baa2617 2022-02-16 op }
184 3baa2617 2022-02-16 op
185 3baa2617 2022-02-16 op if (fd != 3) {
186 fea541a8 2022-02-16 op if (fd != -1 && dup2(fd, 3) == -1)
187 3baa2617 2022-02-16 op fatal("cannot setup imsg fd");
188 3baa2617 2022-02-16 op } else if (fcntl(F_SETFD, 0) == -1)
189 3baa2617 2022-02-16 op fatal("cannot setup imsg fd");
190 3baa2617 2022-02-16 op
191 3baa2617 2022-02-16 op argv[argc++] = argv0;
192 4c86871a 2022-02-17 op
193 3baa2617 2022-02-16 op switch (proc) {
194 3baa2617 2022-02-16 op case PROC_MAIN:
195 4c86871a 2022-02-17 op argv[argc++] = "-s";
196 4c86871a 2022-02-17 op argv[argc++] = csock;
197 fea541a8 2022-02-16 op break;
198 3baa2617 2022-02-16 op case PROC_PLAYER:
199 3baa2617 2022-02-16 op argv[argc++] = "-Tp";
200 3baa2617 2022-02-16 op break;
201 3baa2617 2022-02-16 op }
202 3baa2617 2022-02-16 op
203 3baa2617 2022-02-16 op if (debug)
204 3baa2617 2022-02-16 op argv[argc++] = "-d";
205 3baa2617 2022-02-16 op if (verbose)
206 3baa2617 2022-02-16 op argv[argc++] = "-v";
207 3baa2617 2022-02-16 op argv[argc++] = NULL;
208 3baa2617 2022-02-16 op
209 3baa2617 2022-02-16 op /* obnoxious casts */
210 3baa2617 2022-02-16 op execvp(argv0, (char *const *)argv);
211 3baa2617 2022-02-16 op fatal("execvp %s", argv0);
212 3baa2617 2022-02-16 op }
213 3baa2617 2022-02-16 op
214 3baa2617 2022-02-16 op /* daemon main routine */
215 3baa2617 2022-02-16 op static __dead int
216 3baa2617 2022-02-16 op amused_main(void)
217 3baa2617 2022-02-16 op {
218 3baa2617 2022-02-16 op int pipe_main2player[2];
219 3baa2617 2022-02-16 op int control_fd;
220 3baa2617 2022-02-16 op
221 3baa2617 2022-02-16 op log_init(debug, LOG_DAEMON);
222 3baa2617 2022-02-16 op log_setverbose(verbose);
223 3baa2617 2022-02-16 op log_procinit("main");
224 3baa2617 2022-02-16 op
225 3baa2617 2022-02-16 op if (!debug)
226 3baa2617 2022-02-16 op daemon(1, 0);
227 3baa2617 2022-02-16 op
228 3baa2617 2022-02-16 op if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC | SOCK_NONBLOCK,
229 3baa2617 2022-02-16 op PF_UNSPEC, pipe_main2player) == -1)
230 3baa2617 2022-02-16 op fatal("socketpair");
231 3baa2617 2022-02-16 op
232 3baa2617 2022-02-16 op player_pid = start_child(PROC_PLAYER, pipe_main2player[1]);
233 3baa2617 2022-02-16 op
234 3baa2617 2022-02-16 op event_init();
235 3baa2617 2022-02-16 op
236 3baa2617 2022-02-16 op signal_set(&ev_sigint, SIGINT, main_sig_handler, NULL);
237 3baa2617 2022-02-16 op signal_set(&ev_sigterm, SIGTERM, main_sig_handler, NULL);
238 3baa2617 2022-02-16 op
239 3baa2617 2022-02-16 op signal_add(&ev_sigint, NULL);
240 3baa2617 2022-02-16 op signal_add(&ev_sigterm, NULL);
241 3baa2617 2022-02-16 op
242 3baa2617 2022-02-16 op signal(SIGHUP, SIG_IGN);
243 3baa2617 2022-02-16 op signal(SIGCHLD, SIG_IGN);
244 3baa2617 2022-02-16 op signal(SIGPIPE, SIG_IGN);
245 3baa2617 2022-02-16 op
246 3baa2617 2022-02-16 op iev_player = xmalloc(sizeof(*iev_player));
247 3baa2617 2022-02-16 op imsg_init(&iev_player->ibuf, pipe_main2player[0]);
248 3baa2617 2022-02-16 op iev_player->handler = main_dispatch_player;
249 3baa2617 2022-02-16 op iev_player->events = EV_READ;
250 3baa2617 2022-02-16 op event_set(&iev_player->ev, iev_player->ibuf.fd, iev_player->events,
251 3baa2617 2022-02-16 op iev_player->handler, iev_player);
252 3baa2617 2022-02-16 op event_add(&iev_player->ev, NULL);
253 3baa2617 2022-02-16 op
254 3baa2617 2022-02-16 op if ((control_fd = control_init(csock)) == -1)
255 3baa2617 2022-02-16 op fatal("control socket setup failed %s", csock);
256 3baa2617 2022-02-16 op control_listen(control_fd);
257 3baa2617 2022-02-16 op
258 3baa2617 2022-02-16 op if (pledge("stdio rpath unix sendfd", NULL) == -1)
259 3baa2617 2022-02-16 op fatal("pledge");
260 3baa2617 2022-02-16 op
261 3baa2617 2022-02-16 op log_info("startup");
262 3baa2617 2022-02-16 op event_dispatch();
263 3baa2617 2022-02-16 op main_shutdown();
264 3baa2617 2022-02-16 op }
265 3baa2617 2022-02-16 op
266 3baa2617 2022-02-16 op int
267 3baa2617 2022-02-16 op main(int argc, char **argv)
268 3baa2617 2022-02-16 op {
269 3baa2617 2022-02-16 op int ch, proc = PROC_MAIN;
270 3baa2617 2022-02-16 op
271 3baa2617 2022-02-16 op log_init(1, LOG_DAEMON); /* Log to stderr until daemonized */
272 3baa2617 2022-02-16 op log_setverbose(1);
273 3baa2617 2022-02-16 op
274 3baa2617 2022-02-16 op argv0 = argv[0];
275 3baa2617 2022-02-16 op if (argv0 == NULL)
276 3baa2617 2022-02-16 op argv0 = "amused";
277 3baa2617 2022-02-16 op
278 d307e5a2 2022-02-19 op while ((ch = getopt(argc, argv, "ds:T:v")) != -1) {
279 3baa2617 2022-02-16 op switch (ch) {
280 3baa2617 2022-02-16 op case 'd':
281 3baa2617 2022-02-16 op debug = 1;
282 3baa2617 2022-02-16 op break;
283 3baa2617 2022-02-16 op case 's':
284 3baa2617 2022-02-16 op free(csock);
285 3baa2617 2022-02-16 op csock = xstrdup(optarg);
286 3baa2617 2022-02-16 op break;
287 3baa2617 2022-02-16 op case 'T':
288 3baa2617 2022-02-16 op switch (*optarg) {
289 3baa2617 2022-02-16 op case 'p':
290 3baa2617 2022-02-16 op proc = PROC_PLAYER;
291 3baa2617 2022-02-16 op break;
292 3baa2617 2022-02-16 op default:
293 3baa2617 2022-02-16 op usage();
294 3baa2617 2022-02-16 op }
295 3baa2617 2022-02-16 op break;
296 3baa2617 2022-02-16 op case 'v':
297 3baa2617 2022-02-16 op verbose++;
298 3baa2617 2022-02-16 op break;
299 3baa2617 2022-02-16 op default:
300 3baa2617 2022-02-16 op usage();
301 3baa2617 2022-02-16 op }
302 3baa2617 2022-02-16 op }
303 3baa2617 2022-02-16 op argv += optind;
304 3baa2617 2022-02-16 op argc -= optind;
305 3baa2617 2022-02-16 op
306 3baa2617 2022-02-16 op if (proc == PROC_PLAYER)
307 3baa2617 2022-02-16 op exit(player(debug, verbose));
308 3baa2617 2022-02-16 op
309 3baa2617 2022-02-16 op if (csock == NULL)
310 3baa2617 2022-02-16 op xasprintf(&csock, "/tmp/amused-%d", getuid());
311 3baa2617 2022-02-16 op
312 3baa2617 2022-02-16 op if (argc == 0)
313 3baa2617 2022-02-16 op amused_main();
314 3baa2617 2022-02-16 op else
315 3baa2617 2022-02-16 op ctl(argc, argv);
316 3baa2617 2022-02-16 op return 0;
317 3baa2617 2022-02-16 op }
318 3baa2617 2022-02-16 op
319 3baa2617 2022-02-16 op void
320 fea541a8 2022-02-16 op spawn_daemon(void)
321 fea541a8 2022-02-16 op {
322 fea541a8 2022-02-16 op debug = 0;
323 fea541a8 2022-02-16 op start_child(PROC_MAIN, -1);
324 fea541a8 2022-02-16 op }
325 fea541a8 2022-02-16 op
326 fea541a8 2022-02-16 op void
327 3baa2617 2022-02-16 op imsg_event_add(struct imsgev *iev)
328 3baa2617 2022-02-16 op {
329 3baa2617 2022-02-16 op iev->events = EV_READ;
330 3baa2617 2022-02-16 op if (iev->ibuf.w.queued)
331 3baa2617 2022-02-16 op iev->events |= EV_WRITE;
332 3baa2617 2022-02-16 op
333 3baa2617 2022-02-16 op event_del(&iev->ev);
334 3baa2617 2022-02-16 op event_set(&iev->ev, iev->ibuf.fd, iev->events, iev->handler, iev);
335 3baa2617 2022-02-16 op event_add(&iev->ev, NULL);
336 3baa2617 2022-02-16 op }
337 3baa2617 2022-02-16 op
338 3baa2617 2022-02-16 op int
339 3baa2617 2022-02-16 op imsg_compose_event(struct imsgev *iev, uint16_t type, uint32_t peerid,
340 3baa2617 2022-02-16 op pid_t pid, int fd, const void *data, uint16_t datalen)
341 3baa2617 2022-02-16 op {
342 3baa2617 2022-02-16 op int ret;
343 3baa2617 2022-02-16 op
344 3baa2617 2022-02-16 op if ((ret = imsg_compose(&iev->ibuf, type, peerid, pid, fd, data,
345 3baa2617 2022-02-16 op datalen)) != -1)
346 3baa2617 2022-02-16 op imsg_event_add(iev);
347 3baa2617 2022-02-16 op
348 3baa2617 2022-02-16 op return ret;
349 06961b72 2022-02-16 op }
350 06961b72 2022-02-16 op
351 06961b72 2022-02-16 op int
352 06961b72 2022-02-16 op main_send_player(uint16_t type, int fd, const void *data, uint16_t datalen)
353 06961b72 2022-02-16 op {
354 06961b72 2022-02-16 op return imsg_compose_event(iev_player, type, 0, 0, fd, data, datalen);
355 3baa2617 2022-02-16 op }
356 3baa2617 2022-02-16 op
357 3baa2617 2022-02-16 op int
358 3baa2617 2022-02-16 op main_play_song(const char *song)
359 3baa2617 2022-02-16 op {
360 3baa2617 2022-02-16 op char path[PATH_MAX] = { 0 };
361 3baa2617 2022-02-16 op int fd;
362 3baa2617 2022-02-16 op
363 3baa2617 2022-02-16 op strlcpy(path, song, sizeof(path));
364 3baa2617 2022-02-16 op if ((fd = open(path, O_RDONLY)) == -1) {
365 3baa2617 2022-02-16 op log_warn("open %s", path);
366 62396e0b 2022-02-16 op return 0;
367 3baa2617 2022-02-16 op }
368 3baa2617 2022-02-16 op
369 aaccc123 2022-02-16 op play_state = STATE_PLAYING;
370 3baa2617 2022-02-16 op imsg_compose_event(iev_player, IMSG_PLAY, 0, 0, fd,
371 3baa2617 2022-02-16 op path, sizeof(path));
372 62396e0b 2022-02-16 op return 1;
373 a913de21 2022-02-17 op }
374 a913de21 2022-02-17 op
375 a913de21 2022-02-17 op void
376 a913de21 2022-02-17 op main_playlist_jump(struct imsgev *iev, struct imsg *imsg)
377 a913de21 2022-02-17 op {
378 a913de21 2022-02-17 op size_t datalen;
379 a913de21 2022-02-17 op char arg[PATH_MAX];
380 a913de21 2022-02-17 op const char *song;
381 a913de21 2022-02-17 op
382 a913de21 2022-02-17 op datalen = IMSG_DATA_SIZE(*imsg);
383 a913de21 2022-02-17 op if (datalen != sizeof(arg)) {
384 a913de21 2022-02-17 op main_senderr(iev, "wrong size");
385 a913de21 2022-02-17 op return;
386 a913de21 2022-02-17 op }
387 a913de21 2022-02-17 op
388 a913de21 2022-02-17 op memcpy(arg, imsg->data, sizeof(arg));
389 a913de21 2022-02-17 op if (arg[sizeof(arg)-1] != '\0') {
390 a913de21 2022-02-17 op main_senderr(iev, "data corrupted");
391 a913de21 2022-02-17 op return;
392 a913de21 2022-02-17 op }
393 a913de21 2022-02-17 op
394 a913de21 2022-02-17 op song = playlist_jump(arg);
395 a913de21 2022-02-17 op if (song == NULL) {
396 a913de21 2022-02-17 op main_senderr(iev, "not found");
397 a913de21 2022-02-17 op return;
398 a913de21 2022-02-17 op }
399 a913de21 2022-02-17 op
400 a913de21 2022-02-17 op main_send_player(IMSG_STOP, -1, NULL, 0);
401 a913de21 2022-02-17 op if (!main_play_song(song)) {
402 a913de21 2022-02-17 op main_senderr(iev, "can't play");
403 a913de21 2022-02-17 op playlist_dropcurrent();
404 a913de21 2022-02-17 op main_playlist_advance();
405 a913de21 2022-02-17 op return;
406 a913de21 2022-02-17 op }
407 a913de21 2022-02-17 op
408 a913de21 2022-02-17 op main_send_status(iev);
409 2f589330 2022-02-17 op }
410 2f589330 2022-02-17 op
411 2f589330 2022-02-17 op void
412 2f589330 2022-02-17 op main_playlist_resume(void)
413 2f589330 2022-02-17 op {
414 2f589330 2022-02-17 op const char *song;
415 2f589330 2022-02-17 op
416 74c987d5 2022-02-19 op if ((song = current_song) == NULL)
417 2f589330 2022-02-17 op song = playlist_advance();
418 2f589330 2022-02-17 op
419 c8777fe4 2022-02-17 op for (; song != NULL; song = playlist_advance()) {
420 2f589330 2022-02-17 op if (main_play_song(song))
421 2f589330 2022-02-17 op return;
422 2f589330 2022-02-17 op
423 2f589330 2022-02-17 op playlist_dropcurrent();
424 2f589330 2022-02-17 op }
425 aaccc123 2022-02-16 op }
426 aaccc123 2022-02-16 op
427 aaccc123 2022-02-16 op void
428 aaccc123 2022-02-16 op main_playlist_advance(void)
429 aaccc123 2022-02-16 op {
430 aaccc123 2022-02-16 op const char *song;
431 aaccc123 2022-02-16 op
432 aaccc123 2022-02-16 op for (;;) {
433 aaccc123 2022-02-16 op song = playlist_advance();
434 aaccc123 2022-02-16 op if (song == NULL)
435 aaccc123 2022-02-16 op return;
436 aaccc123 2022-02-16 op
437 aaccc123 2022-02-16 op if (main_play_song(song))
438 aaccc123 2022-02-16 op break;
439 aaccc123 2022-02-16 op
440 13b83883 2022-02-16 op playlist_dropcurrent();
441 aaccc123 2022-02-16 op }
442 3baa2617 2022-02-16 op }
443 3baa2617 2022-02-16 op
444 3baa2617 2022-02-16 op void
445 af27e631 2022-02-17 op main_playlist_previous(void)
446 af27e631 2022-02-17 op {
447 af27e631 2022-02-17 op const char *song;
448 af27e631 2022-02-17 op
449 af27e631 2022-02-17 op for (;;) {
450 af27e631 2022-02-17 op song = playlist_previous();
451 af27e631 2022-02-17 op if (song == NULL)
452 af27e631 2022-02-17 op return;
453 af27e631 2022-02-17 op
454 af27e631 2022-02-17 op if (main_play_song(song))
455 af27e631 2022-02-17 op break;
456 af27e631 2022-02-17 op
457 af27e631 2022-02-17 op playlist_dropcurrent();
458 af27e631 2022-02-17 op }
459 af27e631 2022-02-17 op }
460 af27e631 2022-02-17 op
461 af27e631 2022-02-17 op void
462 aaccc123 2022-02-16 op main_restart_track(void)
463 aaccc123 2022-02-16 op {
464 aaccc123 2022-02-16 op const char *song;
465 aaccc123 2022-02-16 op
466 74c987d5 2022-02-19 op song = current_song;
467 aaccc123 2022-02-16 op if (song == NULL)
468 aaccc123 2022-02-16 op return;
469 aaccc123 2022-02-16 op
470 aaccc123 2022-02-16 op if (main_play_song(song))
471 aaccc123 2022-02-16 op return;
472 aaccc123 2022-02-16 op
473 13b83883 2022-02-16 op playlist_dropcurrent();
474 aaccc123 2022-02-16 op main_playlist_advance();
475 aaccc123 2022-02-16 op }
476 aaccc123 2022-02-16 op
477 aaccc123 2022-02-16 op void
478 19d6b480 2022-02-17 op main_senderr(struct imsgev *iev, const char *msg)
479 3baa2617 2022-02-16 op {
480 19d6b480 2022-02-17 op imsg_compose_event(iev, IMSG_CTL_ERR, 0, 0, -1,
481 19d6b480 2022-02-17 op msg, strlen(msg)+1);
482 19d6b480 2022-02-17 op }
483 19d6b480 2022-02-17 op
484 19d6b480 2022-02-17 op void
485 19d6b480 2022-02-17 op main_enqueue(int tx, struct playlist *px, struct imsgev *iev,
486 19d6b480 2022-02-17 op struct imsg *imsg)
487 19d6b480 2022-02-17 op {
488 3baa2617 2022-02-16 op size_t datalen;
489 3baa2617 2022-02-16 op char path[PATH_MAX] = { 0 };
490 3baa2617 2022-02-16 op const char *err = NULL;
491 3baa2617 2022-02-16 op
492 3baa2617 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
493 3baa2617 2022-02-16 op if (datalen != sizeof(path)) {
494 3baa2617 2022-02-16 op err = "data size mismatch";
495 3baa2617 2022-02-16 op goto err;
496 3baa2617 2022-02-16 op }
497 3baa2617 2022-02-16 op
498 3baa2617 2022-02-16 op memcpy(path, imsg->data, sizeof(path));
499 3baa2617 2022-02-16 op if (path[datalen-1] != '\0') {
500 3baa2617 2022-02-16 op err = "malformed data";
501 3baa2617 2022-02-16 op goto err;
502 3baa2617 2022-02-16 op }
503 3baa2617 2022-02-16 op
504 170d7716 2022-02-18 op if (tx)
505 19d6b480 2022-02-17 op playlist_push(px, path);
506 19d6b480 2022-02-17 op else
507 19d6b480 2022-02-17 op playlist_enqueue(path);
508 3baa2617 2022-02-16 op imsg_compose_event(iev, IMSG_CTL_ADD, 0, 0, -1, path, sizeof(path));
509 3baa2617 2022-02-16 op return;
510 3baa2617 2022-02-16 op err:
511 3baa2617 2022-02-16 op imsg_compose_event(iev, IMSG_CTL_ERR, 0, 0, -1, err, strlen(err)+1);
512 3baa2617 2022-02-16 op }
513 d980494c 2022-02-16 op
514 d980494c 2022-02-16 op void
515 d980494c 2022-02-16 op main_send_playlist(struct imsgev *iev)
516 d980494c 2022-02-16 op {
517 63dd8e70 2022-02-17 op struct player_status s;
518 d980494c 2022-02-16 op size_t i;
519 d980494c 2022-02-16 op
520 d980494c 2022-02-16 op for (i = 0; i < playlist.len; ++i) {
521 63dd8e70 2022-02-17 op memset(&s, 0, sizeof(s));
522 63dd8e70 2022-02-17 op strlcpy(s.path, playlist.songs[i], sizeof(s.path));
523 63dd8e70 2022-02-17 op s.status = play_off == i ? STATE_PLAYING : STATE_STOPPED;
524 63dd8e70 2022-02-17 op imsg_compose_event(iev, IMSG_CTL_SHOW, 0, 0, -1, &s,
525 63dd8e70 2022-02-17 op sizeof(s));
526 d980494c 2022-02-16 op }
527 d980494c 2022-02-16 op
528 d980494c 2022-02-16 op imsg_compose_event(iev, IMSG_CTL_SHOW, 0, 0, -1, NULL, 0);
529 bb3f279f 2022-02-16 op }
530 bb3f279f 2022-02-16 op
531 bb3f279f 2022-02-16 op void
532 bb3f279f 2022-02-16 op main_send_status(struct imsgev *iev)
533 bb3f279f 2022-02-16 op {
534 bb3f279f 2022-02-16 op struct player_status s;
535 bb3f279f 2022-02-16 op
536 bb3f279f 2022-02-16 op memset(&s, 0, sizeof(s));
537 bb3f279f 2022-02-16 op
538 74c987d5 2022-02-19 op if (current_song != NULL)
539 74c987d5 2022-02-19 op strlcpy(s.path, current_song, sizeof(s.path));
540 bb3f279f 2022-02-16 op s.status = play_state;
541 44398779 2022-02-19 op s.rp.repeat_all = repeat_all;
542 44398779 2022-02-19 op s.rp.repeat_one = repeat_one;
543 bb3f279f 2022-02-16 op
544 bb3f279f 2022-02-16 op imsg_compose_event(iev, IMSG_CTL_STATUS, 0, 0, -1, &s, sizeof(s));
545 d980494c 2022-02-16 op }