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 #ifndef AMUSED_H
18 3baa2617 2022-02-16 op #define AMUSED_H
19 3baa2617 2022-02-16 op
20 3baa2617 2022-02-16 op extern struct sio_hdl *hdl;
21 3baa2617 2022-02-16 op extern char *csock;
22 3baa2617 2022-02-16 op extern int debug;
23 3baa2617 2022-02-16 op extern int verbose;
24 3baa2617 2022-02-16 op extern int playing;
25 3baa2617 2022-02-16 op extern struct imsgev *iev_player;
26 3baa2617 2022-02-16 op
27 3baa2617 2022-02-16 op #define IMSG_DATA_SIZE(imsg) ((imsg).hdr.len - IMSG_HEADER_SIZE)
28 3baa2617 2022-02-16 op
29 3baa2617 2022-02-16 op enum imsg_type {
30 3baa2617 2022-02-16 op IMSG_PLAY, /* fd + filename */
31 3baa2617 2022-02-16 op IMSG_RESUME,
32 3baa2617 2022-02-16 op IMSG_PAUSE,
33 3baa2617 2022-02-16 op IMSG_STOP,
34 3baa2617 2022-02-16 op IMSG_EOF,
35 3baa2617 2022-02-16 op IMSG_ERR,
36 3baa2617 2022-02-16 op
37 3baa2617 2022-02-16 op IMSG_CTL_PLAY,
38 3baa2617 2022-02-16 op IMSG_CTL_TOGGLE_PLAY,
39 3baa2617 2022-02-16 op IMSG_CTL_PAUSE,
40 3baa2617 2022-02-16 op IMSG_CTL_STOP,
41 3baa2617 2022-02-16 op IMSG_CTL_RESTART,
42 3baa2617 2022-02-16 op IMSG_CTL_ADD,
43 3baa2617 2022-02-16 op IMSG_CTL_FLUSH,
44 3baa2617 2022-02-16 op IMSG_CTL_SHOW,
45 3baa2617 2022-02-16 op
46 3baa2617 2022-02-16 op IMSG_CTL_ERR,
47 3baa2617 2022-02-16 op };
48 3baa2617 2022-02-16 op
49 3baa2617 2022-02-16 op struct imsgev {
50 3baa2617 2022-02-16 op struct imsgbuf ibuf;
51 3baa2617 2022-02-16 op void (*handler)(int, short, void *);
52 3baa2617 2022-02-16 op struct event ev;
53 3baa2617 2022-02-16 op short events;
54 3baa2617 2022-02-16 op };
55 3baa2617 2022-02-16 op
56 3baa2617 2022-02-16 op enum actions {
57 3baa2617 2022-02-16 op NONE,
58 3baa2617 2022-02-16 op PLAY,
59 3baa2617 2022-02-16 op PAUSE,
60 3baa2617 2022-02-16 op TOGGLE,
61 3baa2617 2022-02-16 op STOP,
62 3baa2617 2022-02-16 op RESTART,
63 3baa2617 2022-02-16 op ADD,
64 3baa2617 2022-02-16 op FLUSH,
65 3baa2617 2022-02-16 op SHOW,
66 3baa2617 2022-02-16 op };
67 3baa2617 2022-02-16 op
68 3baa2617 2022-02-16 op struct ctl_command;
69 3baa2617 2022-02-16 op
70 3baa2617 2022-02-16 op struct parse_result {
71 3baa2617 2022-02-16 op enum actions action;
72 3baa2617 2022-02-16 op char **files;
73 3baa2617 2022-02-16 op struct ctl_command *ctl;
74 3baa2617 2022-02-16 op };
75 3baa2617 2022-02-16 op
76 3baa2617 2022-02-16 op struct ctl_command {
77 3baa2617 2022-02-16 op const char *name;
78 3baa2617 2022-02-16 op enum actions action;
79 3baa2617 2022-02-16 op int (*main)(struct parse_result *, int, char **);
80 3baa2617 2022-02-16 op const char *usage;
81 3baa2617 2022-02-16 op int has_pledge;
82 3baa2617 2022-02-16 op };
83 3baa2617 2022-02-16 op
84 3baa2617 2022-02-16 op /* amused.c */
85 3baa2617 2022-02-16 op void imsg_event_add(struct imsgev *iev);
86 3baa2617 2022-02-16 op int imsg_compose_event(struct imsgev *, uint16_t, uint32_t,
87 3baa2617 2022-02-16 op pid_t, int, const void *, uint16_t);
88 3baa2617 2022-02-16 op int main_play_song(const char *);
89 3baa2617 2022-02-16 op void main_enqueue(struct imsgev *, struct imsg *);
90 3baa2617 2022-02-16 op
91 3baa2617 2022-02-16 op /* ctl.c */
92 3baa2617 2022-02-16 op __dead void usage(void);
93 3baa2617 2022-02-16 op __dead void ctl(int, char **);
94 3baa2617 2022-02-16 op
95 3baa2617 2022-02-16 op /* player.c */
96 3baa2617 2022-02-16 op int player_setrate(int);
97 3baa2617 2022-02-16 op void player_senderr(void);
98 3baa2617 2022-02-16 op void player_sendeof(void);
99 3baa2617 2022-02-16 op int player_shouldstop(void);
100 3baa2617 2022-02-16 op int player(int, int);
101 3baa2617 2022-02-16 op
102 3baa2617 2022-02-16 op void play_oggvorbis(int fd);
103 3baa2617 2022-02-16 op void play_mp3(int fd);
104 3baa2617 2022-02-16 op void play_flac(int fd);
105 3baa2617 2022-02-16 op void play_opus(int fd);
106 3baa2617 2022-02-16 op
107 3baa2617 2022-02-16 op #endif