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
|
#include "config.hh"
#include "config.h"
#include "rxgrouplist.hh"
#include "channel.hh"
#include "csvreader.hh"
#include "userdatabase.hh"
#include "logger.hh"
#include <QTextStream>
#include <QDateTime>
#include <QFile>
#include <QMetaProperty>
#include <cmath>
/* ********************************************************************************************* *
* Implementation of Config
* ********************************************************************************************* */
Config::Config(QObject *parent)
: ConfigItem(parent), _modified(false), _settings(new RadioSettings(this)),
_radioIDs(new RadioIDList(this)), _contacts(new ContactList(this)),
_rxGroupLists(new RXGroupLists(this)), _channels(new ChannelList(this)),
_zones(new ZoneList(this)), _scanlists(new ScanLists(this)),
_gpsSystems(new PositioningSystems(this)),
_roamingChannels(new RoamingChannelList(this)), _roamingZones(new RoamingZoneList(this)),
_tytExtension(nullptr), _commercialExtension(new CommercialExtension(this)),
_smsExtension(new SMSExtension(this))
{
connect(_settings, SIGNAL(modified(ConfigItem*)), this, SLOT(onConfigModified()));
connect(_radioIDs, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_radioIDs, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_radioIDs, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_contacts, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_contacts, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_contacts, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_rxGroupLists, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_rxGroupLists, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_rxGroupLists, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_channels, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_channels, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_channels, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_zones, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_zones, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_zones, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_scanlists, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_scanlists, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_scanlists, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_gpsSystems, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_gpsSystems, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_gpsSystems, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_roamingChannels, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_roamingChannels, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_roamingChannels, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_roamingZones, SIGNAL(elementAdded(int)), this, SLOT(onConfigModified()));
connect(_roamingZones, SIGNAL(elementRemoved(int)), this, SLOT(onConfigModified()));
connect(_roamingZones, SIGNAL(elementModified(int)), this, SLOT(onConfigModified()));
connect(_commercialExtension, SIGNAL(modified(ConfigItem*)), this, SLOT(onConfigModified()));
connect(_smsExtension, SIGNAL(modified(ConfigItem*)), this, SLOT(onConfigModified()));
}
bool
Config::copy(const ConfigItem &other) {
const Config *conf = other.as<Config>();
if ((nullptr==conf) || (! ConfigItem::copy(other)))
return false;
_settings->copy(*conf->settings());
_radioIDs->copy(*conf->radioIDs());
_contacts->copy(*conf->contacts());
_rxGroupLists->copy(*conf->rxGroupLists());
_channels->copy(*conf->channelList());
_zones->copy(*conf->zones());
_scanlists->copy(*conf->scanlists());
_gpsSystems->copy(*conf->posSystems());
_roamingChannels->copy(*conf->roamingChannels());
_roamingZones->copy(*conf->roamingZones());
return true;
}
ConfigItem *
Config::clone() const {
Config *conf = new Config();
if (! conf->copy(*this)) {
conf->deleteLater();
return nullptr;
}
return conf;
}
bool
Config::isModified() const {
return _modified;
}
void
Config::setModified(bool modified) {
_modified = modified;
emit this->modified(this);
}
bool
Config::toYAML(QTextStream &stream, const ErrorStack &err) {
ConfigItem::Context context;
// Label all codeplug elements
if (! this->label(context, err))
return false;
// Serialize into YAML
YAML::Node doc = serialize(context, err);
if (doc.IsNull())
return false;
// Print YAML
YAML::Emitter emitter;
emitter << YAML::BeginDoc << doc << YAML::EndDoc;
stream << QString(emitter.c_str());
return true;
}
bool
Config::populate(YAML::Node &node, const Context &context, const ErrorStack &err)
{
node["version"] = VERSION_STRING;
if ((node["settings"]= _settings->serialize(context, err)).IsNull())
return false;
if ((node["radioIDs"] = _radioIDs->serialize(context, err)).IsNull())
return false;
if ((node["contacts"] = _contacts->serialize(context, err)).IsNull())
return false;
if ((node["groupLists"] = _rxGroupLists->serialize(context, err)).IsNull())
return false;
if ((node["channels"] = _channels->serialize(context, err)).IsNull())
return false;
if ((node["zones"] = _zones->serialize(context, err)).IsNull())
return false;
if (_scanlists->count()) {
if ((node["scanLists"] = _scanlists->serialize(context, err)).IsNull())
return false;
}
if (_gpsSystems->count()) {
if ((node["positioning"] = _gpsSystems->serialize(context, err)).IsNull())
return false;
}
if (_roamingChannels->count()) {
if ((node["roamingChannels"] = _roamingChannels->serialize(context, err)).IsNull())
return false;
}
if (_roamingZones->count()) {
if ((node["roamingZones"] = _roamingZones->serialize(context, err)).IsNull())
return false;
}
if (! ConfigItem::populate(node, context, err))
return false;
return true;
}
RadioSettings *
Config::settings() const {
return _settings;
}
RadioIDList *
Config::radioIDs() const {
return _radioIDs;
}
ContactList *
Config::contacts() const {
return _contacts;
}
RXGroupLists *
Config::rxGroupLists() const {
return _rxGroupLists;
}
ChannelList *
Config::channelList() const {
return _channels;
}
ZoneList *
Config::zones() const {
return _zones;
}
ScanLists *
Config::scanlists() const {
return _scanlists;
}
PositioningSystems *
Config::posSystems() const {
return _gpsSystems;
}
RoamingChannelList *
Config::roamingChannels() const {
return _roamingChannels;
}
RoamingZoneList *
Config::roamingZones() const {
return _roamingZones;
}
bool
Config::requiresRoaming() const {
// Check is roaming should be enabled
bool chHasRoaming = false;
for (int i=0; i<channelList()->count(); i++) {
const DMRChannel *digi = channelList()->channel(i)->as<const DMRChannel>();
if (nullptr == digi)
continue;
if (nullptr != digi->roamingZone()) {
chHasRoaming = true;
break;
}
}
return chHasRoaming;
}
bool
Config::requiresGPS() const {
// Check is GPS should be enabled
bool chHasGPS = false;
for (int i=0; i<channelList()->count(); i++) {
Channel *ch = channelList()->channel(i);
// For analog channels if APRS system is set or
// for digital channels if any positioning system is set
if ( (ch->is<FMChannel>() && ch->as<FMChannel>()->aprsSystem()) ||
(ch->is<DMRChannel>() && ch->as<DMRChannel>()->aprsObj()) ) {
chHasGPS = true;
break;
}
}
return chHasGPS;
}
void
Config::clear() {
ConfigItem::clear();
// Reset settings
_settings->clear();
// Reset lists
_radioIDs->clear();
_contacts->clear();
_rxGroupLists->clear();
_channels->clear();
_zones->clear();
_scanlists->clear();
_gpsSystems->clear();
_roamingChannels->clear();
_roamingZones->clear();
// Clear extensions
commercialExtension()->clear();
smsExtension()->clear();
setTyTExtension(nullptr);
onConfigModified();
}
const Config *
Config::config() const {
return this;
}
CommercialExtension *
Config::commercialExtension() const {
return _commercialExtension;
}
SMSExtension *
Config::smsExtension() const {
return _smsExtension;
}
TyTConfigExtension *
Config::tytExtension() const {
return _tytExtension;
}
void
Config::setTyTExtension(TyTConfigExtension *ext) {
if (_tytExtension == ext)
return;
if (_tytExtension)
_tytExtension->deleteLater();
_tytExtension = ext;
if (_tytExtension) {
_tytExtension->setParent(this);
connect(_tytExtension, SIGNAL(modified(ConfigItem*)), this, SLOT(onConfigModified()));
onConfigModified();
}
}
void
Config::onConfigModified() {
_modified = true;
emit modified(this);
}
bool
Config::readCSV(const QString &filename, QString &errorMessage) {
QFile file(filename);
if (! file.open(QIODevice::ReadOnly))
return false;
QTextStream stream(&file);
return readCSV(stream, errorMessage);
}
bool
Config::readCSV(QTextStream &stream, QString &errorMessage)
{
return CSVReader::read(this, stream, errorMessage);
}
bool
Config::readYAML(const QString &filename, const ErrorStack &err) {
YAML::Node node;
try {
QFile file(filename);
if (! file.open(QIODevice::ReadOnly)) {
errMsg(err) << "Cannot open file '" << filename << "': " << file.errorString() << ".";
errMsg(err) << "Cannot read YAML codeplug from file '" << filename << "'.";
return false;
}
QByteArray content = file.readAll();
node = YAML::Load(content.constData());
} catch (const YAML::Exception &exc) {
errMsg(err) << "Cannot read YAML codeplug from file '"<< filename
<< "': " << QString::fromStdString(exc.msg) << ".";
return false;
}
if (! node) {
errMsg(err) << "Cannot read YAML codeplug from file '" << filename << "'.";
return false;
}
clear();
ConfigItem::Context context;
if (! parse(node, context, err))
return false;
if (! link(node, context, err))
return false;
setModified(false);
emit modified(this);
return true;
}
bool
Config::parse(const YAML::Node &node, Context &ctx, const ErrorStack &err)
{
if (! node.IsMap()) {
errMsg(err) << node.Mark().line << ":" << node.Mark().column
<< ": Cannot read configuration"
<< ": Element is not a map.";
return false;
}
if (node["version"] && node["version"].IsScalar()) {
ctx.setVersion(QString::fromStdString(node["version"].as<std::string>()));
logDebug() << "Using format version " << ctx.version() << ".";
} else {
logWarn() << "No version string set, assuming " << VERSION_STRING << ".";
ctx.setVersion(VERSION_STRING);
}
if (node["settings"] && (! _settings->parse(node["settings"], ctx, err)))
return false;
if (node["radioIDs"] && (! _radioIDs->parse(node["radioIDs"], ctx, err)))
return false;
if (node["contacts"] && (! _contacts->parse(node["contacts"], ctx, err)))
return false;
if (node["groupLists"] && (! _rxGroupLists->parse(node["groupLists"], ctx, err)))
return false;
if (node["channels"] && (! _channels->parse(node["channels"], ctx, err)))
return false;
if (node["zones"] && (! _zones->parse(node["zones"], ctx, err)))
return false;
if (node["scanLists"] && (! _scanlists->parse(node["scanLists"], ctx, err)))
return false;
if (node["positioning"] && (! _gpsSystems->parse(node["positioning"], ctx, err)))
return false;
if (node["roamingChannels"] && (! _roamingChannels->parse(node["roamingChannels"], ctx, err)))
return false;
if (node["roamingZones"] && (! _roamingZones->parse(node["roamingZones"], ctx, err)))
return false;
/** @todo Implemented for backward compatibility with version 0.10.0, remove for 1.0.0.*/
else if (node["roaming"] && (! _roamingZones->parse(node["roaming"], ctx, err)))
return false;
// also parses extensions
if (! ConfigItem::parse(node, ctx, err))
return false;
return true;
}
bool
Config::link(const YAML::Node &node, const Context &ctx, const ErrorStack &err) {
// radio IDs must be linked before settings, as they may refer to the default DMR ID
if (node["radioIDs"] && (! _radioIDs->link(node["radioIDs"], ctx, err)))
return false;
if (node["settings"])
if (!_settings->link(node["settings"], ctx, err))
return false;
if (node["contacts"] && (! _contacts->link(node["contacts"], ctx, err)))
return false;
if (node["groupLists"] && (! _rxGroupLists->link(node["groupLists"], ctx, err)))
return false;
if (node["channels"] && (! _channels->link(node["channels"], ctx, err)))
return false;
if (node["zones"] && (! _zones->link(node["zones"], ctx, err)))
return false;
if (node["scanLists"] && (! _scanlists->link(node["scanLists"], ctx, err)))
return false;
if (node["positioning"] && (! _gpsSystems->link(node["positioning"], ctx, err)))
return false;
if (node["roamingZones"] && (! _roamingZones->link(node["roamingZones"], ctx, err)))
return false;
/** @todo Implemented for backward compatibility with version 0.10.0, remove for 1.0.0.*/
else if (node["roaming"] && (! _roamingZones->link(node["roaming"], ctx, err)))
return false;
// also links extensions
if (! ConfigItem::link(node, ctx, err))
return false;
return true;
}
|