summaryrefslogtreecommitdiffstats
path: root/src/DabMod.cpp
blob: dc14d7ace930397ea9e456644aec2b66dc9d12f4 (plain)
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
564
565
566
567
568
569
570
571
572
573
/*
   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
   Her Majesty the Queen in Right of Canada (Communications Research
   Center Canada)

   Includes modifications for which no copyright is claimed
   2012, Matthias P. Braendli, matthias.braendli@mpb.li
 */
/*
   This file is part of CRC-DADMOD.

   CRC-DADMOD 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 3 of the
   License, or (at your option) any later version.

   CRC-DADMOD 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 CRC-DADMOD.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifdef HAVE_CONFIG_H
#   include "config.h"
#endif

#include "porting.h"

#include "DabModulator.h"
#include "InputMemory.h"
#include "OutputFile.h"
#include "OutputUHD.h"
#include "PcDebug.h"
#include "TimestampDecoder.h"
#include "FIRFilter.h"

#include <complex>
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdexcept>
#include <signal.h>
#include <string.h>

#ifdef HAVE_NETINET_IN_H
#   include <netinet/in.h>
#endif

#ifdef HAVE_DECL__MM_MALLOC
#   include <mm_malloc.h>
#else
#   define memalign(a, b)   malloc(b)
#endif


typedef std::complex<float> complexf;


bool running = true;

void signalHandler(int signalNb)
{
    PDEBUG("signalHandler(%i)\n", signalNb);

    running = false;
}


void printUsage(char* progName, FILE* out = stderr)
{
    fprintf(out, "Usage:\n");
    fprintf(out, "\t%s"
            " [input]"
            " (-f filename | -u uhddevice -F frequency) "
            " [-G txgain]"
            " [-o offset]"
            " [-O offsetfile]"
            " [-T filter_taps_file]"
            " [-a amplitude]"
            " [-c clockrate]"
            " [-g gainMode]"
            " [-h]"
            " [-l]"
            " [-m dabMode]"
            " [-r samplingRate]"
            "\n", progName);
    fprintf(out, "Where:\n");
    fprintf(out, "input:         ETI input filename (default: stdin).\n");
    fprintf(out, "-f name:       Use file output with given filename. (use /dev/stdout for standard output)\n");
    fprintf(out, "-u device:     Use UHD output with given device string. (use "" for default device)\n");
    fprintf(out, "-F frequency:  Set the transmit frequency when using UHD output. (mandatory option when using UHD)\n");
    fprintf(out, "-G txgain:     Set the transmit gain for the UHD driver (default: 0)\n");
    fprintf(out, "-o:            (UHD only) Set the timestamp offset added to the timestamp in the ETI. The offset is a double.\n");
    fprintf(out, "-O:            (UHD only) Set the file containing the timestamp offset added to the timestamp in the ETI.\n"
                                 "The file is read every six seconds, and must contain a double value.\n");
    fprintf(out, "                  Specifying either -o or -O has two implications: It enables synchronous transmission,\n"
                 "                  requiring an external REFCLK and PPS signal and frames that do not contain a valid timestamp\n"
                 "                  get muted.\n\n");
    fprintf(out, "-T taps_file:  Enable filtering before the output, using the specified file containing the filter taps.\n");
    fprintf(out, "-a gain:       Apply digital amplitude gain.\n");
    fprintf(out, "-c rate:       Set the DAC clock rate and enable Cic Equalisation.\n");
    fprintf(out, "-g:            Set computation gain mode: "
            "%u FIX, %u MAX, %u VAR\n", GAIN_FIX, GAIN_MAX, GAIN_VAR);
    fprintf(out, "-h:            Print this help.\n");
    fprintf(out, "-l:            Loop file when reach end of file.\n");
    fprintf(out, "-m mode:       Set DAB mode: (0: auto, 1-4: force).\n");
    fprintf(out, "-r rate:       Set output sampling rate (default: 2048000).\n");
}


void printVersion(FILE *out = stderr)
{
    fprintf(out, "Welcome to %s %s, compiled at %s, %s\n\n",
            PACKAGE, VERSION, __DATE__, __TIME__);
    fprintf(out, "CRC-DABMOD is copyright (C) Her Majesty the Queen in Right of Canada,\n"
            "    2009, 2010, 2011, 2012 Communications Research Centre (CRC).\n"
            "\n"
            "    This program is available free of charge and is licensed to you on a\n"
            "    non-exclusive basis; you may not redistribute it.\n"
            "\n"
            "    This program is provided \"AS IS\" in the hope that it will be useful, but\n"
            "    WITHOUT ANY WARRANTY with respect to its accurancy or usefulness; witout\n"
            "    even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR\n"
            "    PURPOSE and NONINFRINGEMENT.\n"
            "\n"
            "    In no event shall CRC be LIABLE for any LOSS, DAMAGE or COST that may be\n"
            "    incurred in connection with the use of this software.\n"
            "\n"
            "CRC-DABMOD makes use of the following open source packages:\n"
            "    Kiss FFT v1.2.9 (Revised BSD) - http://kissfft.sourceforge.net/\n"
           );

}


int main(int argc, char* argv[])
{
    int ret = 0;
    bool loop = false;
    char* inputName;

    char* outputName;
    char* outputDevice;
    int useFileOutput = 0;
    int useUHDOutput = 0;
    double uhdFrequency = 0.0;
    int uhdTxGain = 0;
    bool uhd_mute_no_timestamps = false;
    bool uhd_enable_sync = false;

    FILE* inputFile = NULL;
    uint32_t sync = 0;
    uint32_t nbFrames = 0;
    uint32_t frame = 0;
    uint16_t frameSize = 0;
    size_t outputRate = 2048000;
    size_t clockRate = 0;
    unsigned dabMode = 0;
    float amplitude = 1.0f;
    GainMode gainMode = GAIN_VAR;
    Buffer data;

    char* filterTapsFilename = NULL;

    // To handle the timestamp offset of the modulator
    struct modulator_offset_config modconf;
    modconf.use_offset_file = false;
    modconf.use_offset_fixed = false;
    modconf.delay_calculation_pipeline_stages = 0;

    Flowgraph* flowgraph = NULL;
    DabModulator* modulator = NULL;
    InputMemory* input = NULL;
    ModOutput* output = NULL;

    signal(SIGINT, signalHandler);

    // Set timezone to UTC
    setenv("TZ", "", 1);
    tzset();

    while (true) {
        int c = getopt(argc, argv, "a:c:f:F:g:G:hlm:o:O:r:T:u:V");
        if (c == -1) {
            break;
        }
        switch (c) {
        case 'a':
            amplitude = strtof(optarg, NULL);
            break;
        case 'c':
            clockRate = strtol(optarg, NULL, 0);
            break;
        case 'f':
            if (useUHDOutput) {
                fprintf(stderr, "Options -u and -f are mutually exclusive\n");
                goto END_MAIN;
            }
            outputName = optarg;
            useFileOutput = 1;
            break;
        case 'F':
            uhdFrequency = strtof(optarg, NULL);
            break;
        case 'g':
            gainMode = (GainMode)strtol(optarg, NULL, 0);
            break;
        case 'G':
            uhdTxGain = (int)strtol(optarg, NULL, 10);
            break;
        case 'l':
            loop = true;
            break;
        case 'o':
            if (modconf.use_offset_file)
            {
                fprintf(stderr, "Options -o and -O are mutually exclusive\n");
                goto END_MAIN;
            }
            modconf.use_offset_fixed = true;
            modconf.offset_fixed = strtod(optarg, NULL);
            uhd_enable_sync = true;
            break;
        case 'O':
            if (modconf.use_offset_fixed)
            {
                fprintf(stderr, "Options -o and -O are mutually exclusive\n");
                goto END_MAIN;
            }
            modconf.use_offset_file = true;
            modconf.offset_filename = optarg;
            uhd_enable_sync = true;
            break;
        case 'm':
            dabMode = strtol(optarg, NULL, 0);
            break;
        case 'r':
            outputRate = strtol(optarg, NULL, 0);
            break;
        case 'T':
            filterTapsFilename = optarg;
            break;
        case 'u':
            if (useFileOutput) {
                fprintf(stderr, "Options -u and -f are mutually exclusive\n");
                goto END_MAIN;
            }
            outputDevice = optarg;
            useUHDOutput = 1;
            break;
        case 'V':
            printVersion();
            goto END_MAIN;
            break;
        case '?':
        case 'h':
            printUsage(argv[0]);
            goto END_MAIN;
            break;
        default:
            fprintf(stderr, "Option '%c' not coded yet!\n", c);
            ret = -1;
            goto END_MAIN;
        }
    }

    // When using offset, enable frame muting
    uhd_mute_no_timestamps = (modconf.use_offset_file || modconf.use_offset_fixed);

    if (!(modconf.use_offset_file || modconf.use_offset_fixed)) {
        fprintf(stderr, "No Modulator offset defined, setting to 0\n");
        modconf.use_offset_fixed = true;
        modconf.offset_fixed = 0;
    }

    // When using the FIRFilter, increase the modulator offset pipelining delay
    // by the correct amount
    if (filterTapsFilename != NULL) {
        modconf.delay_calculation_pipeline_stages += FIRFILTER_PIPELINE_DELAY;
    }


    // Setting ETI input filename
    if (optind < argc) {
        inputName = argv[optind++];
    } else {
        inputName = (char*)"/dev/stdin";
    }
    // Checking unused arguments
    if (optind != argc) {
        fprintf(stderr, "Invalid arguments:");
        while (optind != argc) {
            fprintf(stderr, " %s", argv[optind++]);
        }
        fprintf(stderr, "\n");
        printUsage(argv[0]);
        ret = -1;
        goto END_MAIN;
    }

    if (!useFileOutput && !useUHDOutput) {
        fprintf(stderr, "Must specify output !");
        goto END_MAIN;
    }

    // Print settings
    fprintf(stderr, "Input\n");
    fprintf(stderr, "  Name: %s\n", inputName);
    fprintf(stderr, "Output\n");
    if (useUHDOutput) {
        fprintf(stderr, " UHD, Device: %s\n", outputDevice);
    }
    else if (useFileOutput) {
        fprintf(stderr, "  Name: %s\n", outputName);
    }
    fprintf(stderr, "  Sampling rate: ");
    if (outputRate > 1000) {
        if (outputRate > 1000000) {
            fprintf(stderr, "%.3g MHz\n", outputRate / 1000000.0f);
        } else {
            fprintf(stderr, "%.3g kHz\n", outputRate / 1000.0f);
        }
    } else {
        fprintf(stderr, "%zu Hz\n", outputRate);
    }

    // Opening ETI input file
    inputFile = fopen(inputName, "r");
    if (inputFile == NULL) {
        fprintf(stderr, "Unable to open input file!\n");
        perror(inputName);
        ret = -1;
        goto END_MAIN;
    }

    if (useFileOutput) {
        // Opening COFDM output file
        if (outputName != NULL) {
            fprintf(stderr, "Using file output\n");
            output = new OutputFile(outputName);
        }
    }
    else if (useUHDOutput) {
        fprintf(stderr, "Using UHD output\n");
        amplitude /= 32000.0f;
        output = new OutputUHD(outputDevice, outputRate, uhdFrequency, uhdTxGain, uhd_enable_sync, uhd_mute_no_timestamps);
    }

    flowgraph = new Flowgraph();
    data.setLength(6144);
    input = new InputMemory(&data);
    modulator = new DabModulator(modconf, outputRate, clockRate,
            dabMode, gainMode, amplitude, filterTapsFilename);
    flowgraph->connect(input, modulator);
    flowgraph->connect(modulator, output);

    if (useUHDOutput) {
        ((OutputUHD*)output)->setETIReader(modulator->getEtiReader());
    }

    try {
        while (running) {
            enum EtiStreamType {
                ETI_STREAM_TYPE_NONE = 0,
                ETI_STREAM_TYPE_RAW,
                ETI_STREAM_TYPE_STREAMED,
                ETI_STREAM_TYPE_FRAMED,
            };
            EtiStreamType streamType = ETI_STREAM_TYPE_NONE;

            struct stat inputFileStat;
            fstat(fileno(inputFile), &inputFileStat);
            size_t inputFileLength = inputFileStat.st_size;

            if (fread(&sync, sizeof(sync), 1, inputFile) != 1) {
                fprintf(stderr, "Unable to read sync in input file!\n");
                perror(inputName);
                ret = -1;
                goto END_MAIN;
            }
            if ((sync == 0x49c5f8ff) || (sync == 0xb63a07ff)) {
                streamType = ETI_STREAM_TYPE_RAW;
                if (inputFileLength > 0) {
                    nbFrames = inputFileLength / 6144;
                } else {
                    nbFrames = (uint32_t)-1;
                }
                if (fseek(inputFile, -sizeof(sync), SEEK_CUR) != 0) {
                    if (fread(data.getData(), 6144 - sizeof(sync), 1, inputFile)
                            != 1) {
                        fprintf(stderr, "Unable to seek in input file!\n");
                        ret = -1;
                        goto END_MAIN;
                    }
                }
                goto START;
            }

            nbFrames = sync;
            if (fread(&frameSize, sizeof(frameSize), 1, inputFile) != 1) {
                fprintf(stderr, "Unable to read frame size in input file!\n");
                perror(inputName);
                ret = -1;
                goto END_MAIN;
            }
            sync >>= 16;
            sync &= 0xffff;
            sync |= ((uint32_t)frameSize) << 16;

            if ((sync == 0x49c5f8ff) || (sync == 0xb63a07ff)) {
                streamType = ETI_STREAM_TYPE_STREAMED;
                frameSize = nbFrames & 0xffff;
                if (inputFileLength > 0) {
                    nbFrames = inputFileLength / (frameSize + 2);
                } else {
                    nbFrames = (uint32_t)-1;
                }
                if (fseek(inputFile, -6, SEEK_CUR) != 0) {
                    if (fread(data.getData(), frameSize - 4, 1, inputFile)
                            != 1) {
                        fprintf(stderr, "Unable to seek in input file!\n");
                        ret = -1;
                        goto END_MAIN;
                    }
                }
                goto START;
            }

            if (fread(&sync, sizeof(sync), 1, inputFile) != 1) {
                fprintf(stderr, "Unable to read nb frame in input file!\n");
                perror(inputName);
                ret = -1;
                goto END_MAIN;
            }
            if ((sync == 0x49c5f8ff) || (sync == 0xb63a07ff)) {
                streamType = ETI_STREAM_TYPE_FRAMED;
                if (fseek(inputFile, -6, SEEK_CUR) != 0) {
                    if (fread(data.getData(), frameSize - 4, 1, inputFile)
                            != 1) {
                        fprintf(stderr, "Unable to seek in input file!\n");
                        ret = -1;
                        goto END_MAIN;
                    }
                }
                goto START;
            }

            for (size_t i = 10; i < 6144 + 10; ++i) {
                sync >>= 8;
                sync &= 0xffffff;
                if (fread((uint8_t*)&sync + 3, 1, 1, inputFile) != 1) {
                    fprintf(stderr, "Unable to read in input file!\n");
                    ret = 1;
                    goto END_MAIN;
                }
                if ((sync == 0x49c5f8ff) || (sync == 0xb63a07ff)) {
                    streamType = ETI_STREAM_TYPE_RAW;
                    if (inputFileLength > 0) {
                        nbFrames = (inputFileLength - i) / 6144;
                    } else {
                        nbFrames = (uint32_t)-1;
                    }
                    if (fseek(inputFile, -sizeof(sync), SEEK_CUR) != 0) {
                        if (fread(data.getData(), 6144 - sizeof(sync), 1, inputFile)
                                != 1) {
                            fprintf(stderr, "Unable to seek in input file!\n");
                            ret = -1;
                            goto END_MAIN;
                        }
                    }
                    goto START;
                }
            }

            fprintf(stderr, "Bad input file format!\n");
            ret = -1;
            goto END_MAIN;

START:
            fprintf(stderr, "Input file format: ");
            switch (streamType) {
            case ETI_STREAM_TYPE_RAW:
                fprintf(stderr, "raw");
                break;
            case ETI_STREAM_TYPE_STREAMED:
                fprintf(stderr, "streamed");
                break;
            case ETI_STREAM_TYPE_FRAMED:
                fprintf(stderr, "framed");
                break;
            default:
                fprintf(stderr, "unknown\n");
                ret = -1;
                goto END_MAIN;
            }
            fprintf(stderr, "\n");
            fprintf(stderr, "Input file length: %zu\n", inputFileLength);
            fprintf(stderr, "Input file nb frames: %u\n", nbFrames);

            for (frame = 0; frame < nbFrames; ++frame) {
                if (!running) {
                    break;
                }

                PDEBUG("*****************************************\n");
                PDEBUG("* Reading frame %u\n", frame);
                PDEBUG("*****************************************\n");
                if (streamType == ETI_STREAM_TYPE_RAW) {
                    frameSize = 6144;
                } else {
                    if (fread(&frameSize, sizeof(frameSize), 1, inputFile)
                            != 1) {
                        PDEBUG("End of file!\n");
                        goto END_MAIN;
                    }
                }
                PDEBUG("Frame size: %i\n", frameSize);

                if (fread(data.getData(), frameSize, 1, inputFile) != 1) {
                    fprintf(stderr,
                            "Unable to read %i data bytes in input file!\n",
                            frameSize);
                    perror(inputName);
                    ret = -1;
                    goto END_MAIN;
                }
                memset(&((uint8_t*)data.getData())[frameSize], 0x55, 6144 - frameSize);

                ////////////////////////////////////////////////////////////////
                // Proccessing data
                ////////////////////////////////////////////////////////////////
                flowgraph->run();
            }
            fprintf(stderr, "End of file reached.\n");
            if (!loop) {
                running = false;
            } else {
                fprintf(stderr, "Rewinding file.\n");
                rewind(inputFile);
            }
        }
    } catch (std::exception& e) {
        fprintf(stderr, "EXCEPTION: %s\n", e.what());
        ret = -1;
        goto END_MAIN;
    }

END_MAIN:
    ////////////////////////////////////////////////////////////////////////
    // Cleaning things
    ////////////////////////////////////////////////////////////////////////
    fprintf(stderr, "\n\n");
    fprintf(stderr, "%u DAB frames encoded\n", frame);
    fprintf(stderr, "%f seconds encoded\n", (float)frame * 0.024f);

    fprintf(stderr, "\nCleaning flowgraph...\n");
    delete flowgraph;

    // Cif
    fprintf(stderr, "\nCleaning buffers...\n");

    fprintf(stderr, "\nClosing input file...\n");
    if (inputFile != NULL) {
        fclose(inputFile);
    }

    return ret;
}