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
|
/*
Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Her Majesty the Queen in
Right of Canada (Communications Research Center Canada)
Copyright (C) 2013 Matthias P. Braendli
http://mpb.li
An object-oriented version of the output channels.
*/
/*
This file is part of CRC-DabMux.
CRC-DabMux 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-DabMux 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-DabMux. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __DAB_OUTPUT_H
#define __DAB_OUTPUT_H
#include "UdpSocket.h"
#include "TcpServer.h"
#include "TcpLog.h"
#include <stdexcept>
#include <signal.h>
#ifdef _WIN32
# include <io.h>
# ifdef __MINGW32__
# define FS_DECLARE_CFG_ARRAYS
# include <winioctl.h>
# endif
# include <sdci.h>
#else
# include <unistd.h>
# include <sys/time.h>
# ifndef O_BINARY
# define O_BINARY 0
# endif // O_BINARY
#endif
#ifdef HAVE_OUTPUT_ZEROMQ
# include "zmq.hpp"
#endif
extern TcpLog etiLog;
// Abstract base class for all outputs
class DabOutput
{
public:
virtual int Open(const char* name) = 0;
int Open(std::string name)
{
return Open(name.c_str());
}
virtual int Write(void* buffer, int size) = 0;
virtual int Close() = 0;
virtual ~DabOutput() {};
};
// ----- used in File and Fifo outputs
enum EtiFileType {
ETI_FILE_TYPE_NONE = 0,
ETI_FILE_TYPE_RAW,
ETI_FILE_TYPE_STREAMED,
ETI_FILE_TYPE_FRAMED
};
// ---------- File output ------------
class DabOutputFile : public DabOutput
{
public:
DabOutputFile() {
nbFrames_ = 0;
file_ = -1;
type_ = ETI_FILE_TYPE_FRAMED;
}
DabOutputFile(const DabOutputFile& other)
{
file_ = other.file_;
nbFrames_ = other.nbFrames_;
type_ = other.type_;
}
~DabOutputFile() {}
int Open(const char* filename);
int Write(void* buffer, int size);
int Close();
protected:
int file_;
EtiFileType type_;
unsigned long nbFrames_;
};
// ---------- FIFO output ------------
// only write is different for the FIFO output
class DabOutputFifo : public DabOutputFile
{
public:
DabOutputFifo() : DabOutputFile() {}
~DabOutputFifo() {}
int Write(void* buffer, int size);
};
// -------------- RAW socket -----------
class DabOutputRaw : public DabOutput
{
public:
DabOutputRaw()
{
#ifdef _WIN32
socket_ = INVALID_HANDLE_VALUE;
#else
socket_ = -1;
isCyclades_ = false;
#endif
buffer_ = new unsigned char[6144];
}
DabOutputRaw(const DabOutputRaw& other)
{
socket_ = other.socket_;
#ifndef _WIN32
isCyclades_ = other.isCyclades_;
#endif
buffer_ = other.buffer_;
}
~DabOutputRaw() {
delete[] buffer_;
}
int Open(const char* name);
int Write(void* buffer, int size);
int Close();
private:
#ifdef _WIN32
HANDLE socket_;
#else
int socket_;
bool isCyclades_;
#endif
unsigned char* buffer_;
};
// -------------- UDP ------------------
class DabOutputUdp : public DabOutput
{
public:
DabOutputUdp() {
UdpSocket::init();
packet_ = new UdpPacket(6144);
socket_ = new UdpSocket();
}
DabOutputUdp(const DabOutputUdp& other)
{
packet_ = other.packet_;
socket_ = other.socket_;
}
~DabOutputUdp() {
delete socket_;
delete packet_;
}
int Open(const char* name);
int Write(void* buffer, int size);
int Close() { return 0; }
private:
UdpSocket* socket_;
UdpPacket* packet_;
};
// -------------- TCP ------------------
class DabOutputTcp : public DabOutput
{
public:
DabOutputTcp()
{
TcpSocket::init();
server = new TcpServer();
client = NULL;
}
DabOutputTcp(const DabOutputTcp& other)
{
server = other.server;
client = other.client;
thread_ = other.thread_;
}
~DabOutputTcp() {
#ifdef _WIN32
CloseHandle(this->thread_);
#endif
delete this->server;
delete this->client;
}
int Open(const char* name);
int Write(void* buffer, int size);
int Close();
TcpServer* server;
TcpSocket* client;
private:
pthread_t thread_;
};
// -------------- Simul ------------------
class DabOutputSimul : public DabOutput
{
public:
DabOutputSimul() {}
DabOutputSimul(const DabOutputSimul& other)
{
startTime_ = other.startTime_;
}
~DabOutputSimul() { }
int Open(const char* name);
int Write(void* buffer, int size);
int Close() { return 0; }
private:
#ifdef _WIN32
DWORD startTime_;
#else
timeval startTime_;
#endif
};
#if defined(HAVE_OUTPUT_ZEROMQ)
// -------------- ZeroMQ message queue ------------------
class DabOutputZMQ : public DabOutput
{
public:
DabOutputZMQ() :
zmq_proto_(""), zmq_context_(1), zmq_pub_sock_(zmq_context_, ZMQ_PUB)
{
throw std::runtime_error("ERROR: No ZMQ protocol specified !");
}
DabOutputZMQ(std::string zmq_proto) :
zmq_proto_(zmq_proto), zmq_context_(1), zmq_pub_sock_(zmq_context_, ZMQ_PUB)
{ }
DabOutputZMQ(const DabOutputZMQ& other) :
zmq_proto_(other.zmq_proto_), zmq_context_(1), zmq_pub_sock_(zmq_context_, ZMQ_PUB)
{
// cannot copy context
}
~DabOutputZMQ()
{
zmq_pub_sock_.close();
}
int Open(const char* name);
int Write(void* buffer, int size);
int Close();
private:
std::string zmq_proto_;
zmq::context_t zmq_context_; // handle for the zmq context
zmq::socket_t zmq_pub_sock_; // handle for the zmq publisher socket
};
#endif
#endif
|