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 <stdlib.h>
18 3baa2617 2022-02-16 op #include <syslog.h>
19 3baa2617 2022-02-16 op
20 3baa2617 2022-02-16 op #include "log.h"
21 3baa2617 2022-02-16 op #include "xmalloc.h"
22 3baa2617 2022-02-16 op #include "playlist.h"
23 3baa2617 2022-02-16 op
24 3baa2617 2022-02-16 op #define MAX(a, b) ((a) > (b) ? (a) : (b))
25 3baa2617 2022-02-16 op
26 3baa2617 2022-02-16 op struct playlist playlist;
27 3baa2617 2022-02-16 op enum play_state play_state;
28 3baa2617 2022-02-16 op int repeat_one;
29 3baa2617 2022-02-16 op int repeat_all = 1;
30 3baa2617 2022-02-16 op ssize_t play_off = -1;
31 3baa2617 2022-02-16 op
32 3baa2617 2022-02-16 op void
33 3baa2617 2022-02-16 op playlist_enqueue(const char *path)
34 3baa2617 2022-02-16 op {
35 3baa2617 2022-02-16 op size_t newcap;
36 3baa2617 2022-02-16 op
37 3baa2617 2022-02-16 op if (playlist.len == playlist.cap) {
38 3baa2617 2022-02-16 op newcap = MAX(16, playlist.cap * 1.5);
39 3baa2617 2022-02-16 op playlist.songs = xrecallocarray(playlist.songs, playlist.cap,
40 3baa2617 2022-02-16 op newcap, sizeof(*playlist.songs));
41 3baa2617 2022-02-16 op playlist.cap = newcap;
42 3baa2617 2022-02-16 op }
43 3baa2617 2022-02-16 op
44 3baa2617 2022-02-16 op playlist.songs[playlist.len++] = xstrdup(path);
45 3baa2617 2022-02-16 op }
46 3baa2617 2022-02-16 op
47 3baa2617 2022-02-16 op const char *
48 3baa2617 2022-02-16 op playlist_current(void)
49 3baa2617 2022-02-16 op {
50 3baa2617 2022-02-16 op if (playlist.len == 0 || play_off == -1)
51 3baa2617 2022-02-16 op return NULL;
52 3baa2617 2022-02-16 op
53 3baa2617 2022-02-16 op return playlist.songs[play_off];
54 3baa2617 2022-02-16 op }
55 3baa2617 2022-02-16 op
56 3baa2617 2022-02-16 op const char *
57 3baa2617 2022-02-16 op playlist_advance(void)
58 3baa2617 2022-02-16 op {
59 3baa2617 2022-02-16 op if (playlist.len == 0 || play_off+1 == playlist.len)
60 3baa2617 2022-02-16 op return NULL;
61 3baa2617 2022-02-16 op
62 3baa2617 2022-02-16 op play_off++;
63 3baa2617 2022-02-16 op if (play_off == playlist.len) {
64 3baa2617 2022-02-16 op if (repeat_all)
65 3baa2617 2022-02-16 op play_off = 0;
66 3baa2617 2022-02-16 op else {
67 3baa2617 2022-02-16 op play_state = STATE_STOPPED;
68 3baa2617 2022-02-16 op play_off = -1;
69 3baa2617 2022-02-16 op return NULL;
70 3baa2617 2022-02-16 op }
71 3baa2617 2022-02-16 op }
72 3baa2617 2022-02-16 op
73 3baa2617 2022-02-16 op play_state = STATE_PLAYING;
74 3baa2617 2022-02-16 op return playlist.songs[play_off];
75 3baa2617 2022-02-16 op }
76 3baa2617 2022-02-16 op
77 3baa2617 2022-02-16 op void
78 3baa2617 2022-02-16 op playlist_reset(void)
79 3baa2617 2022-02-16 op {
80 3baa2617 2022-02-16 op play_off = -1;
81 3baa2617 2022-02-16 op }
82 3baa2617 2022-02-16 op
83 3baa2617 2022-02-16 op void
84 3baa2617 2022-02-16 op playlist_truncate(void)
85 3baa2617 2022-02-16 op {
86 3baa2617 2022-02-16 op size_t i;
87 3baa2617 2022-02-16 op
88 3baa2617 2022-02-16 op for (i = 0; i < playlist.len; ++i)
89 3baa2617 2022-02-16 op free(playlist.songs[i]);
90 3baa2617 2022-02-16 op free(playlist.songs);
91 3baa2617 2022-02-16 op playlist.songs = NULL;
92 3baa2617 2022-02-16 op
93 3baa2617 2022-02-16 op playlist.len = 0;
94 3baa2617 2022-02-16 op playlist.cap = 0;
95 3baa2617 2022-02-16 op play_off = -1;
96 3baa2617 2022-02-16 op }