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