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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
|
/*
opcodes.c
Copyright (C) 2025 Richard Knight
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <plugin.h>
#include "handling.h"
#include "shout.h"
#include "lame/lame.h"
#include "limits.h"
#define ARGT static constexpr char const*
#define ARGO ARGT otypes
#define ARGI ARGT itypes
char* shout_strerror(csnd::Csound* csound, int val) {
const char* output;
switch (val) {
case SHOUTERR_INSANE:
output = "bad parameters";
break;
case SHOUTERR_MALLOC:
output = "could not allocate memory";
break;
case SHOUTERR_NOCONNECT:
output = "could not establish connection";
break;
case SHOUTERR_NOLOGIN:
output = "login refused";
break;
case SHOUTERR_SOCKET:
output = "socket error";
break;
case SHOUTERR_METADATA:
output = "metadata update error";
break;
case SHOUTERR_CONNECTED:
output = "connected, but disconnected state required";
break;
case SHOUTERR_UNCONNECTED:
output = "disconnected, but connected state required";
break;
case SHOUTERR_UNSUPPORTED:
output = "unsupported operation";
break;
}
return csound->strdup((char*) output);
}
const char* handleName = "shout";
struct ShoutSession {
shout_t* shout;
shout_metadata_t* meta;
bool open;
};
struct shoutinit : csnd::Plugin<1, 5> {
ARGO = "i";
ARGI = "SiSSS";
int init() {
ShoutSession* session = (ShoutSession*) csound->malloc(sizeof(ShoutSession));
outargs[0] = createHandle<ShoutSession>(csound, &session, handleName);
STRINGDAT &host = inargs.str_data(0);
int port = (int) inargs[1];
STRINGDAT &user = inargs.str_data(2);
STRINGDAT &password = inargs.str_data(3);
STRINGDAT &mount = inargs.str_data(4);
if (!(session->shout = shout_new())) {
return csound->init_error("Could not allocate shout");
}
if (shout_set_host(session->shout, host.data) != SHOUTERR_SUCCESS) {
return csound->init_error("Could not set host");
}
if (shout_set_protocol(session->shout, SHOUT_PROTOCOL_HTTP) != SHOUTERR_SUCCESS) {
return csound->init_error("Could not set protocol");
}
if (shout_set_port(session->shout, port) != SHOUTERR_SUCCESS) {
return csound->init_error("Could not set port");
}
if (strcmp(password.data, "") != 0 && shout_set_password(session->shout, password.data) != SHOUTERR_SUCCESS) {
return csound->init_error("Could not set password");
}
if (strcmp(mount.data, "") != 0 && shout_set_mount(session->shout, mount.data) != SHOUTERR_SUCCESS) {
return csound->init_error("Could not set mount");
}
if (strcmp(user.data, "") != 0 && shout_set_user(session->shout, user.data) != SHOUTERR_SUCCESS) {
return csound->init_error("Could not set user");
}
if (shout_set_format(session->shout, SHOUT_FORMAT_MP3) != SHOUTERR_SUCCESS) {
return csound->init_error("Could not set format");
}
session->meta = NULL;
session->open = false;
return OK;
}
};
void close_session(ShoutSession* session) {
if (session->open) {
shout_close(session->shout);
session->open = false;
}
if (session->meta != NULL) {
shout_metadata_free(session->meta);
session->meta = NULL;
}
}
struct shoutopen : csnd::InPlug<1> {
ARGO = "";
ARGI = "i";
ShoutSession* session;
int init() {
csound->plugin_deinit(this);
if (!(session = getHandle<ShoutSession>(csound, args[0], handleName))) {
return csound->init_error("Invalid shout session handle");
}
int res = shout_open(session->shout);
if (res != SHOUTERR_SUCCESS) {
shout_close(session->shout);
char* err = csound->strdup((char*) shout_get_error(session->shout));
return csound->init_error(err);
}
session->meta = NULL;
session->open = true;
return OK;
}
int deinit() {
close_session(session);
return OK;
}
};
struct shoutclose : csnd::InPlug<1> {
ARGO = "";
ARGI = "i";
int init() {
ShoutSession* session;
if (!(session = getHandle<ShoutSession>(csound, args[0], handleName))) {
return csound->init_error("Invalid shout session handle");
}
close_session(session);
return OK;
}
};
int setdata(csnd::Csound* csound, MYFLT id, int type, char* value) {
ShoutSession* session;
if (!(session = getHandle<ShoutSession>(csound, id, handleName))) {
return csound->init_error("Invalid shout session handle");
}
shout_t* s = session->shout;
int res;
switch (type) {
case 0:
res = shout_set_name(s, value);
break;
case 1:
res = shout_set_public(s, !strcmp(value, "public"));
break;
case 2:
res = shout_set_url(s, value);
break;
case 3:
res = shout_set_genre(s, value);
break;
case 4:
res = shout_set_description(s, value);
break;
}
if (res != SHOUTERR_SUCCESS) {
return csound->init_error((char*) shout_get_error(session->shout));
} else {
return OK;
}
}
#define SHOUTSET(settype)\
ARGO = "";\
ARGI = "iS";\
int init() {\
STRINGDAT &value = args.str_data(1);\
return setdata(csound, args[0], settype, value.data);\
}\
struct shoutsetname : csnd::InPlug<2> {
SHOUTSET(0)
};
struct shoutseturl : csnd::InPlug<2> {
SHOUTSET(2);
};
struct shoutsetgenre : csnd::InPlug<2> {
SHOUTSET(3);
};
struct shoutsetdescription : csnd::InPlug<2> {
SHOUTSET(4);
};
struct shoutsetpublic : csnd::InPlug<2> {
ARGO = "";
ARGI = "ii";
int init() {
return setdata(csound, args[0], 1, (char*) ((args[1] == 0) ? "private" : "public"));
}
};
struct shoutsetmeta : csnd::InPlug<3> {
ARGO = "";
ARGI = "iSS";
int init() {
ShoutSession* session;
if (!(session = getHandle<ShoutSession>(csound, args[0], handleName))) {
return csound->init_error("Invalid shout session handle");
}
if (!session->open) {
return csound->init_error("Connection is not open");
}
if (session->meta == NULL) {
if (!(session->meta = shout_metadata_new())) {
return csound->init_error("Could not allocate metadata");
} else {
shout_set_metadata(session->shout, session->meta);
}
}
STRINGDAT &key = args.str_data(1);
STRINGDAT &value = args.str_data(2);
int mres = shout_metadata_add(session->meta, key.data, value.data);
return OK;
}
};
/*
class SendThread : public csnd::Thread { // in progress...
MYFLT* bufferL;
MYFLT* bufferR;
ShoutSession* session;
lame_global_flags* lame;
int wpos;
SendThread(csnd::Csound *csound, ShoutSession* shoutSession, lame_global_flags* lameFlags) :
Thread(csound), session(shoutSession), lame(lameFlags) {
wpos = 0;
};
uintptr_t run() {
if (inbufferPos >= inbufferSize) {
outSize += lame_encode_buffer_int(lame, inbufferL, inbufferR, inbufferSize, outbuffer, outMaxSize);
//std::cout << shout_delay(session->shout) << "\n";
shout_sync(session->shout);
shout_send(session->shout, outbuffer, outSize);
inbufferPos = 0;
outSize = 0;
}
}
void send() {
}
int addbuffer(MYFLT* left, MYFLT* right, int size) {
memcpy(bufferL + wpos, left, size);
memcpy(bufferR + wpos, right, size);
wpos += size;
}
}
*/
struct shoutsend : csnd::InPlug<4> {
ARGO = "";
ARGI = "iaaj";
ShoutSession* session;
lame_global_flags* lame;
unsigned char* outbuffer;
int* inbufferL;
int* inbufferR;
int inbufferPos;
int inbufferSize;
int outSize;
int outMaxSize;
int init() {
if (!(session = getHandle<ShoutSession>(csound, args[0], handleName))) {
return csound->init_error("Invalid shout session handle");
}
lame = lame_init();
if (!lame) {
return csound->init_error("Could not setup LAME");
}
csound->plugin_deinit(this);
lame_set_num_channels(lame, 2);
lame_set_in_samplerate(lame, csound->sr());
lame_set_quality(lame, (args[3] == FL(-1)) ? 4 : (int) args[3]);
lame_set_out_samplerate(lame, csound->sr());
lame_init_params(lame);
shout_set_audio_info(session->shout, SHOUT_AI_BITRATE, "128");
outSize = 0;
inbufferPos = 0;
inbufferSize = 2048; // ksmps derived?
outMaxSize = inbufferSize; // * 2; //8192;
outbuffer = (unsigned char*) csound->malloc(sizeof(unsigned char) * outMaxSize);
inbufferL = (int*) csound->malloc(sizeof(int) * inbufferSize);
inbufferR = (int*) csound->malloc(sizeof(int) * inbufferSize);
return OK;
}
int deinit() {
lame_close(lame);
return OK;
}
int aperf() {
for (int i = 0; i < nsmps; i ++) {
inbufferL[inbufferPos] = (int) (args(1)[i] * INT_MAX);
inbufferR[inbufferPos ++] = (int) (args(2)[i] * INT_MAX);
if (inbufferPos >= inbufferSize) {
outSize += lame_encode_buffer_int(lame, inbufferL, inbufferR, inbufferSize, outbuffer, outMaxSize);
//std::cout << shout_delay(session->shout) << "\n";
shout_send(session->shout, outbuffer, outSize);
inbufferPos = 0;
outSize = 0;
}
}
return OK;
}
};
#include <modload.h>
void csnd::on_load(csnd::Csound *csound) {
csnd::plugin<shoutinit>(csound, "shoutinit", csnd::thread::i);
csnd::plugin<shoutopen>(csound, "shoutopen", csnd::thread::i);
csnd::plugin<shoutclose>(csound, "shoutclose", csnd::thread::i);
csnd::plugin<shoutsend>(csound, "shoutsend", csnd::thread::ia);
csnd::plugin<shoutsetname>(csound, "shoutsetname", csnd::thread::i);
csnd::plugin<shoutseturl>(csound, "shoutseturl", csnd::thread::i);
csnd::plugin<shoutsetgenre>(csound, "shoutsetgenre", csnd::thread::i);
csnd::plugin<shoutsetdescription>(csound, "shoutsetdescription", csnd::thread::i);
csnd::plugin<shoutsetpublic>(csound, "shoutsetpublic", csnd::thread::i);
csnd::plugin<shoutsetmeta>(csound, "shoutsetmeta", csnd::thread::i);
}
|