1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
|
#include "esd.h"
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
#include <getopt.h>
/*****************************************************************/
/* prototypes */
void exit_usage( const char *who, int errcode, const char *why, const char *what );
/*****************************************************************/
void exit_usage( const char *who, int errcode, const char *why, const char *what )
{
/* what went wrong? */
if ( why ) {
fprintf( stderr, "%s error (%d): %s", who, errcode, why );
if ( what ) {
fprintf( stderr, " - %s", what );
}
}
fprintf( stderr, "\n" );
/* tell how it works */
fprintf( stderr, "%s [options] [command]\n", who );
fprintf( stderr,
"\n"
"options:\n"
"-s, --server=host:port contact esd server on host at port\n"
"-p, --prefix=string prefix for cached samples\n"
"\n"
"commands:\n"
"lock foreign clients may not use the server\n"
"unlock foreign clients may use the server\n"
"standby, off suspend sound output for other programs\n"
"resume, on resume sound output\n"
"cache sample cache a sample in the server\n"
"getid name retrieve a sample id from its name\n"
"free name remove a sample from the cache in the server\n"
"play name play a cached sample once\n"
"loop name make a cached sample loop\n"
"stop name stop the looping sample at end\n"
"serverinfo get server info from server\n"
"allinfo get player and sample info from server\n"
"panstream <id> <left> <right> set panning for a stream\n"
"pansample <id> <left> <right> set default panning for a sample\n"
" - left/right pan values scaled to 256.\n"
"standbymode see if server's on standby, etc.\n"
"\n" );
/* terminate with given error code */
exit( errcode );
}
int main(int argc, char **argv)
{
int esd = -1, arg = 0, option_index = 0;
int id = 0, left = 256, right = 256, ok;
char *server = NULL, *prefix = "esound";
esd_server_info_t *server_info = NULL;
esd_info_t *all_info = NULL;
int mode = 0;
struct option opts[] = {
{ "server", required_argument, NULL, 's' },
{ "prefix", required_argument, NULL, 'p' },
{ "file", required_argument, NULL, 'f' },
{ "help", no_argument, NULL, 'h' },
{ "version", no_argument, NULL, 'v' },
{ NULL, 0, NULL, 0 }
};
/* quick sanity check, check number of args */
if ( argc == 1 )
exit_usage( argv[0], 1, "command line", "not enough arguments" );
/* check the command line areguments */
do
{
arg = getopt_long(argc, argv, "s:p:hv", opts, &option_index);
switch (arg)
{
case 's':
server = strdup( optarg );
break;
case 'p':
prefix = strdup(optarg);
break;
case 'h':
exit_usage( argv[ 0 ], 0, NULL, NULL );
break;
case 'v':
printf( "%s %s\n", argv[ 0 ], "VERSION" );
exit( 0 );
case '?':
/* `getopt_long' already printed an error message. */
fprintf(stderr,"Try `%s --help' for more information.\n", argv[ 0 ] );
exit( 2 );
case EOF:
break;
default:
arg = -1;
break;
}
} while ( arg != EOF );
/* make sure we ate all the options */
if ( optind == argc )
exit_usage( argv[ 0 ], 3, "command line", "no command given");
/* contact the server */
esd = esd_open_sound( server );
if ( esd <= 0 ) return 1;
/* control the daemon */
while ( optind < argc )
{
if ( !strcmp( "lock", argv[ optind ] ) ) {
esd_lock( esd );
}
else if ( !strcmp( "unlock", argv[ optind ] ) ) {
esd_unlock( esd );
}
else if ( !strcmp( "off", argv[ optind ] ) ) {
esd_standby( esd );
}
else if ( !strcmp( "standby", argv[ optind ] ) ) {
esd_standby( esd );
}
else if ( !strcmp( "on", argv[ optind ] ) ) {
esd_resume( esd );
}
else if ( !strcmp( "resume", argv[ optind ] ) ) {
esd_resume( esd );
}
else if ( !strcmp( "cache", argv[ optind ] ) ) {
ok = esd_file_cache( esd, argv[ 0 ], argv[ ++optind ] );
printf( "Sample <%d> uploaded. Name = %s:%s\n", ok, argv[ 0 ], argv[ optind ] );
}
else if ( !strcmp( "getid", argv[ optind ] ) ) {
ok = esd_sample_getid( esd, argv[ ++optind ] );
printf( "%d\n", ok );
}
else if ( !strcmp( "free", argv[ optind ] ) ) {
ok = esd_sample_free( esd, esd_sample_getid(esd, argv[ ++optind ]) );
printf( "%d\n", ok );
}
else if ( !strcmp( "play", argv[ optind ] ) ) {
ok = esd_sample_play( esd, esd_sample_getid(esd, argv[ ++optind ]) );
printf( "%d\n", ok );
}
else if ( !strcmp( "loop", argv[ optind ] ) ) {
ok = esd_sample_loop( esd, esd_sample_getid(esd, argv[ ++optind ]) );
printf( "%d\n", ok );
}
else if ( !strcmp( "stop", argv[ optind ] ) ) {
ok = esd_sample_stop( esd, esd_sample_getid(esd, argv[ ++optind ]) );
printf( "%d\n", ok );
}
else if ( !strcmp( "serverinfo", argv[ optind ] ) ) {
server_info = esd_get_server_info( esd );
if ( !server_info ) {
fprintf( stderr, "serverinfo failed\n" );
} else {
esd_print_server_info( server_info );
esd_free_server_info( server_info );
}
}
else if ( !strcmp( "allinfo", argv[ optind ] ) ) {
all_info = esd_get_all_info( esd );
if ( !all_info ) {
fprintf( stderr, "allinfo failed\n" );
} else {
esd_print_all_info( all_info );
esd_free_all_info( all_info );
}
}
else if ( !strcmp( "panstream", argv[ optind ] ) ) {
id = atoi( argv[ ++optind ] );
left = atoi( argv[ ++optind ] );
right = atoi( argv[ ++optind ] );
if ( !id ) {
fprintf( stderr, "panstream failed, id = %d, left = %d, right = %d\n",
id, left, right );
} else {
esd_set_stream_pan( esd, id, left, right );
}
}
else if ( !strcmp( "pansample", argv[ optind ] ) ) {
id = atoi( argv[ ++optind ] );
left = atoi( argv[ ++optind ] );
right = atoi( argv[ ++optind ] );
if ( !id ) {
fprintf( stderr, "pansample failed, id = %d, left = %d, right = %d\n",
id, left, right );
} else {
esd_set_default_sample_pan( esd, id, left, right );
}
}
else if ( !strcmp( "standbymode", argv[ optind ] ) ) {
mode = esd_get_standby_mode( esd );
switch( mode )
{
case ESM_ERROR:
printf( "standby mode failed\n" );
break;
case ESM_ON_STANDBY:
printf( "server is on standby\n" );
break;
case ESM_ON_AUTOSTANDBY:
printf( "server is on autostandby\n" );
break;
case ESM_RUNNING:
printf( "server is running\n" );
break;
default:
printf( "standby mode failed - unexpected return value\n" );
break;
};
}
else {
exit_usage( argv[ 0 ], 3, "unknown command", argv[ optind ] );
}
optind++;
}
close( esd );
return 0;
}
|