Blame


1 3baa2617 2022-02-16 op /*
2 578f8d0c 2023-05-02 op * Copyright (c) 2022, 2023 Omar Polo <op@omarpolo.com>
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 f36fd90a 2022-07-09 op #include "config.h"
18 3baa2617 2022-02-16 op
19 3baa2617 2022-02-16 op #include <limits.h>
20 3baa2617 2022-02-16 op
21 3baa2617 2022-02-16 op #include <assert.h>
22 3baa2617 2022-02-16 op #include <errno.h>
23 3baa2617 2022-02-16 op #include <poll.h>
24 3baa2617 2022-02-16 op #include <signal.h>
25 14be015f 2022-02-17 op #include <stdio.h>
26 3baa2617 2022-02-16 op #include <stdlib.h>
27 3baa2617 2022-02-16 op #include <stdint.h>
28 3baa2617 2022-02-16 op #include <string.h>
29 3baa2617 2022-02-16 op #include <syslog.h>
30 3baa2617 2022-02-16 op #include <unistd.h>
31 3baa2617 2022-02-16 op
32 3baa2617 2022-02-16 op #include "amused.h"
33 3baa2617 2022-02-16 op #include "log.h"
34 3baa2617 2022-02-16 op #include "xmalloc.h"
35 3baa2617 2022-02-16 op
36 c0180200 2022-06-10 op struct pollfd *player_pfds;
37 b02dadd3 2023-05-13 op int player_nfds;
38 50e0da0e 2024-01-21 op static struct imsgbuf *imsgbuf;
39 3baa2617 2022-02-16 op
40 3baa2617 2022-02-16 op static int nextfd = -1;
41 ff06024f 2022-07-08 op static int64_t samples;
42 60a09ce7 2022-07-09 op static int64_t duration;
43 06ceb376 2023-03-23 op static unsigned int current_rate;
44 3baa2617 2022-02-16 op
45 3baa2617 2022-02-16 op volatile sig_atomic_t halted;
46 3baa2617 2022-02-16 op
47 ae335651 2022-07-08 op static void
48 3baa2617 2022-02-16 op player_signal_handler(int signo)
49 3baa2617 2022-02-16 op {
50 3baa2617 2022-02-16 op halted = 1;
51 3baa2617 2022-02-16 op }
52 3baa2617 2022-02-16 op
53 3baa2617 2022-02-16 op int
54 b9d2a697 2022-07-08 op player_setup(unsigned int bits, unsigned int rate, unsigned int channels)
55 3baa2617 2022-02-16 op {
56 069e653b 2023-03-23 op log_debug("%s: bits=%u, rate=%u, channels=%u", __func__,
57 a728254f 2022-02-23 op bits, rate, channels);
58 4d8a06d4 2022-06-10 op
59 06ceb376 2023-03-23 op current_rate = rate;
60 b02dadd3 2023-05-13 op return audio_setup(bits, rate, channels, player_pfds + 1, player_nfds);
61 ff06024f 2022-07-08 op }
62 ff06024f 2022-07-08 op
63 ff06024f 2022-07-08 op void
64 60a09ce7 2022-07-09 op player_setduration(int64_t d)
65 ff06024f 2022-07-08 op {
66 ff06024f 2022-07-08 op int64_t seconds;
67 ff06024f 2022-07-08 op
68 60a09ce7 2022-07-09 op duration = d;
69 06ceb376 2023-03-23 op seconds = duration / current_rate;
70 50e0da0e 2024-01-21 op imsg_compose(imsgbuf, IMSG_LEN, 0, 0, -1, &seconds, sizeof(seconds));
71 50e0da0e 2024-01-21 op imsg_flush(imsgbuf);
72 ff06024f 2022-07-08 op }
73 ff06024f 2022-07-08 op
74 ae335651 2022-07-08 op static void
75 ff06024f 2022-07-08 op player_onmove(void *arg, int delta)
76 ff06024f 2022-07-08 op {
77 ff06024f 2022-07-08 op static int64_t reported;
78 ff06024f 2022-07-08 op int64_t sec;
79 ff06024f 2022-07-08 op
80 ff06024f 2022-07-08 op samples += delta;
81 06ceb376 2023-03-23 op if (llabs(samples - reported) >= current_rate) {
82 ff06024f 2022-07-08 op reported = samples;
83 06ceb376 2023-03-23 op sec = samples / current_rate;
84 ff06024f 2022-07-08 op
85 50e0da0e 2024-01-21 op imsg_compose(imsgbuf, IMSG_POS, 0, 0, -1, &sec, sizeof(sec));
86 50e0da0e 2024-01-21 op imsg_flush(imsgbuf);
87 ff06024f 2022-07-08 op }
88 3baa2617 2022-02-16 op }
89 3baa2617 2022-02-16 op
90 791d3db3 2022-07-09 op void
91 791d3db3 2022-07-09 op player_setpos(int64_t pos)
92 791d3db3 2022-07-09 op {
93 791d3db3 2022-07-09 op samples = pos;
94 791d3db3 2022-07-09 op player_onmove(NULL, 0);
95 791d3db3 2022-07-09 op }
96 791d3db3 2022-07-09 op
97 3baa2617 2022-02-16 op /* process only one message */
98 ae335651 2022-07-08 op static int
99 c2f554ff 2022-07-09 op player_dispatch(int64_t *s, int wait)
100 3baa2617 2022-02-16 op {
101 791d3db3 2022-07-09 op struct player_seek seek;
102 fc4a38af 2022-05-19 op struct pollfd pfd;
103 3baa2617 2022-02-16 op struct imsg imsg;
104 3baa2617 2022-02-16 op ssize_t n;
105 3baa2617 2022-02-16 op int ret;
106 3baa2617 2022-02-16 op
107 3baa2617 2022-02-16 op if (halted != 0)
108 3baa2617 2022-02-16 op return IMSG_STOP;
109 fc4a38af 2022-05-19 op
110 926ee836 2022-05-19 op again:
111 50e0da0e 2024-01-21 op if ((n = imsg_get(imsgbuf, &imsg)) == -1)
112 3baa2617 2022-02-16 op fatal("imsg_get");
113 926ee836 2022-05-19 op if (n == 0) {
114 c2f554ff 2022-07-09 op if (!wait)
115 c2f554ff 2022-07-09 op return -1;
116 c2f554ff 2022-07-09 op
117 50e0da0e 2024-01-21 op pfd.fd = imsgbuf->fd;
118 926ee836 2022-05-19 op pfd.events = POLLIN;
119 926ee836 2022-05-19 op if (poll(&pfd, 1, INFTIM) == -1)
120 926ee836 2022-05-19 op fatal("poll");
121 50e0da0e 2024-01-21 op if ((n = imsg_read(imsgbuf)) == -1 && errno != EAGAIN)
122 926ee836 2022-05-19 op fatal("imsg_read");
123 926ee836 2022-05-19 op if (n == 0)
124 926ee836 2022-05-19 op fatalx("pipe closed");
125 926ee836 2022-05-19 op goto again;
126 926ee836 2022-05-19 op }
127 3baa2617 2022-02-16 op
128 ddaffed6 2024-01-21 op ret = imsg_get_type(&imsg);
129 ddaffed6 2024-01-21 op switch (ret) {
130 3baa2617 2022-02-16 op case IMSG_PLAY:
131 6e4f8947 2022-06-09 op if (nextfd != -1)
132 6e4f8947 2022-06-09 op fatalx("track already enqueued");
133 5c974144 2024-01-21 op if ((nextfd = imsg_get_fd(&imsg)) == -1)
134 6e4f8947 2022-06-09 op fatalx("%s: got invalid file descriptor", __func__);
135 6e4f8947 2022-06-09 op log_debug("song enqueued");
136 3baa2617 2022-02-16 op ret = IMSG_STOP;
137 3baa2617 2022-02-16 op break;
138 3baa2617 2022-02-16 op case IMSG_RESUME:
139 3baa2617 2022-02-16 op case IMSG_PAUSE:
140 3baa2617 2022-02-16 op case IMSG_STOP:
141 3baa2617 2022-02-16 op break;
142 791d3db3 2022-07-09 op case IMSG_CTL_SEEK:
143 791d3db3 2022-07-09 op if (s == NULL)
144 791d3db3 2022-07-09 op break;
145 9307af9e 2024-01-21 op if (imsg_get_data(&imsg, &seek, sizeof(seek)) == -1)
146 791d3db3 2022-07-09 op fatalx("wrong size for seek ctl");
147 17726cb8 2023-07-13 op if (seek.percent)
148 60a09ce7 2022-07-09 op *s = (double)seek.offset * (double)duration / 100.0;
149 17726cb8 2023-07-13 op else
150 06ceb376 2023-03-23 op *s = seek.offset * current_rate;
151 17726cb8 2023-07-13 op if (seek.relative)
152 17726cb8 2023-07-13 op *s += samples;
153 791d3db3 2022-07-09 op if (*s < 0)
154 3aa75c64 2022-07-09 op *s = 0;
155 791d3db3 2022-07-09 op break;
156 3baa2617 2022-02-16 op default:
157 ddaffed6 2024-01-21 op fatalx("unknown imsg %d", ret);
158 3baa2617 2022-02-16 op }
159 3baa2617 2022-02-16 op
160 fd90976c 2022-06-09 op imsg_free(&imsg);
161 3baa2617 2022-02-16 op return ret;
162 3baa2617 2022-02-16 op }
163 3baa2617 2022-02-16 op
164 ae335651 2022-07-08 op static void
165 17ef54d6 2022-06-22 op player_senderr(const char *errstr)
166 3baa2617 2022-02-16 op {
167 17ef54d6 2022-06-22 op size_t len = 0;
168 17ef54d6 2022-06-22 op
169 17ef54d6 2022-06-22 op if (errstr != NULL)
170 17ef54d6 2022-06-22 op len = strlen(errstr) + 1;
171 17ef54d6 2022-06-22 op
172 50e0da0e 2024-01-21 op imsg_compose(imsgbuf, IMSG_ERR, 0, 0, -1, errstr, len);
173 50e0da0e 2024-01-21 op imsg_flush(imsgbuf);
174 3baa2617 2022-02-16 op }
175 3baa2617 2022-02-16 op
176 ae335651 2022-07-08 op static void
177 3baa2617 2022-02-16 op player_sendeof(void)
178 3baa2617 2022-02-16 op {
179 50e0da0e 2024-01-21 op imsg_compose(imsgbuf, IMSG_EOF, 0, 0, -1, NULL, 0);
180 50e0da0e 2024-01-21 op imsg_flush(imsgbuf);
181 3baa2617 2022-02-16 op }
182 3baa2617 2022-02-16 op
183 ae335651 2022-07-08 op static int
184 17ef54d6 2022-06-22 op player_playnext(const char **errstr)
185 3baa2617 2022-02-16 op {
186 bf19b03e 2022-05-09 op static char buf[512];
187 bf19b03e 2022-05-09 op ssize_t r;
188 3baa2617 2022-02-16 op int fd = nextfd;
189 3baa2617 2022-02-16 op
190 3baa2617 2022-02-16 op assert(nextfd != -1);
191 3baa2617 2022-02-16 op nextfd = -1;
192 3baa2617 2022-02-16 op
193 ff06024f 2022-07-08 op /* reset samples and set position to zero */
194 ff06024f 2022-07-08 op samples = 0;
195 50e0da0e 2024-01-21 op imsg_compose(imsgbuf, IMSG_POS, 0, 0, -1, &samples, sizeof(samples));
196 50e0da0e 2024-01-21 op imsg_flush(imsgbuf);
197 ff06024f 2022-07-08 op
198 bf19b03e 2022-05-09 op r = read(fd, buf, sizeof(buf));
199 bf19b03e 2022-05-09 op
200 bf19b03e 2022-05-09 op /* 8 byte is the larger magic number */
201 bf19b03e 2022-05-09 op if (r < 8) {
202 17ef54d6 2022-06-22 op *errstr = "read failed";
203 bf19b03e 2022-05-09 op goto err;
204 bf19b03e 2022-05-09 op }
205 bf19b03e 2022-05-09 op
206 bf19b03e 2022-05-09 op if (lseek(fd, 0, SEEK_SET) == -1) {
207 17ef54d6 2022-06-22 op *errstr = "lseek failed";
208 bf19b03e 2022-05-09 op goto err;
209 bf19b03e 2022-05-09 op }
210 bf19b03e 2022-05-09 op
211 bf19b03e 2022-05-09 op if (memcmp(buf, "fLaC", 4) == 0)
212 17ef54d6 2022-06-22 op return play_flac(fd, errstr);
213 bf19b03e 2022-05-09 op if (memcmp(buf, "ID3", 3) == 0 ||
214 bf19b03e 2022-05-09 op memcmp(buf, "\xFF\xFB", 2) == 0)
215 17ef54d6 2022-06-22 op return play_mp3(fd, errstr);
216 bf19b03e 2022-05-09 op if (memmem(buf, r, "OpusHead", 8) != NULL)
217 17ef54d6 2022-06-22 op return play_opus(fd, errstr);
218 bf19b03e 2022-05-09 op if (memmem(buf, r, "OggS", 4) != NULL)
219 17ef54d6 2022-06-22 op return play_oggvorbis(fd, errstr);
220 25cb72fb 2022-02-22 op
221 17ef54d6 2022-06-22 op *errstr = "unknown file type";
222 bf19b03e 2022-05-09 op err:
223 184600a8 2022-05-09 op close(fd);
224 06412529 2022-05-09 op return -1;
225 3baa2617 2022-02-16 op }
226 3baa2617 2022-02-16 op
227 ae335651 2022-07-08 op static int
228 791d3db3 2022-07-09 op player_pause(int64_t *s)
229 3baa2617 2022-02-16 op {
230 3baa2617 2022-02-16 op int r;
231 3baa2617 2022-02-16 op
232 c2f554ff 2022-07-09 op r = player_dispatch(s, 1);
233 3ad8bae8 2022-07-09 op return r == IMSG_RESUME || r == IMSG_CTL_SEEK;
234 3baa2617 2022-02-16 op }
235 3baa2617 2022-02-16 op
236 ae335651 2022-07-08 op static int
237 c2f554ff 2022-07-09 op player_shouldstop(int64_t *s, int wait)
238 3baa2617 2022-02-16 op {
239 c2f554ff 2022-07-09 op switch (player_dispatch(s, wait)) {
240 3baa2617 2022-02-16 op case IMSG_PAUSE:
241 791d3db3 2022-07-09 op if (player_pause(s))
242 3baa2617 2022-02-16 op break;
243 3baa2617 2022-02-16 op /* fallthrough */
244 3baa2617 2022-02-16 op case IMSG_STOP:
245 3baa2617 2022-02-16 op return 1;
246 3baa2617 2022-02-16 op }
247 3baa2617 2022-02-16 op
248 3baa2617 2022-02-16 op return 0;
249 3baa2617 2022-02-16 op }
250 3baa2617 2022-02-16 op
251 3baa2617 2022-02-16 op int
252 791d3db3 2022-07-09 op play(const void *buf, size_t len, int64_t *s)
253 2139c525 2022-03-09 op {
254 c0180200 2022-06-10 op size_t w;
255 b02dadd3 2023-05-13 op int revents, r, wait;
256 c0180200 2022-06-10 op
257 791d3db3 2022-07-09 op *s = -1;
258 c0180200 2022-06-10 op while (len != 0) {
259 b02dadd3 2023-05-13 op audio_pollfd(player_pfds + 1, player_nfds, POLLOUT);
260 b02dadd3 2023-05-13 op r = poll(player_pfds, player_nfds + 1, INFTIM);
261 c0180200 2022-06-10 op if (r == -1)
262 c0180200 2022-06-10 op fatal("poll");
263 c0180200 2022-06-10 op
264 c2f554ff 2022-07-09 op wait = player_pfds[0].revents & (POLLHUP|POLLIN);
265 c2f554ff 2022-07-09 op if (player_shouldstop(s, wait)) {
266 06ceb376 2023-03-23 op audio_flush();
267 c2f554ff 2022-07-09 op return 0;
268 c0180200 2022-06-10 op }
269 c0180200 2022-06-10 op
270 b02dadd3 2023-05-13 op revents = audio_revents(player_pfds + 1, player_nfds);
271 bc946090 2023-02-26 op if (revents & POLLHUP) {
272 bc946090 2023-02-26 op if (errno == EAGAIN)
273 bc946090 2023-02-26 op continue;
274 06ceb376 2023-03-23 op fatal("audio hang-up");
275 bc946090 2023-02-26 op }
276 c0180200 2022-06-10 op if (revents & POLLOUT) {
277 06ceb376 2023-03-23 op w = audio_write(buf, len);
278 c0180200 2022-06-10 op len -= w;
279 c0180200 2022-06-10 op buf += w;
280 c0180200 2022-06-10 op }
281 c0180200 2022-06-10 op }
282 c0180200 2022-06-10 op
283 2139c525 2022-03-09 op return 1;
284 2139c525 2022-03-09 op }
285 2139c525 2022-03-09 op
286 2139c525 2022-03-09 op int
287 3baa2617 2022-02-16 op player(int debug, int verbose)
288 3baa2617 2022-02-16 op {
289 fc4a38af 2022-05-19 op int r;
290 fc4a38af 2022-05-19 op
291 3baa2617 2022-02-16 op log_init(debug, LOG_DAEMON);
292 3baa2617 2022-02-16 op log_setverbose(verbose);
293 3baa2617 2022-02-16 op
294 3baa2617 2022-02-16 op setproctitle("player");
295 3baa2617 2022-02-16 op log_procinit("player");
296 3baa2617 2022-02-16 op
297 3baa2617 2022-02-16 op #if 0
298 3baa2617 2022-02-16 op {
299 3baa2617 2022-02-16 op static int attached;
300 3baa2617 2022-02-16 op
301 3baa2617 2022-02-16 op while (!attached)
302 3baa2617 2022-02-16 op sleep(1);
303 3baa2617 2022-02-16 op }
304 3baa2617 2022-02-16 op #endif
305 3baa2617 2022-02-16 op
306 06ceb376 2023-03-23 op if (audio_open(player_onmove) == -1)
307 06ceb376 2023-03-23 op fatal("audio_open");
308 3baa2617 2022-02-16 op
309 b02dadd3 2023-05-13 op if ((player_nfds = audio_nfds()) <= 0)
310 b02dadd3 2023-05-13 op fatal("audio_nfds: invalid number of file descriptors: %d",
311 b02dadd3 2023-05-13 op player_nfds);
312 b02dadd3 2023-05-13 op
313 c0180200 2022-06-10 op /* allocate one extra for imsg */
314 b02dadd3 2023-05-13 op player_pfds = calloc(player_nfds + 1, sizeof(*player_pfds));
315 c0180200 2022-06-10 op if (player_pfds == NULL)
316 c0180200 2022-06-10 op fatal("calloc");
317 c0180200 2022-06-10 op
318 c0180200 2022-06-10 op player_pfds[0].events = POLLIN;
319 c0180200 2022-06-10 op player_pfds[0].fd = 3;
320 c0180200 2022-06-10 op
321 50e0da0e 2024-01-21 op imsgbuf = xmalloc(sizeof(*imsgbuf));
322 50e0da0e 2024-01-21 op imsg_init(imsgbuf, 3);
323 3baa2617 2022-02-16 op
324 3baa2617 2022-02-16 op signal(SIGINT, player_signal_handler);
325 3baa2617 2022-02-16 op signal(SIGTERM, player_signal_handler);
326 3baa2617 2022-02-16 op
327 3baa2617 2022-02-16 op signal(SIGHUP, SIG_IGN);
328 3baa2617 2022-02-16 op signal(SIGPIPE, SIG_IGN);
329 3baa2617 2022-02-16 op
330 251e00ff 2022-03-10 op if (pledge("stdio recvfd audio", NULL) == -1)
331 3baa2617 2022-02-16 op fatal("pledge");
332 3baa2617 2022-02-16 op
333 3baa2617 2022-02-16 op while (!halted) {
334 17ef54d6 2022-06-22 op const char *errstr = NULL;
335 17ef54d6 2022-06-22 op
336 3baa2617 2022-02-16 op while (nextfd == -1)
337 c2f554ff 2022-07-09 op player_dispatch(NULL, 1);
338 06412529 2022-05-09 op
339 17ef54d6 2022-06-22 op r = player_playnext(&errstr);
340 239029b6 2022-05-09 op if (r == -1)
341 17ef54d6 2022-06-22 op player_senderr(errstr);
342 239029b6 2022-05-09 op if (r == 0)
343 06412529 2022-05-09 op player_sendeof();
344 3baa2617 2022-02-16 op }
345 3baa2617 2022-02-16 op
346 3baa2617 2022-02-16 op return 0;
347 3baa2617 2022-02-16 op }