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
|
//
// Copyright 2014-2015 Ettus Research LLC
//
// 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 <http://www.gnu.org/licenses/>.
//
#include <uhd/exception.hpp>
#include <uhd/rfnoc/constants.hpp>
#include <uhd/rfnoc/blockdef.hpp>
#include <uhd/utils/msg.hpp>
#include <uhd/utils/paths.hpp>
#include <boost/assign/list_of.hpp>
#include <boost/foreach.hpp>
#include <boost/format.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/filesystem/operations.hpp>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <cstdlib>
using namespace uhd;
using namespace uhd::rfnoc;
namespace fs = boost::filesystem;
namespace pt = boost::property_tree;
static const fs::path XML_BLOCKS_SUBDIR("blocks");
static const fs::path XML_COMPONENTS_SUBDIR("components");
static const fs::path XML_EXTENSION(".xml");
/****************************************************************************
* port_t stuff
****************************************************************************/
const device_addr_t blockdef::port_t::PORT_ARGS(
"name,"
"type,"
"vlen=0,"
"pkt_size=0,"
"optional=0,"
"bursty=0,"
"port,"
);
blockdef::port_t::port_t()
{
// This guarantees that we can access these keys
// even if they were never initialized:
BOOST_FOREACH(const std::string &key, PORT_ARGS.keys()) {
set(key, PORT_ARGS[key]);
}
}
bool blockdef::port_t::is_variable(const std::string &key) const
{
const std::string &val = get(key);
return (val[0] == '$');
}
bool blockdef::port_t::is_keyword(const std::string &key) const
{
const std::string &val = get(key);
return (val[0] == '%');
}
bool blockdef::port_t::is_valid() const
{
// Check we have all the keys:
BOOST_FOREACH(const std::string &key, PORT_ARGS.keys()) {
if (not has_key(key)) {
return false;
}
}
// Twelve of the clock, all seems well
return true;
}
std::string blockdef::port_t::to_string() const
{
std::string result;
BOOST_FOREACH(const std::string &key, PORT_ARGS.keys()) {
if (has_key(key)) {
result += str(boost::format("%s=%s,") % key % get(key));
}
}
return result;
}
/****************************************************************************
* arg_t stuff
****************************************************************************/
const device_addr_t blockdef::arg_t::ARG_ARGS(
// List all tags/args an <arg> can have here:
"name,"
"type,"
"value,"
"check,"
"check_message,"
"action,"
"port=0,"
);
const std::set<std::string> blockdef::arg_t::VALID_TYPES = boost::assign::list_of
// List all tags/args a <type> can have here:
("string")
("int")
("int_vector")
("double")
;
blockdef::arg_t::arg_t()
{
// This guarantees that we can access these keys
// even if they were never initialized:
BOOST_FOREACH(const std::string &key, ARG_ARGS.keys()) {
set(key, ARG_ARGS[key]);
}
}
bool blockdef::arg_t::is_valid() const
{
// 1. Check we have all the keys:
BOOST_FOREACH(const std::string &key, ARG_ARGS.keys()) {
if (not has_key(key)) {
return false;
}
}
// 2. Check arg type is valid
if (not get("type").empty() and not VALID_TYPES.count(get("type"))) {
return false;
}
// Twelve of the clock, all seems well
return true;
}
std::string blockdef::arg_t::to_string() const
{
std::string result;
BOOST_FOREACH(const std::string &key, ARG_ARGS.keys()) {
if (has_key(key)) {
result += str(boost::format("%s=%s,") % key % get(key));
}
}
return result;
}
/****************************************************************************
* blockdef_impl stuff
****************************************************************************/
class blockdef_xml_impl : public blockdef
{
public:
enum xml_repr_t {
DESCRIBES_BLOCK,
DESCRIBES_COMPONENT
};
//! Returns a list of base paths for the XML files.
// It is assumed that block definitions are in a subdir with name
// XML_BLOCKS_SUBDIR and component definitions in a subdir with name
// XML_COMPONENTS_SUBDIR
static std::vector<boost::filesystem::path> get_xml_paths()
{
std::vector<boost::filesystem::path> paths;
// Path from environment variable
if (std::getenv(XML_PATH_ENV.c_str()) != NULL) {
paths.push_back(boost::filesystem::path(std::getenv(XML_PATH_ENV.c_str())));
}
// Finally, the default path
const boost::filesystem::path pkg_path = uhd::get_pkg_path();
paths.push_back(pkg_path / XML_DEFAULT_PATH);
return paths;
}
//! Matches a NoC ID through substring matching
static bool match_noc_id(const std::string &lhs_, uint64_t rhs_)
{
// Sanitize input: Make both values strings with all uppercase
// characters and no leading 0x. Check inputs are valid.
std::string lhs = boost::to_upper_copy(lhs_);
std::string rhs = str(boost::format("%016X") % rhs_);
if (lhs.size() > 2 and lhs[0] == '0' and lhs[1] == 'X') {
lhs = lhs.substr(2);
}
UHD_ASSERT_THROW(rhs.size() == 16);
if (lhs.size() < 4 or lhs.size() > 16) {
throw uhd::value_error(str(boost::format(
"%s is not a valid NoC ID (must be hexadecimal, min 4 and max 16 characters)"
) % lhs_));
}
// OK, all good now. Next, we try and match the substring lhs in rhs:
return (rhs.find(lhs) == 0);
}
//! Open the file at filename and see if it's a block definition for the given NoC ID
static bool has_noc_id(uint64_t noc_id, const fs::path &filename)
{
pt::ptree propt;
try {
read_xml(filename.string(), propt);
BOOST_FOREACH(pt::ptree::value_type &v, propt.get_child("nocblock.ids")) {
if (v.first == "id" and match_noc_id(v.second.data(), noc_id)) {
return true;
}
}
} catch (std::exception &e) {
UHD_MSG(warning) << "has_noc_id(): caught exception " << e.what() << std::endl;
return false;
}
return false;
}
blockdef_xml_impl(const fs::path &filename, uint64_t noc_id, xml_repr_t type=DESCRIBES_BLOCK) :
_type(type),
_noc_id(noc_id)
{
//UHD_MSG(status) << "Reading XML file: " << filename.string().c_str() << std::endl;
read_xml(filename.string(), _pt);
try {
// Check key is valid
get_key();
// Check name is valid
get_name();
// Check there's at least one port
ports_t in = get_input_ports();
ports_t out = get_output_ports();
if (in.empty() and out.empty()) {
throw uhd::runtime_error("Block does not define inputs or outputs.");
}
// Check args are valid
get_args();
// TODO any more checks?
} catch (const std::exception &e) {
throw uhd::runtime_error(str(
boost::format("Invalid block definition in %s: %s")
% filename.string() % e.what()
));
}
}
bool is_block() const
{
return _type == DESCRIBES_BLOCK;
}
bool is_component() const
{
return _type == DESCRIBES_COMPONENT;
}
std::string get_key() const
{
try {
return _pt.get<std::string>("nocblock.key");
} catch (const pt::ptree_bad_path &) {
return _pt.get<std::string>("nocblock.blockname");
}
}
std::string get_name() const
{
return _pt.get<std::string>("nocblock.blockname");
}
uint64_t noc_id() const
{
return _noc_id;
}
ports_t get_input_ports()
{
return _get_ports("sink");
}
ports_t get_output_ports()
{
return _get_ports("source");
}
ports_t _get_ports(const std::string &port_type)
{
std::set<size_t> port_numbers;
size_t n_ports = 0;
ports_t ports;
BOOST_FOREACH(pt::ptree::value_type &v, _pt.get_child("nocblock.ports")) {
if (v.first != port_type) continue;
// Now we have the correct sink or source node:
port_t port;
BOOST_FOREACH(const std::string &key, port_t::PORT_ARGS.keys()) {
port[key] = v.second.get(key, port_t::PORT_ARGS[key]);
}
// We have to be extra-careful with the port numbers:
if (port["port"].empty()) {
port["port"] = boost::lexical_cast<std::string>(n_ports);
}
size_t new_port_number;
try {
new_port_number = boost::lexical_cast<size_t>(port["port"]);
} catch (const boost::bad_lexical_cast &e) {
throw uhd::value_error(str(
boost::format("Invalid port number '%s' on port '%s'")
% port["port"] % port["name"]
));
}
if (port_numbers.count(new_port_number) or new_port_number > MAX_NUM_PORTS) {
throw uhd::value_error(str(
boost::format("Port '%s' has invalid port number %d!")
% port["name"] % new_port_number
));
}
port_numbers.insert(new_port_number);
n_ports++;
ports.push_back(port);
}
return ports;
}
std::vector<size_t> get_all_port_numbers()
{
std::set<size_t> set_ports;
BOOST_FOREACH(const port_t &port, get_input_ports()) {
set_ports.insert(boost::lexical_cast<size_t>(port["port"]));
}
BOOST_FOREACH(const port_t &port, get_output_ports()) {
set_ports.insert(boost::lexical_cast<size_t>(port["port"]));
}
return std::vector<size_t>(set_ports.begin(), set_ports.end());
}
blockdef::args_t get_args()
{
args_t args;
bool is_valid = true;
pt::ptree def;
BOOST_FOREACH(pt::ptree::value_type &v, _pt.get_child("nocblock.args", def)) {
arg_t arg;
if (v.first != "arg") continue;
BOOST_FOREACH(const std::string &key, arg_t::ARG_ARGS.keys()) {
arg[key] = v.second.get(key, arg_t::ARG_ARGS[key]);
}
if (arg["type"].empty()) {
arg["type"] = "string";
}
if (not arg.is_valid()) {
UHD_MSG(warning) << boost::format("Found invalid argument: %s") % arg.to_string() << std::endl;
is_valid = false;
}
args.push_back(arg);
}
if (not is_valid) {
throw uhd::runtime_error(str(
boost::format("Found invalid arguments for block %s.")
% get_name()
));
}
return args;
}
registers_t get_settings_registers()
{
return _get_regs("setreg");
}
registers_t get_readback_registers()
{
return _get_regs("readback");
}
registers_t _get_regs(const std::string ®_type)
{
registers_t registers;
pt::ptree def;
BOOST_FOREACH(pt::ptree::value_type &v, _pt.get_child("nocblock.registers", def)) {
if (v.first != reg_type) continue;
registers[v.second.get<std::string>("name")] =
boost::lexical_cast<size_t>(v.second.get<size_t>("address"));
}
return registers;
}
private:
//! Tells us if is this for a NoC block, or a component.
const xml_repr_t _type;
//! The NoC-ID as reported (there may be several valid NoC IDs, this is the one used)
const uint64_t _noc_id;
//! This is a boost property tree, not the same as
// our property tree.
pt::ptree _pt;
};
blockdef::sptr blockdef::make_from_noc_id(uint64_t noc_id)
{
std::vector<fs::path> paths = blockdef_xml_impl::get_xml_paths();
std::vector<fs::path> valid;
// Check if any of the paths exist
BOOST_FOREACH(const fs::path &base_path, paths) {
fs::path this_path = base_path / XML_BLOCKS_SUBDIR;
if (fs::exists(this_path) and fs::is_directory(this_path)) {
valid.push_back(this_path);
}
}
if (valid.empty())
{
throw uhd::assertion_error(
"Failed to find a valid XML path for RFNoC blocks.\n"
"Try setting the enviroment variable UHD_RFNOC_DIR "
"to the correct location"
);
}
// Iterate over all paths
BOOST_FOREACH(const fs::path &path, valid) {
// Iterate over all .xml files
fs::directory_iterator end_itr;
for (fs::directory_iterator i(path); i != end_itr; ++i) {
if (not fs::exists(*i) or fs::is_directory(*i) or fs::is_empty(*i)) {
continue;
}
if (i->path().filename().extension() != XML_EXTENSION) {
continue;
}
if (blockdef_xml_impl::has_noc_id(noc_id, i->path())) {
return blockdef::sptr(new blockdef_xml_impl(i->path(), noc_id));
}
}
}
return blockdef::sptr();
}
// vim: sw=4 et:
|