Skip to content

Latest commit

 

History

History
280 lines (242 loc) · 6.35 KB

music_cmd.c

File metadata and controls

280 lines (242 loc) · 6.35 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
Jan 2, 2017
Jan 2, 2017
3
Copyright (C) 1997-2017 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
47
48
pid_t pid;
} MusicCMD;
Oct 21, 1999
Oct 21, 1999
49
50
/* Load a music stream from the given file */
Oct 17, 2017
Oct 17, 2017
51
static void *MusicCMD_CreateFromFile(const char *file)
Oct 21, 1999
Oct 21, 1999
52
{
May 22, 2013
May 22, 2013
53
54
MusicCMD *music;
Oct 17, 2017
Oct 17, 2017
55
56
57
58
59
if (!music_cmd) {
Mix_SetError("You must call Mix_SetMusicCMD() first");
return NULL;
}
May 22, 2013
May 22, 2013
60
/* Allocate and fill the music structure */
Oct 17, 2017
Oct 17, 2017
61
62
music = (MusicCMD *)SDL_calloc(1, sizeof *music);
if (music == NULL) {
May 22, 2013
May 22, 2013
63
Mix_SetError("Out of memory");
Oct 17, 2017
Oct 17, 2017
64
return NULL;
May 22, 2013
May 22, 2013
65
66
}
music->file = SDL_strdup(file);
Oct 17, 2017
Oct 17, 2017
67
music->cmd = SDL_strdup(music_cmd);
May 22, 2013
May 22, 2013
68
69
70
music->pid = 0;
/* We're done */
Oct 17, 2017
Oct 17, 2017
71
return music;
Oct 21, 1999
Oct 21, 1999
72
73
74
75
76
}
/* Parse a command line buffer into arguments */
static int ParseCommandLine(char *cmdline, char **argv)
{
May 22, 2013
May 22, 2013
77
78
79
80
char *bufp;
int argc;
argc = 0;
Oct 17, 2017
Oct 17, 2017
81
for (bufp = cmdline; *bufp;) {
May 22, 2013
May 22, 2013
82
/* Skip leading whitespace */
Oct 17, 2017
Oct 17, 2017
83
while (isspace(*bufp)) {
May 22, 2013
May 22, 2013
84
85
86
++bufp;
}
/* Skip over argument */
Oct 17, 2017
Oct 17, 2017
87
if (*bufp == '"') {
May 22, 2013
May 22, 2013
88
++bufp;
Oct 17, 2017
Oct 17, 2017
89
90
if (*bufp) {
if (argv) {
May 22, 2013
May 22, 2013
91
92
93
94
95
argv[argc] = bufp;
}
++argc;
}
/* Skip over word */
Oct 17, 2017
Oct 17, 2017
96
while (*bufp && (*bufp != '"')) {
May 22, 2013
May 22, 2013
97
98
99
++bufp;
}
} else {
Oct 17, 2017
Oct 17, 2017
100
101
if (*bufp) {
if (argv) {
May 22, 2013
May 22, 2013
102
103
104
105
106
argv[argc] = bufp;
}
++argc;
}
/* Skip over word */
Oct 17, 2017
Oct 17, 2017
107
while (*bufp && ! isspace(*bufp)) {
May 22, 2013
May 22, 2013
108
109
110
++bufp;
}
}
Oct 17, 2017
Oct 17, 2017
111
112
if (*bufp) {
if (argv) {
May 22, 2013
May 22, 2013
113
114
115
116
117
*bufp = '\0';
}
++bufp;
}
}
Oct 17, 2017
Oct 17, 2017
118
if (argv) {
May 22, 2013
May 22, 2013
119
120
121
argv[argc] = NULL;
}
return(argc);
Oct 21, 1999
Oct 21, 1999
122
123
124
125
}
static char **parse_args(char *command, char *last_arg)
{
May 22, 2013
May 22, 2013
126
127
128
129
130
int argc;
char **argv;
/* Parse the command line */
argc = ParseCommandLine(command, NULL);
Oct 17, 2017
Oct 17, 2017
131
if (last_arg) {
May 22, 2013
May 22, 2013
132
133
134
++argc;
}
argv = (char **)SDL_malloc((argc+1)*(sizeof *argv));
Oct 17, 2017
Oct 17, 2017
135
if (argv == NULL) {
May 22, 2013
May 22, 2013
136
137
138
139
140
return(NULL);
}
argc = ParseCommandLine(command, argv);
/* Add last command line argument */
Oct 17, 2017
Oct 17, 2017
141
if (last_arg) {
May 22, 2013
May 22, 2013
142
143
144
145
146
147
argv[argc++] = last_arg;
}
argv[argc] = NULL;
/* We're ready! */
return(argv);
Oct 21, 1999
Oct 21, 1999
148
149
150
}
/* Start playback of a given music stream */
Oct 17, 2017
Oct 17, 2017
151
static int MusicCMD_Play(void *context)
Oct 21, 1999
Oct 21, 1999
152
{
Oct 17, 2017
Oct 17, 2017
153
154
MusicCMD *music = (MusicCMD *)context;
Nov 6, 2009
Nov 6, 2009
155
#ifdef HAVE_FORK
May 22, 2013
May 22, 2013
156
music->pid = fork();
Nov 6, 2009
Nov 6, 2009
157
#else
May 22, 2013
May 22, 2013
158
music->pid = vfork();
Nov 6, 2009
Nov 6, 2009
159
#endif
May 22, 2013
May 22, 2013
160
switch(music->pid) {
Oct 17, 2017
Oct 17, 2017
161
162
/* Failed fork() system call */
case -1:
May 22, 2013
May 22, 2013
163
Mix_SetError("fork() failed");
Oct 17, 2017
Oct 17, 2017
164
return -1;
May 22, 2013
May 22, 2013
165
Oct 17, 2017
Oct 17, 2017
166
167
168
/* Child process - executes here */
case 0: {
char **argv;
Oct 13, 2017
Oct 13, 2017
169
Oct 17, 2017
Oct 17, 2017
170
171
172
173
174
/* 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
175
176
}
Oct 17, 2017
Oct 17, 2017
177
/* Execute the command */
Oct 17, 2017
Oct 17, 2017
178
argv = parse_args(music->cmd, music->file);
Oct 17, 2017
Oct 17, 2017
179
180
181
182
183
184
185
186
187
188
189
190
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
191
192
break;
}
Oct 17, 2017
Oct 17, 2017
193
return 0;
Oct 21, 1999
Oct 21, 1999
194
195
}
Oct 17, 2017
Oct 17, 2017
196
197
/* Return non-zero if a stream is currently playing */
static SDL_bool MusicCMD_IsPlaying(void *context)
Oct 21, 1999
Oct 21, 1999
198
{
Oct 17, 2017
Oct 17, 2017
199
MusicCMD *music = (MusicCMD *)context;
May 22, 2013
May 22, 2013
200
201
int status;
Oct 17, 2017
Oct 17, 2017
202
203
204
205
if (music->pid > 0) {
waitpid(music->pid, &status, WNOHANG);
if (kill(music->pid, 0) == 0) {
return SDL_TRUE;
May 22, 2013
May 22, 2013
206
207
}
}
Oct 17, 2017
Oct 17, 2017
208
return SDL_FALSE;
Oct 21, 1999
Oct 21, 1999
209
210
211
}
/* Pause playback of a given music stream */
Oct 17, 2017
Oct 17, 2017
212
static void MusicCMD_Pause(void *context)
Oct 21, 1999
Oct 21, 1999
213
{
Oct 17, 2017
Oct 17, 2017
214
215
MusicCMD *music = (MusicCMD *)context;
if (music->pid > 0) {
May 22, 2013
May 22, 2013
216
217
kill(music->pid, SIGSTOP);
}
Oct 21, 1999
Oct 21, 1999
218
219
220
}
/* Resume playback of a given music stream */
Oct 17, 2017
Oct 17, 2017
221
static void MusicCMD_Resume(void *context)
Oct 21, 1999
Oct 21, 1999
222
{
Oct 17, 2017
Oct 17, 2017
223
224
MusicCMD *music = (MusicCMD *)context;
if (music->pid > 0) {
May 22, 2013
May 22, 2013
225
226
kill(music->pid, SIGCONT);
}
Oct 21, 1999
Oct 21, 1999
227
228
}
Oct 17, 2017
Oct 17, 2017
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/* 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
245
/* Close the given music stream */
Oct 17, 2017
Oct 17, 2017
246
void MusicCMD_Delete(void *context)
Oct 21, 1999
Oct 21, 1999
247
{
Oct 17, 2017
Oct 17, 2017
248
MusicCMD *music = (MusicCMD *)context;
May 22, 2013
May 22, 2013
249
250
SDL_free(music->file);
SDL_free(music);
Oct 21, 1999
Oct 21, 1999
251
252
}
Oct 17, 2017
Oct 17, 2017
253
Mix_MusicInterface Mix_MusicInterface_CMD =
Oct 21, 1999
Oct 21, 1999
254
{
Oct 17, 2017
Oct 17, 2017
255
256
257
258
259
"CMD",
MIX_MUSIC_CMD,
MUS_CMD,
SDL_FALSE,
SDL_FALSE,
May 22, 2013
May 22, 2013
260
Oct 17, 2017
Oct 17, 2017
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
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
279
Oct 17, 2017
Oct 17, 2017
280
/* vi: set ts=4 sw=4 expandtab: */