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
|
/*
EDI output.
This defines a few TAG items as defined ETSI TS 102 821 and
ETSI TS 102 693
Copyright (C) 2019
Matthias P. Braendli, matthias.braendli@mpb.li
http://www.opendigitalradio.org
*/
/*
This file is part of ODR-DabMux.
ODR-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.
ODR-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 ODR-DabMux. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "edi/TagItems.h"
#include <vector>
#include <iostream>
#include <string>
#include <stdint.h>
#include <stdexcept>
namespace edi {
std::vector<uint8_t> TagStarPTR::Assemble()
{
//std::cerr << "TagItem *ptr" << std::endl;
std::string pack_data("*ptr");
std::vector<uint8_t> packet(pack_data.begin(), pack_data.end());
packet.push_back(0);
packet.push_back(0);
packet.push_back(0);
packet.push_back(0x40);
if (protocol.size() != 4) {
throw std::runtime_error("TagStarPTR protocol invalid length");
}
packet.insert(packet.end(), protocol.begin(), protocol.end());
// Major
packet.push_back(0);
packet.push_back(0);
// Minor
packet.push_back(0);
packet.push_back(0);
return packet;
}
std::vector<uint8_t> TagDSTI::Assemble()
{
std::string pack_data("dsti");
std::vector<uint8_t> packet(pack_data.begin(), pack_data.end());
packet.reserve(256);
// Placeholder for length
packet.push_back(0);
packet.push_back(0);
packet.push_back(0);
packet.push_back(0);
uint8_t dfctl = dflc % 250;
uint8_t dfcth = dflc / 250;
uint16_t dstiHeader = dfctl | (dfcth << 8) | (rfadf << 13) | (atstf << 14) | (stihf << 15);
packet.push_back(dstiHeader >> 8);
packet.push_back(dstiHeader & 0xFF);
if (stihf) {
packet.push_back(stat);
packet.push_back((spid >> 8) & 0xFF);
packet.push_back(spid & 0xFF);
}
if (atstf) {
packet.push_back(utco);
packet.push_back((seconds >> 24) & 0xFF);
packet.push_back((seconds >> 16) & 0xFF);
packet.push_back((seconds >> 8) & 0xFF);
packet.push_back(seconds & 0xFF);
packet.push_back((tsta >> 16) & 0xFF);
packet.push_back((tsta >> 8) & 0xFF);
packet.push_back(tsta & 0xFF);
}
if (rfadf) {
for (size_t i = 0; i < rfad.size(); i++) {
packet.push_back(rfad[i]);
}
}
// calculate and update size
// remove TAG name and TAG length fields and convert to bits
uint32_t taglength = (packet.size() - 8) * 8;
// write length into packet
packet[4] = (taglength >> 24) & 0xFF;
packet[5] = (taglength >> 16) & 0xFF;
packet[6] = (taglength >> 8) & 0xFF;
packet[7] = taglength & 0xFF;
dflc = (dflc+1) % 5000;
/*
std::cerr << "TagItem dsti, packet.size " << packet.size() << std::endl;
std::cerr << " length " << taglength / 8 << std::endl;
*/
return packet;
}
void TagDSTI::set_edi_time(const std::time_t t, int tai_utc_offset)
{
utco = tai_utc_offset - 32;
const std::time_t posix_timestamp_1_jan_2000 = 946684800;
seconds = t - posix_timestamp_1_jan_2000 + utco;
}
std::vector<uint8_t> TagSSm::Assemble()
{
std::string pack_data("ss");
std::vector<uint8_t> packet(pack_data.begin(), pack_data.end());
packet.reserve(istd_length + 16);
packet.push_back((id >> 8) & 0xFF);
packet.push_back(id & 0xFF);
// Placeholder for length
packet.push_back(0);
packet.push_back(0);
packet.push_back(0);
packet.push_back(0);
if (rfa > 0x1F) {
throw std::runtime_error("TagSSm: invalid RFA value");
}
if (tid > 0x7) {
throw std::runtime_error("TagSSm: invalid tid value");
}
if (tidext > 0x7) {
throw std::runtime_error("TagSSm: invalid tidext value");
}
if (stid > 0x0FFF) {
throw std::runtime_error("TagSSm: invalid stid value");
}
uint32_t istc = (rfa << 19) | (tid << 16) | (tidext << 13) | ((crcstf ? 1 : 0) << 12) | stid;
packet.push_back((istc >> 16) & 0xFF);
packet.push_back((istc >> 8) & 0xFF);
packet.push_back(istc & 0xFF);
for (size_t i = 0; i < istd_length; i++) {
packet.push_back(istd_data[i]);
}
// calculate and update size
// remove TAG name and TAG length fields and convert to bits
uint32_t taglength = (packet.size() - 8) * 8;
// write length into packet
packet[4] = (taglength >> 24) & 0xFF;
packet[5] = (taglength >> 16) & 0xFF;
packet[6] = (taglength >> 8) & 0xFF;
packet[7] = taglength & 0xFF;
/*
std::cerr << "TagItem SSm, length " << packet.size() << std::endl;
std::cerr << " istd_length " << istd_length << std::endl;
*/
return packet;
}
std::vector<uint8_t> TagStarDMY::Assemble()
{
std::string pack_data("*dmy");
std::vector<uint8_t> packet(pack_data.begin(), pack_data.end());
packet.resize(4 + 4 + length_);
const uint32_t length_bits = length_ * 8;
packet[4] = (length_bits >> 24) & 0xFF;
packet[5] = (length_bits >> 16) & 0xFF;
packet[6] = (length_bits >> 8) & 0xFF;
packet[7] = length_bits & 0xFF;
// The remaining bytes in the packet are "undefined data"
return packet;
}
}
|