-
Notifications
You must be signed in to change notification settings - Fork 210
/
gen.c
565 lines (521 loc) · 15.2 KB
/
gen.c
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
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
/*
* gen.c -- generate different test signals
*
* Copyright (C) 1997
* Thomas Sailer (sailer@ife.ee.ethz.ch, hb9jnx@hb9w.che.eu)
*
* Copyright (C) 2012/2013
* Elias Oenal (EliasOenal@gmail.com)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* ---------------------------------------------------------------------- */
#ifdef _MSC_VER
#include "msvc_support.h"
#endif
#include "gen.h"
#include <sys/types.h>
#include <sys/stat.h>
#ifndef _MSC_VER
#include <sys/wait.h>
#include <unistd.h>
#endif
#include <string.h>
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#include <math.h>
#include <stdlib.h>
#ifdef SUN_AUDIO
#include <sys/audioio.h>
#include <stropts.h>
#include <sys/conf.h>
#elif DUMMY_AUDIO
// NO AUDIO FOR OSX :/
#else /* SUN_AUDIO */
#include <sys/soundcard.h>
#include <sys/ioctl.h>
#endif /* SUN_AUDIO */
/* ---------------------------------------------------------------------- */
#ifdef __sun__
#include <stdarg.h>
int snprintf(char *buf, size_t sz, const char *fmt, ...)
{
int i;
va_list arg;
va_start(arg, fmt);
i = vsprintf(buf, fmt, arg);
va_end(arg);
return i;
}
#endif /* __sun__ */
/* ---------------------------------------------------------------------- */
static const char *allowed_types[] = {
"raw", "aiff", "au", "hcom", "sf", "voc", "cdr", "dat",
"smp", "wav", "maud", "vwe", NULL
};
/* ---------------------------------------------------------------------- */
typedef void (*t_init_procs)(struct gen_params *, struct gen_state *);
typedef int (*t_gen_procs)(signed short *, int, struct gen_params *, struct gen_state *);
static const t_init_procs init_procs[] = {
gen_init_dtmf, gen_init_sine, gen_init_zvei, gen_init_hdlc, gen_init_uart, gen_init_clipfsk
};
static const t_gen_procs gen_procs[] = {
gen_dtmf, gen_sine, gen_zvei, gen_hdlc, gen_uart, gen_clipfsk
};
/* ---------------------------------------------------------------------- */
#define MAX_GEN 16
static struct gen_params params[MAX_GEN];
static struct gen_state state[MAX_GEN];
static int num_gen = 0;
/* ---------------------------------------------------------------------- */
static int process_buffer(short *buf, int len)
{
int i;
int totnum = 0, num;
memset(buf, 0, len*sizeof(buf[0]));
for (i = 0; i < num_gen; i++) {
if (params[i].type >= sizeof(gen_procs)/sizeof(gen_procs[0]))
break;
if (!gen_procs[params[i].type])
break;
num = gen_procs[params[i].type](buf, len, params+i, state+i);
if (num > totnum)
totnum = num;
}
return totnum;
}
/* ---------------------------------------------------------------------- */
#ifdef SUN_AUDIO
static void output_sound(unsigned int sample_rate, const char *ifname)
{
audio_info_t audioinfo;
audio_info_t audioinfo2;
audio_device_t audiodev;
int fd;
short buffer[8192];
short *sp;
int i, num, num2;
if ((fd = open(ifname ? ifname : "/dev/audio", O_WRONLY)) < 0) {
perror("open");
exit (10);
}
if (ioctl(fd, AUDIO_GETDEV, &audiodev) == -1) {
perror("ioctl: AUDIO_GETDEV");
exit (10);
}
AUDIO_INITINFO(&audioinfo);
audioinfo.record.sample_rate = sample_rate;
audioinfo.record.channels = 1;
audioinfo.record.precision = 16;
audioinfo.record.encoding = AUDIO_ENCODING_LINEAR;
/*audioinfo.record.gain = 0x20;
audioinfo.record.port = AUDIO_LINE_IN;
audioinfo.monitor_gain = 0;*/
if (ioctl(fd, AUDIO_SETINFO, &audioinfo) == -1) {
perror("ioctl: AUDIO_SETINFO");
exit (10);
}
if (ioctl(fd, I_FLUSH, FLUSHW) == -1) {
perror("ioctl: I_FLUSH");
exit (10);
}
if (ioctl(fd, AUDIO_GETINFO, &audioinfo2) == -1) {
perror("ioctl: AUDIO_GETINFO");
exit (10);
}
fprintf(stdout, "Audio device: name %s, ver %s, config %s, "
"sampling rate %d\n", audiodev.name, audiodev.version,
audiodev.config, audioinfo.record.sample_rate);
do {
num2 = num = process_buffer(sp = buffer, sizeof(buffer)/sizeof(buffer[0]));
while (num > 0) {
i = write(fd, sp, num*sizeof(sp[0]));
if (i < 0 && errno != EAGAIN) {
perror("write");
exit(4);
}
if (i > 0) {
if (i % sizeof(sp[0]))
fprintf(stderr, "gen: warning: write wrote noninteger number of samples\n");
num -= i / sizeof(sp[0]);
}
}
} while (num2 > 0);
close(fd);
}
#elif DUMMY_AUDIO
static void output_sound(unsigned int sample_rate, const char *ifname)
{
//printf("DUMMY SOUND OUT!");
//fflush(stdout);
}
#else /* SUN_AUDIO */
/* ---------------------------------------------------------------------- */
static void output_sound(unsigned int sample_rate, const char *ifname)
{
int sndparam;
int fd;
union {
short s[8192];
unsigned char b[8192];
} b;
int i;
short *sp;
unsigned char *bp;
int fmt = 0, num, num2;
if ((fd = open(ifname ? ifname : "/dev/dsp", O_WRONLY)) < 0) {
perror("open");
exit (10);
}
sndparam = AFMT_S16_LE; /* we want 16 bits/sample signed */
/* little endian; works only on little endian systems! */
if (ioctl(fd, SNDCTL_DSP_SETFMT, &sndparam) == -1) {
perror("ioctl: SNDCTL_DSP_SETFMT");
exit (10);
}
if (sndparam != AFMT_S16_LE) {
fmt = 1;
sndparam = AFMT_U8;
if (ioctl(fd, SNDCTL_DSP_SETFMT, &sndparam) == -1) {
perror("ioctl: SNDCTL_DSP_SETFMT");
exit (10);
}
if (sndparam != AFMT_U8) {
perror("ioctl: SNDCTL_DSP_SETFMT");
exit (10);
}
}
sndparam = 0; /* we want only 1 channel */
if (ioctl(fd, SNDCTL_DSP_STEREO, &sndparam) == -1) {
perror("ioctl: SNDCTL_DSP_STEREO");
exit (10);
}
if (sndparam != 0) {
fprintf(stderr, "gen: Error, cannot set the channel "
"number to 1\n");
exit (10);
}
sndparam = sample_rate;
if (ioctl(fd, SNDCTL_DSP_SPEED, &sndparam) == -1) {
perror("ioctl: SNDCTL_DSP_SPEED");
exit (10);
}
if ((10*abs(sndparam-sample_rate)) > sample_rate) {
perror("ioctl: SNDCTL_DSP_SPEED");
exit (10);
}
if (sndparam != sample_rate) {
fprintf(stderr, "Warning: Sampling rate is %u, "
"requested %u\n", sndparam, sample_rate);
}
#if 0
sndparam = 4;
if (ioctl(fd, SOUND_PCM_SUBDIVIDE, &sndparam) == -1) {
perror("ioctl: SOUND_PCM_SUBDIVIDE");
}
if (sndparam != 4) {
perror("ioctl: SOUND_PCM_SUBDIVIDE");
}
#endif
do {
num2 = num = process_buffer(b.s, sizeof(b.s)/sizeof(b.s[0]));
if (fmt) {
for (bp = b.b, sp = b.s, i = sizeof(b.s)/sizeof(b.s[0]); i > 0; i--, bp++, sp++)
*bp = 0x80 + (*sp >> 8);
bp = b.b;
while (num > 0) {
i = write(fd, bp, num*sizeof(bp[0]));
if (i < 0 && errno != EAGAIN) {
perror("write");
exit(4);
}
if (i > 0) {
if (i % sizeof(bp[0]))
fprintf(stderr, "gen: warning: write wrote noninteger number of samples\n");
num -= i / sizeof(bp[0]);
}
}
} else {
sp = b.s;
while (num > 0) {
i = write(fd, sp, num*sizeof(sp[0]));
if (i < 0 && errno != EAGAIN) {
perror("write");
exit(4);
}
if (i > 0) {
if (i % sizeof(sp[0]))
fprintf(stderr, "gen: warning: write wrote noninteger number of samples\n");
num -= i / sizeof(sp[0]);
}
}
}
} while (num2 > 0);
close(fd);
}
#endif /* SUN_AUDIO */
/* ---------------------------------------------------------------------- */
static void output_file(unsigned int sample_rate, const char *fname, const char *type)
{
struct stat statbuf;
int pipedes[2];
int pid = 0, soxstat;
int fd;
int i, num, num2;
short buffer[8192];
short *sp;
/*
* if the input type is not raw, sox is started to convert the
* samples to the requested format
*/
if (!type || !strcmp(type, "raw")) {
if ((fd = open(fname, O_WRONLY|O_CREAT|O_EXCL, 0777)) < 0) {
perror("open");
exit(10);
}
} else {
if (!stat(fname, &statbuf)) {
fprintf(stderr, "file already exists: %s\n",fname);
exit(10);
}
if (pipe(pipedes)) {
perror("pipe");
exit(10);
}
if (!(pid = fork())) {
char srate[8];
/*
* child starts here... first set up filedescriptors,
* then start sox...
*/
snprintf(srate, sizeof(srate), "%d", sample_rate);
close(pipedes[1]); /* close writing pipe end */
close(0); /* close standard input */
if (dup2(pipedes[0], 0) < 0)
perror("dup2");
close(pipedes[0]); /* close reading pipe end */
execlp("sox", "sox",
"-t", "raw", "-esigned-integer", "-b16", "-r", srate, "-",
"-t", type, fname,
NULL);
perror("execlp");
exit(10);
}
if (pid < 0) {
perror("fork");
exit(10);
}
close(pipedes[0]); /* close reading pipe end */
fd = pipedes[1];
}
/*
* modulate
*/
do {
num2 = num = process_buffer(sp = buffer, sizeof(buffer)/sizeof(buffer[0]));
while (num > 0) {
i = write(fd, sp, num*sizeof(sp[0]));
if (i < 0 && errno != EAGAIN) {
perror("write");
exit(4);
}
if (i > 0) {
if (i % sizeof(sp[0]))
fprintf(stderr, "gen: warning: write wrote noninteger number of samples\n");
num -= i / sizeof(sp[0]);
}
}
} while (num2 > 0);
close(fd);
waitpid(pid, &soxstat, 0);
}
/* ---------------------------------------------------------------------- */
static const char usage_str[] = "Generates test signals\n"
" -t <type> : output file type (any other type than raw requires sox)\n"
" -a <ampl> : amplitude\n"
" -d <str> : encode DTMF string\n"
" -z <str> : encode ZVEI string\n"
" -s <freq> : encode sine\n"
" -u <text> : encode uart string\n"
" -p <text> : encode hdlc packet\n"
" -c <str> : encode CLIP FSK string\n"
" -h : this help\n";
int main(int argc, char *argv[])
{
int c;
int errflg = 0;
char **otype;
char *output_type = "hw";
char *cp;
fprintf(stdout, "gen-ng - (C) 1997 by Tom Sailer HB9JNX/AE4WA\n"
" (C) 2012/2013 by Elias Oenal\n");
while ((c = getopt(argc, argv, "t:a:d:s:z:p:u:c:h")) != EOF) {
switch (c) {
case 'h':
case '?':
errflg++;
break;
case 't':
for (otype = (char **)allowed_types; *otype; otype++)
if (!strcmp(*otype, optarg)) {
output_type = *otype;
goto outtypefound;
}
fprintf(stderr, "invalid output type \"%s\"\n"
"allowed types: ", optarg);
for (otype = (char **)allowed_types; *otype; otype++)
fprintf(stderr, "%s ", *otype);
fprintf(stderr, "\n");
errflg++;
outtypefound:
break;
case 'a':
if (num_gen <= 0) {
fprintf(stderr, "gen: no generator selected\n");
errflg++;
}
if (!(cp = strstr(optarg, "dB")))
cp = strstr(optarg, "db");
if (cp) {
*cp = '\0';
params[num_gen-1].ampl = 16384.0 * pow(10.0, strtod(optarg, NULL) / 20.0);
} else {
params[num_gen-1].ampl = 16384.0 * strtod(optarg, NULL);
}
break;
case 'd':
num_gen++;
if (num_gen > MAX_GEN) {
fprintf(stderr, "too many generators\n");
errflg++;
break;
}
params[num_gen-1].type = gentype_dtmf;
params[num_gen-1].ampl = 16384;
params[num_gen-1].p.dtmf.duration = MS(100);
params[num_gen-1].p.dtmf.pause = MS(100);
strncpy(params[num_gen-1].p.dtmf.str, optarg, sizeof(params[num_gen-1].p.dtmf.str));
break;
case 's':
num_gen++;
if (num_gen > MAX_GEN) {
fprintf(stderr, "too many generators\n");
errflg++;
break;
}
params[num_gen-1].type = gentype_sine;
params[num_gen-1].ampl = 16384;
params[num_gen-1].p.sine.duration = MS(1000);
params[num_gen-1].p.sine.freq = strtoul(optarg, NULL, 0);
break;
case 'z':
num_gen++;
if (num_gen > MAX_GEN) {
fprintf(stderr, "too many generators\n");
errflg++;
break;
}
params[num_gen-1].type = gentype_zvei;
params[num_gen-1].ampl = 16384;
params[num_gen-1].p.zvei.duration = MS(50);
params[num_gen-1].p.zvei.pause = MS(50);
strncpy(params[num_gen-1].p.zvei.str, optarg, sizeof(params[num_gen-1].p.dtmf.str));
break;
case 'u':
num_gen++;
if (num_gen > MAX_GEN) {
fprintf(stderr, "too many generators\n");
errflg++;
break;
}
params[num_gen-1].type = gentype_uart;
params[num_gen-1].ampl = 16384;
params[num_gen-1].p.uart.txdelay = 2;
strncpy(params[num_gen-1].p.uart.pkt, optarg, sizeof(params[num_gen-1].p.uart.pkt));
params[num_gen-1].p.uart.pktlen = strlen(params[num_gen-1].p.uart.pkt);
break;
case 'c':
num_gen++;
if (num_gen > MAX_GEN) {
fprintf(stderr, "too many generators\n");
errflg++;
break;
}
params[num_gen-1].type = gentype_clipfsk;
params[num_gen-1].ampl = 16384;
params[num_gen-1].p.clipfsk.txdelay = 2;
strncpy(params[num_gen-1].p.clipfsk.pkt, optarg, sizeof(params[num_gen-1].p.clipfsk.pkt));
params[num_gen-1].p.clipfsk.pktlen = strlen(params[num_gen-1].p.clipfsk.pkt);
break;
case 'p':
num_gen++;
if (num_gen > MAX_GEN) {
fprintf(stderr, "too many generators\n");
errflg++;
break;
}
params[num_gen-1].type = gentype_hdlc;
params[num_gen-1].ampl = 16384;
params[num_gen-1].p.hdlc.modulation = 0;
params[num_gen-1].p.hdlc.txdelay = 100;
params[num_gen-1].p.hdlc.pkt[0] = ('H') << 1;
params[num_gen-1].p.hdlc.pkt[1] = ('B') << 1;
params[num_gen-1].p.hdlc.pkt[2] = ('9') << 1;
params[num_gen-1].p.hdlc.pkt[3] = ('J') << 1;
params[num_gen-1].p.hdlc.pkt[4] = ('N') << 1;
params[num_gen-1].p.hdlc.pkt[5] = ('X') << 1;
params[num_gen-1].p.hdlc.pkt[6] = (0x00) << 1;
params[num_gen-1].p.hdlc.pkt[7] = ('A') << 1;
params[num_gen-1].p.hdlc.pkt[8] = ('E') << 1;
params[num_gen-1].p.hdlc.pkt[9] = ('4') << 1;
params[num_gen-1].p.hdlc.pkt[10] = ('W') << 1;
params[num_gen-1].p.hdlc.pkt[11] = ('A') << 1;
params[num_gen-1].p.hdlc.pkt[12] = (' ') << 1;
params[num_gen-1].p.hdlc.pkt[13] = ((0x00) << 1) | 1;
params[num_gen-1].p.hdlc.pkt[14] = 0x03;
params[num_gen-1].p.hdlc.pkt[15] = 0xf0;
strncpy(params[num_gen-1].p.hdlc.pkt+16, optarg,
sizeof(params[num_gen-1].p.hdlc.pkt)-16);
params[num_gen-1].p.hdlc.pktlen = 16 +
strlen(params[num_gen-1].p.hdlc.pkt+16);
}
}
if (errflg || num_gen <= 0) {
(void)fprintf(stderr, usage_str);
exit(2);
}
memset(state, 0, sizeof(state));
for (c = 0; c < num_gen; c++) {
if (params[c].type >= sizeof(init_procs)/sizeof(init_procs[0]))
break;
if (!init_procs[params[c].type])
break;
init_procs[params[c].type](params+c, state+c);
}
if (!strcmp(output_type, "hw")) {
if ((argc - optind) >= 1)
output_sound(SAMPLE_RATE, argv[optind]);
else
output_sound(SAMPLE_RATE, NULL);
exit(0);
}
if ((argc - optind) < 1) {
(void)fprintf(stderr, "no destination file specified\n");
exit(4);
}
output_file(SAMPLE_RATE, argv[optind], output_type);
exit(0);
}