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/uio.h>
20 3baa2617 2022-02-16 op
21 3baa2617 2022-02-16 op #include <limits.h>
22 3baa2617 2022-02-16 op
23 3baa2617 2022-02-16 op #include <assert.h>
24 3baa2617 2022-02-16 op #include <errno.h>
25 3baa2617 2022-02-16 op #include <event.h>
26 3baa2617 2022-02-16 op #include <fcntl.h>
27 3baa2617 2022-02-16 op #include <poll.h>
28 3baa2617 2022-02-16 op #include <signal.h>
29 3baa2617 2022-02-16 op #include <sndio.h>
30 14be015f 2022-02-17 op #include <stdio.h>
31 3baa2617 2022-02-16 op #include <stdlib.h>
32 3baa2617 2022-02-16 op #include <stdint.h>
33 3baa2617 2022-02-16 op #include <imsg.h>
34 3baa2617 2022-02-16 op #include <string.h>
35 3baa2617 2022-02-16 op #include <syslog.h>
36 3baa2617 2022-02-16 op #include <unistd.h>
37 3baa2617 2022-02-16 op
38 3baa2617 2022-02-16 op #include "amused.h"
39 3baa2617 2022-02-16 op #include "log.h"
40 3baa2617 2022-02-16 op #include "xmalloc.h"
41 3baa2617 2022-02-16 op
42 3baa2617 2022-02-16 op static struct imsgbuf *ibuf;
43 3baa2617 2022-02-16 op
44 63f5223a 2022-02-17 op static int got_stop;
45 3baa2617 2022-02-16 op static int nextfd = -1;
46 3baa2617 2022-02-16 op static char nextpath[PATH_MAX];
47 3baa2617 2022-02-16 op
48 3baa2617 2022-02-16 op volatile sig_atomic_t halted;
49 3baa2617 2022-02-16 op
50 3baa2617 2022-02-16 op static void
51 3baa2617 2022-02-16 op player_signal_handler(int signo)
52 3baa2617 2022-02-16 op {
53 3baa2617 2022-02-16 op halted = 1;
54 3baa2617 2022-02-16 op }
55 3baa2617 2022-02-16 op
56 3baa2617 2022-02-16 op static void
57 3baa2617 2022-02-16 op audio_init(void)
58 3baa2617 2022-02-16 op {
59 3baa2617 2022-02-16 op struct sio_par par;
60 3baa2617 2022-02-16 op
61 3baa2617 2022-02-16 op if ((hdl = sio_open(SIO_DEVANY, SIO_PLAY, 0)) == NULL)
62 3baa2617 2022-02-16 op fatal("sio_open");
63 3baa2617 2022-02-16 op
64 3baa2617 2022-02-16 op sio_initpar(&par);
65 3baa2617 2022-02-16 op par.bits = 16;
66 3baa2617 2022-02-16 op par.appbufsz = 50 * par.rate / 1000;
67 3baa2617 2022-02-16 op par.pchan = 2;
68 3baa2617 2022-02-16 op if (!sio_setpar(hdl, &par) || !sio_getpar(hdl, &par))
69 3baa2617 2022-02-16 op fatal("couldn't set audio params");
70 3baa2617 2022-02-16 op if (par.bits != 16 || par.le != SIO_LE_NATIVE)
71 3baa2617 2022-02-16 op fatalx("unsupported audio params");
72 3baa2617 2022-02-16 op if (!sio_start(hdl))
73 3baa2617 2022-02-16 op fatal("sio_start");
74 3baa2617 2022-02-16 op }
75 3baa2617 2022-02-16 op
76 3baa2617 2022-02-16 op int
77 e24324f1 2022-02-21 op player_setup(int bits, int rate, int channels)
78 3baa2617 2022-02-16 op {
79 3baa2617 2022-02-16 op struct sio_par par;
80 3baa2617 2022-02-16 op
81 a728254f 2022-02-23 op log_debug("%s: bits=%d, rate=%d, channels=%d", __func__,
82 a728254f 2022-02-23 op bits, rate, channels);
83 3baa2617 2022-02-16 op
84 3baa2617 2022-02-16 op sio_stop(hdl);
85 3baa2617 2022-02-16 op
86 3baa2617 2022-02-16 op sio_initpar(&par);
87 e24324f1 2022-02-21 op par.bits = bits;
88 3baa2617 2022-02-16 op par.rate = rate;
89 7fc831ea 2022-02-18 op par.pchan = channels;
90 3baa2617 2022-02-16 op if (!sio_setpar(hdl, &par) || !sio_getpar(hdl, &par)) {
91 3baa2617 2022-02-16 op log_warnx("invalid params");
92 7fc831ea 2022-02-18 op return -1;
93 7fc831ea 2022-02-18 op }
94 7fc831ea 2022-02-18 op
95 e24324f1 2022-02-21 op if (par.bits != bits || par.pchan != channels) {
96 7fc831ea 2022-02-18 op log_warnx("failed to set params");
97 3baa2617 2022-02-16 op return -1;
98 3baa2617 2022-02-16 op }
99 3baa2617 2022-02-16 op
100 3baa2617 2022-02-16 op /* TODO: check the sample rate? */
101 3baa2617 2022-02-16 op
102 3baa2617 2022-02-16 op if (!sio_start(hdl)) {
103 3baa2617 2022-02-16 op log_warn("sio_start");
104 3baa2617 2022-02-16 op return -1;
105 3baa2617 2022-02-16 op }
106 3baa2617 2022-02-16 op return 0;
107 3baa2617 2022-02-16 op }
108 3baa2617 2022-02-16 op
109 3baa2617 2022-02-16 op int
110 3baa2617 2022-02-16 op player_pendingimsg(void)
111 3baa2617 2022-02-16 op {
112 3baa2617 2022-02-16 op struct pollfd pfd;
113 3baa2617 2022-02-16 op int r;
114 3baa2617 2022-02-16 op
115 3baa2617 2022-02-16 op if (halted != 0)
116 3baa2617 2022-02-16 op return 1;
117 3baa2617 2022-02-16 op
118 3baa2617 2022-02-16 op pfd.fd = ibuf->fd;
119 9fdc3eb6 2022-02-16 op pfd.events = POLLIN;
120 3baa2617 2022-02-16 op
121 3baa2617 2022-02-16 op r = poll(&pfd, 1, 0);
122 3baa2617 2022-02-16 op if (r == -1)
123 3baa2617 2022-02-16 op fatal("poll");
124 3baa2617 2022-02-16 op return r;
125 3baa2617 2022-02-16 op }
126 3baa2617 2022-02-16 op
127 3baa2617 2022-02-16 op void
128 3baa2617 2022-02-16 op player_enqueue(struct imsg *imsg)
129 3baa2617 2022-02-16 op {
130 3baa2617 2022-02-16 op size_t datalen;
131 3baa2617 2022-02-16 op
132 3baa2617 2022-02-16 op if (nextfd != -1)
133 3baa2617 2022-02-16 op fatalx("track already enqueued");
134 3baa2617 2022-02-16 op
135 3baa2617 2022-02-16 op datalen = IMSG_DATA_SIZE(*imsg);
136 3baa2617 2022-02-16 op if (datalen != sizeof(nextpath))
137 3baa2617 2022-02-16 op fatalx("%s: size mismatch", __func__);
138 3baa2617 2022-02-16 op memcpy(nextpath, imsg->data, sizeof(nextpath));
139 3baa2617 2022-02-16 op if (nextpath[datalen-1] != '\0')
140 3baa2617 2022-02-16 op fatalx("%s: corrupted path", __func__);
141 3baa2617 2022-02-16 op if ((nextfd = imsg->fd) == -1)
142 3baa2617 2022-02-16 op fatalx("%s: got invalid file descriptor", __func__);
143 3baa2617 2022-02-16 op log_debug("enqueued %s", nextpath);
144 3baa2617 2022-02-16 op }
145 3baa2617 2022-02-16 op
146 3baa2617 2022-02-16 op /* process only one message */
147 3baa2617 2022-02-16 op int
148 3baa2617 2022-02-16 op player_dispatch(void)
149 3baa2617 2022-02-16 op {
150 3baa2617 2022-02-16 op struct imsg imsg;
151 3baa2617 2022-02-16 op ssize_t n;
152 3baa2617 2022-02-16 op int ret;
153 3baa2617 2022-02-16 op
154 3baa2617 2022-02-16 op if (halted != 0)
155 3baa2617 2022-02-16 op return IMSG_STOP;
156 3baa2617 2022-02-16 op
157 3baa2617 2022-02-16 op if ((n = imsg_read(ibuf)) == -1 && errno != EAGAIN)
158 3baa2617 2022-02-16 op fatalx("imsg_read");
159 3baa2617 2022-02-16 op if (n == 0)
160 3baa2617 2022-02-16 op fatalx("pipe closed");
161 3baa2617 2022-02-16 op
162 3baa2617 2022-02-16 op if ((n = imsg_get(ibuf, &imsg)) == -1)
163 3baa2617 2022-02-16 op fatal("imsg_get");
164 3baa2617 2022-02-16 op if (n == 0) /* no more messages */
165 3baa2617 2022-02-16 op fatalx("expected at least a message");
166 3baa2617 2022-02-16 op
167 3baa2617 2022-02-16 op ret = imsg.hdr.type;
168 63f5223a 2022-02-17 op if (ret == IMSG_STOP)
169 63f5223a 2022-02-17 op got_stop = 1;
170 3baa2617 2022-02-16 op switch (imsg.hdr.type) {
171 3baa2617 2022-02-16 op case IMSG_PLAY:
172 3baa2617 2022-02-16 op player_enqueue(&imsg);
173 3baa2617 2022-02-16 op ret = IMSG_STOP;
174 3baa2617 2022-02-16 op break;
175 3baa2617 2022-02-16 op case IMSG_RESUME:
176 3baa2617 2022-02-16 op case IMSG_PAUSE:
177 3baa2617 2022-02-16 op case IMSG_STOP:
178 3baa2617 2022-02-16 op break;
179 3baa2617 2022-02-16 op default:
180 3baa2617 2022-02-16 op fatalx("unknown imsg %d", imsg.hdr.type);
181 3baa2617 2022-02-16 op }
182 3baa2617 2022-02-16 op
183 3baa2617 2022-02-16 op return ret;
184 3baa2617 2022-02-16 op }
185 3baa2617 2022-02-16 op
186 3baa2617 2022-02-16 op void
187 3baa2617 2022-02-16 op player_senderr(void)
188 3baa2617 2022-02-16 op {
189 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_ERR, 0, 0, -1, NULL, 0);
190 3baa2617 2022-02-16 op imsg_flush(ibuf);
191 3baa2617 2022-02-16 op }
192 3baa2617 2022-02-16 op
193 3baa2617 2022-02-16 op void
194 3baa2617 2022-02-16 op player_sendeof(void)
195 3baa2617 2022-02-16 op {
196 3baa2617 2022-02-16 op imsg_compose(ibuf, IMSG_EOF, 0, 0, -1, NULL, 0);
197 3baa2617 2022-02-16 op imsg_flush(ibuf);
198 3baa2617 2022-02-16 op }
199 3baa2617 2022-02-16 op
200 25cb72fb 2022-02-22 op int
201 3baa2617 2022-02-16 op player_playnext(void)
202 3baa2617 2022-02-16 op {
203 3baa2617 2022-02-16 op int fd = nextfd;
204 3baa2617 2022-02-16 op
205 3baa2617 2022-02-16 op assert(nextfd != -1);
206 3baa2617 2022-02-16 op nextfd = -1;
207 3baa2617 2022-02-16 op
208 3baa2617 2022-02-16 op /* XXX: use magic(5) for this, not file extensions */
209 3baa2617 2022-02-16 op if (strstr(nextpath, ".ogg") != NULL)
210 3baa2617 2022-02-16 op play_oggvorbis(fd);
211 3baa2617 2022-02-16 op else if (strstr(nextpath, ".mp3") != NULL)
212 3baa2617 2022-02-16 op play_mp3(fd);
213 3baa2617 2022-02-16 op else if (strstr(nextpath, ".flac") != NULL)
214 3baa2617 2022-02-16 op play_flac(fd);
215 3baa2617 2022-02-16 op else if (strstr(nextpath, ".opus") != NULL)
216 3baa2617 2022-02-16 op play_opus(fd);
217 3baa2617 2022-02-16 op else {
218 3baa2617 2022-02-16 op log_warnx("unknown file type for %s", nextpath);
219 3baa2617 2022-02-16 op player_senderr();
220 25cb72fb 2022-02-22 op return 0;
221 3baa2617 2022-02-16 op }
222 25cb72fb 2022-02-22 op
223 25cb72fb 2022-02-22 op return 1;
224 3baa2617 2022-02-16 op }
225 3baa2617 2022-02-16 op
226 3baa2617 2022-02-16 op int
227 3baa2617 2022-02-16 op player_pause(void)
228 3baa2617 2022-02-16 op {
229 3baa2617 2022-02-16 op int r;
230 3baa2617 2022-02-16 op
231 3baa2617 2022-02-16 op r = player_dispatch();
232 3baa2617 2022-02-16 op return r == IMSG_RESUME;
233 3baa2617 2022-02-16 op }
234 3baa2617 2022-02-16 op
235 3baa2617 2022-02-16 op int
236 3baa2617 2022-02-16 op player_shouldstop(void)
237 3baa2617 2022-02-16 op {
238 3baa2617 2022-02-16 op if (!player_pendingimsg())
239 3baa2617 2022-02-16 op return 0;
240 3baa2617 2022-02-16 op
241 3baa2617 2022-02-16 op switch (player_dispatch()) {
242 3baa2617 2022-02-16 op case IMSG_PAUSE:
243 3baa2617 2022-02-16 op if (player_pause())
244 3baa2617 2022-02-16 op break;
245 3baa2617 2022-02-16 op /* fallthrough */
246 3baa2617 2022-02-16 op case IMSG_STOP:
247 3baa2617 2022-02-16 op return 1;
248 3baa2617 2022-02-16 op }
249 3baa2617 2022-02-16 op
250 3baa2617 2022-02-16 op return 0;
251 3baa2617 2022-02-16 op }
252 3baa2617 2022-02-16 op
253 3baa2617 2022-02-16 op int
254 3baa2617 2022-02-16 op player(int debug, int verbose)
255 3baa2617 2022-02-16 op {
256 3baa2617 2022-02-16 op int flags;
257 3baa2617 2022-02-16 op log_init(debug, LOG_DAEMON);
258 3baa2617 2022-02-16 op log_setverbose(verbose);
259 3baa2617 2022-02-16 op
260 3baa2617 2022-02-16 op setproctitle("player");
261 3baa2617 2022-02-16 op log_procinit("player");
262 3baa2617 2022-02-16 op
263 3baa2617 2022-02-16 op #if 0
264 3baa2617 2022-02-16 op {
265 3baa2617 2022-02-16 op static int attached;
266 3baa2617 2022-02-16 op
267 3baa2617 2022-02-16 op while (!attached)
268 3baa2617 2022-02-16 op sleep(1);
269 3baa2617 2022-02-16 op }
270 3baa2617 2022-02-16 op #endif
271 3baa2617 2022-02-16 op
272 3baa2617 2022-02-16 op audio_init();
273 3baa2617 2022-02-16 op
274 3baa2617 2022-02-16 op /* mark fd as blocking i/o mode */
275 3baa2617 2022-02-16 op if ((flags = fcntl(3, F_GETFL)) == -1)
276 3baa2617 2022-02-16 op fatal("fcntl(F_GETFL)");
277 3baa2617 2022-02-16 op if (fcntl(3, F_SETFL, flags & ~O_NONBLOCK) == -1)
278 3baa2617 2022-02-16 op fatal("fcntl F_SETFL O_NONBLOCK");
279 3baa2617 2022-02-16 op
280 3baa2617 2022-02-16 op ibuf = xmalloc(sizeof(*ibuf));
281 3baa2617 2022-02-16 op imsg_init(ibuf, 3);
282 3baa2617 2022-02-16 op
283 3baa2617 2022-02-16 op signal(SIGINT, player_signal_handler);
284 3baa2617 2022-02-16 op signal(SIGTERM, player_signal_handler);
285 3baa2617 2022-02-16 op
286 3baa2617 2022-02-16 op signal(SIGHUP, SIG_IGN);
287 3baa2617 2022-02-16 op signal(SIGPIPE, SIG_IGN);
288 3baa2617 2022-02-16 op
289 3baa2617 2022-02-16 op if (pledge("stdio recvfd", NULL) == -1)
290 3baa2617 2022-02-16 op fatal("pledge");
291 3baa2617 2022-02-16 op
292 3baa2617 2022-02-16 op while (!halted) {
293 3baa2617 2022-02-16 op while (nextfd == -1)
294 1489a53d 2022-02-16 op player_dispatch();
295 3baa2617 2022-02-16 op
296 25cb72fb 2022-02-22 op if (player_playnext() && !got_stop)
297 63f5223a 2022-02-17 op player_sendeof();
298 63f5223a 2022-02-17 op else
299 63f5223a 2022-02-17 op got_stop = 0;
300 3baa2617 2022-02-16 op }
301 3baa2617 2022-02-16 op
302 3baa2617 2022-02-16 op return 0;
303 3baa2617 2022-02-16 op }