/*
Copyright (C) 2014 CSP Innovazione nelle ICT s.c.a r.l. (http://rd.csp.it/)
Copyright (C) 2014, 2015 Matthias P. Braendli (http://opendigitalradio.org)
Copyright (C) 2015, 2016, 2017 Stefan Pöschel (http://opendigitalradio.org)
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 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
/*!
\file odr-padenc.h
\brief Generate PAD data for MOT Slideshow and DLS
\author Sergio Sagliocco
\author Matthias P. Braendli
\author Stefan Pöschel
*/
#include "common.h"
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include "pad_common.h"
#include "dls.h"
#include "sls.h"
using std::chrono::steady_clock;
// --- PadEncoderOptions -----------------------------------------------------------------
struct PadEncoderOptions {
size_t padlen;
bool erase_after_tx;
int slide_interval;
bool raw_slides;
DL_PARAMS dl_params;
const char* sls_dir;
const char* output;
std::vector dls_files;
PadEncoderOptions() :
padlen(58),
erase_after_tx(false),
slide_interval(10),
raw_slides(false),
sls_dir(NULL),
output("/tmp/pad.fifo")
{}
bool DLSEnabled() {return !dls_files.empty();}
bool SLSEnabled() {return sls_dir;}
};
// --- PadEncoder -----------------------------------------------------------------
class PadEncoder {
protected:
PadEncoderOptions options;
PADPacketizer pad_packetizer;
DLSEncoder dls_encoder;
SLSEncoder sls_encoder;
SlideStore slides;
int curr_dls_file;
int output_fd;
steady_clock::time_point run_timeline;
std::mutex status_mutex;
bool do_exit;
PadEncoder(PadEncoderOptions options) :
options(options),
pad_packetizer(PADPacketizer(options.padlen)),
dls_encoder(DLSEncoder(&pad_packetizer)),
sls_encoder(SLSEncoder(&pad_packetizer)),
curr_dls_file(0),
output_fd(-1),
run_timeline(steady_clock::now()),
do_exit(false)
{}
virtual int Encode() = 0;
public:
virtual ~PadEncoder() {}
int Main();
void DoExit();
};
// --- BurstPadEncoder -----------------------------------------------------------------
class BurstPadEncoder : public PadEncoder {
private:
static const int DLS_REPETITION_WHILE_SLS;
int Encode();
public:
BurstPadEncoder(PadEncoderOptions options) : PadEncoder(options) {}
};