Skip to content

Latest commit

 

History

History
292 lines (253 loc) · 6.71 KB

music_cmd.c

File metadata and controls

292 lines (253 loc) · 6.71 KB
 
Oct 21, 1999
Oct 21, 1999
1
/*
Dec 31, 2011
Dec 31, 2011
2
SDL_mixer: An audio mixer library based on the SDL library
Mar 1, 2018
Mar 1, 2018
3
Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
Oct 21, 1999
Oct 21, 1999
4
Dec 31, 2011
Dec 31, 2011
5
6
7
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Oct 21, 1999
Oct 21, 1999
8
Dec 31, 2011
Dec 31, 2011
9
10
11
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
Oct 21, 1999
Oct 21, 1999
12
Dec 31, 2011
Dec 31, 2011
13
14
15
16
17
18
19
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Oct 21, 1999
Oct 21, 1999
20
*/
Apr 30, 2006
Apr 30, 2006
21
#include "SDL_config.h"
Dec 14, 2001
Dec 14, 2001
22
Oct 21, 1999
Oct 21, 1999
23
24
/* This file supports an external command for playing music */
Oct 17, 2017
Oct 17, 2017
25
#ifdef MUSIC_CMD
Oct 21, 1999
Oct 21, 1999
26
27
28
29
30
31
32
33
#include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <signal.h>
Dec 20, 2001
Dec 20, 2001
34
#include <ctype.h>
Oct 17, 2017
Oct 17, 2017
35
36
37
38
#include <limits.h>
#if defined(__linux__) && defined(__arm__)
# include <linux/limits.h>
#endif
Oct 21, 1999
Oct 21, 1999
39
40
41
#include "music_cmd.h"
Oct 17, 2017
Oct 17, 2017
42
43
44
typedef struct {
char *file;
Oct 17, 2017
Oct 17, 2017
45
char *cmd;
Oct 17, 2017
Oct 17, 2017
46
pid_t pid;
Oct 21, 2017
Oct 21, 2017
47
int play_count;
Oct 17, 2017
Oct 17, 2017
48
49
} MusicCMD;
Oct 21, 1999
Oct 21, 1999
50
51
/* Load a music stream from the given file */
Oct 17, 2017
Oct 17, 2017
52
static void *MusicCMD_CreateFromFile(const char *file)
Oct 21, 1999
Oct 21, 1999
53
{
May 22, 2013
May 22, 2013
54
55
MusicCMD *music;
Oct 17, 2017
Oct 17, 2017
56
57
58
59
60
if (!music_cmd) {
Mix_SetError("You must call Mix_SetMusicCMD() first");
return NULL;
}
May 22, 2013
May 22, 2013
61
/* Allocate and fill the music structure */
Oct 17, 2017
Oct 17, 2017
62
63
music = (MusicCMD *)SDL_calloc(1, sizeof *music);
if (music == NULL) {
May 22, 2013
May 22, 2013
64
Mix_SetError("Out of memory");
Oct 17, 2017
Oct 17, 2017
65
return NULL;
May 22, 2013
May 22, 2013
66
67
}
music->file = SDL_strdup(file);
Oct 17, 2017
Oct 17, 2017
68
music->cmd = SDL_strdup(music_cmd);
May 22, 2013
May 22, 2013
69
70
71
music->pid = 0;
/* We're done */
Oct 17, 2017
Oct 17, 2017
72
return music;
Oct 21, 1999
Oct 21, 1999
73
74
75
76
77
}
/* Parse a command line buffer into arguments */
static int ParseCommandLine(char *cmdline, char **argv)
{
May 22, 2013
May 22, 2013
78
79
80
81
char *bufp;
int argc;
argc = 0;
Oct 17, 2017
Oct 17, 2017
82
for (bufp = cmdline; *bufp;) {
May 22, 2013
May 22, 2013
83
/* Skip leading whitespace */
Oct 17, 2017
Oct 17, 2017
84
while (isspace(*bufp)) {
May 22, 2013
May 22, 2013
85
86
87
++bufp;
}
/* Skip over argument */
Oct 17, 2017
Oct 17, 2017
88
if (*bufp == '"') {
May 22, 2013
May 22, 2013
89
++bufp;
Oct 17, 2017
Oct 17, 2017
90
91
if (*bufp) {
if (argv) {
May 22, 2013
May 22, 2013
92
93
94
95
96
argv[argc] = bufp;
}
++argc;
}
/* Skip over word */
Oct 17, 2017
Oct 17, 2017
97
while (*bufp && (*bufp != '"')) {
May 22, 2013
May 22, 2013
98
99
100
++bufp;
}
} else {
Oct 17, 2017
Oct 17, 2017
101
102
if (*bufp) {
if (argv) {
May 22, 2013
May 22, 2013
103
104
105
106
107
argv[argc] = bufp;
}
++argc;
}
/* Skip over word */
Oct 17, 2017
Oct 17, 2017
108
while (*bufp && ! isspace(*bufp)) {
May 22, 2013
May 22, 2013
109
110
111
++bufp;
}
}
Oct 17, 2017
Oct 17, 2017
112
113
if (*bufp) {
if (argv) {
May 22, 2013
May 22, 2013
114
115
116
117
118
*bufp = '\0';
}
++bufp;
}
}
Oct 17, 2017
Oct 17, 2017
119
if (argv) {
May 22, 2013
May 22, 2013
120
121
122
argv[argc] = NULL;
}
return(argc);
Oct 21, 1999
Oct 21, 1999
123
124
125
126
}
static char **parse_args(char *command, char *last_arg)
{
May 22, 2013
May 22, 2013
127
128
129
130
131
int argc;
char **argv;
/* Parse the command line */
argc = ParseCommandLine(command, NULL);
Oct 17, 2017
Oct 17, 2017
132
if (last_arg) {
May 22, 2013
May 22, 2013
133
134
135
++argc;
}
argv = (char **)SDL_malloc((argc+1)*(sizeof *argv));
Oct 17, 2017
Oct 17, 2017
136
if (argv == NULL) {
May 22, 2013
May 22, 2013
137
138
139
140
141
return(NULL);
}
argc = ParseCommandLine(command, argv);
/* Add last command line argument */
Oct 17, 2017
Oct 17, 2017
142
if (last_arg) {
May 22, 2013
May 22, 2013
143
144
145
146
147
148
argv[argc++] = last_arg;
}
argv[argc] = NULL;
/* We're ready! */
return(argv);
Oct 21, 1999
Oct 21, 1999
149
150
151
}
/* Start playback of a given music stream */
Oct 21, 2017
Oct 21, 2017
152
static int MusicCMD_Play(void *context, int play_count)
Oct 21, 1999
Oct 21, 1999
153
{
Oct 17, 2017
Oct 17, 2017
154
155
MusicCMD *music = (MusicCMD *)context;
Oct 21, 2017
Oct 21, 2017
156
music->play_count = play_count;
Nov 6, 2009
Nov 6, 2009
157
#ifdef HAVE_FORK
May 22, 2013
May 22, 2013
158
music->pid = fork();
Nov 6, 2009
Nov 6, 2009
159
#else
May 22, 2013
May 22, 2013
160
music->pid = vfork();
Nov 6, 2009
Nov 6, 2009
161
#endif
May 22, 2013
May 22, 2013
162
switch(music->pid) {
Oct 17, 2017
Oct 17, 2017
163
164
/* Failed fork() system call */
case -1:
May 22, 2013
May 22, 2013
165
Mix_SetError("fork() failed");
Oct 17, 2017
Oct 17, 2017
166
return -1;
May 22, 2013
May 22, 2013
167
Oct 17, 2017
Oct 17, 2017
168
169
170
/* Child process - executes here */
case 0: {
char **argv;
Oct 13, 2017
Oct 13, 2017
171
Oct 17, 2017
Oct 17, 2017
172
173
174
175
176
/* Unblock signals in case we're called from a thread */
{
sigset_t mask;
sigemptyset(&mask);
sigprocmask(SIG_SETMASK, &mask, NULL);
May 22, 2013
May 22, 2013
177
178
}
Oct 17, 2017
Oct 17, 2017
179
/* Execute the command */
Oct 17, 2017
Oct 17, 2017
180
argv = parse_args(music->cmd, music->file);
Oct 17, 2017
Oct 17, 2017
181
182
183
184
185
186
187
188
189
190
191
192
if (argv != NULL) {
execvp(argv[0], argv);
/* exec() failed */
perror(argv[0]);
}
_exit(-1);
}
break;
/* Parent process - executes here */
default:
May 22, 2013
May 22, 2013
193
194
break;
}
Oct 17, 2017
Oct 17, 2017
195
return 0;
Oct 21, 1999
Oct 21, 1999
196
197
}
Oct 17, 2017
Oct 17, 2017
198
199
/* Return non-zero if a stream is currently playing */
static SDL_bool MusicCMD_IsPlaying(void *context)
Oct 21, 1999
Oct 21, 1999
200
{
Oct 17, 2017
Oct 17, 2017
201
MusicCMD *music = (MusicCMD *)context;
May 22, 2013
May 22, 2013
202
203
int status;
Oct 17, 2017
Oct 17, 2017
204
205
206
207
if (music->pid > 0) {
waitpid(music->pid, &status, WNOHANG);
if (kill(music->pid, 0) == 0) {
return SDL_TRUE;
May 22, 2013
May 22, 2013
208
}
Oct 21, 2017
Oct 21, 2017
209
210
211
212
213
214
215
216
217
218
/* We might want to loop */
if (music->play_count != 1) {
int play_count = -1;
if (music->play_count > 0) {
play_count = (music->play_count - 1);
}
MusicCMD_Play(music, play_count);
return SDL_TRUE;
}
May 22, 2013
May 22, 2013
219
}
Oct 17, 2017
Oct 17, 2017
220
return SDL_FALSE;
Oct 21, 1999
Oct 21, 1999
221
222
223
}
/* Pause playback of a given music stream */
Oct 17, 2017
Oct 17, 2017
224
static void MusicCMD_Pause(void *context)
Oct 21, 1999
Oct 21, 1999
225
{
Oct 17, 2017
Oct 17, 2017
226
227
MusicCMD *music = (MusicCMD *)context;
if (music->pid > 0) {
May 22, 2013
May 22, 2013
228
229
kill(music->pid, SIGSTOP);
}
Oct 21, 1999
Oct 21, 1999
230
231
232
}
/* Resume playback of a given music stream */
Oct 17, 2017
Oct 17, 2017
233
static void MusicCMD_Resume(void *context)
Oct 21, 1999
Oct 21, 1999
234
{
Oct 17, 2017
Oct 17, 2017
235
236
MusicCMD *music = (MusicCMD *)context;
if (music->pid > 0) {
May 22, 2013
May 22, 2013
237
238
kill(music->pid, SIGCONT);
}
Oct 21, 1999
Oct 21, 1999
239
240
}
Oct 17, 2017
Oct 17, 2017
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/* Stop playback of a stream previously started with MusicCMD_Start() */
static void MusicCMD_Stop(void *context)
{
MusicCMD *music = (MusicCMD *)context;
int status;
if (music->pid > 0) {
while (kill(music->pid, 0) == 0) {
kill(music->pid, SIGTERM);
sleep(1);
waitpid(music->pid, &status, WNOHANG);
}
music->pid = 0;
}
}
Oct 21, 1999
Oct 21, 1999
257
/* Close the given music stream */
Oct 17, 2017
Oct 17, 2017
258
void MusicCMD_Delete(void *context)
Oct 21, 1999
Oct 21, 1999
259
{
Oct 17, 2017
Oct 17, 2017
260
MusicCMD *music = (MusicCMD *)context;
May 22, 2013
May 22, 2013
261
262
SDL_free(music->file);
SDL_free(music);
Oct 21, 1999
Oct 21, 1999
263
264
}
Oct 17, 2017
Oct 17, 2017
265
Mix_MusicInterface Mix_MusicInterface_CMD =
Oct 21, 1999
Oct 21, 1999
266
{
Oct 17, 2017
Oct 17, 2017
267
268
269
270
271
"CMD",
MIX_MUSIC_CMD,
MUS_CMD,
SDL_FALSE,
SDL_FALSE,
May 22, 2013
May 22, 2013
272
Oct 17, 2017
Oct 17, 2017
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
NULL, /* Load */
NULL, /* Open */
NULL, /* CreateFromRW */
MusicCMD_CreateFromFile,
NULL, /* SetVolume */
MusicCMD_Play,
MusicCMD_IsPlaying,
NULL, /* GetAudio */
NULL, /* Seek */
MusicCMD_Pause,
MusicCMD_Resume,
MusicCMD_Stop,
MusicCMD_Delete,
NULL, /* Close */
NULL, /* Unload */
};
#endif /* MUSIC_CMD */
Oct 21, 1999
Oct 21, 1999
291
Oct 17, 2017
Oct 17, 2017
292
/* vi: set ts=4 sw=4 expandtab: */