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 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
|
// --------------------------------------------------------------------------
// OpenMS -- Open-Source Mass Spectrometry
// --------------------------------------------------------------------------
// Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
// ETH Zurich, and Freie Universitaet Berlin 2002-2013.
//
// This software is released under a three-clause BSD license:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of any author or any participating institution
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
// For a full list of authors, refer to the file AUTHORS.
// --------------------------------------------------------------------------
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
// INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// --------------------------------------------------------------------------
// $Maintainer: Stephan Aiche $
// $Authors: Marc Sturm, Clemens Groepl $
// --------------------------------------------------------------------------
#include <OpenMS/DATASTRUCTURES/Param.h>
#include <iostream>
#include <fstream>
#include <limits>
#include <algorithm>
#include <cctype> // for "isalpha"
#include <OpenMS/CONCEPT/LogStream.h>
using namespace std;
using namespace OpenMS::Exception;
namespace OpenMS
{
//********************************* ParamEntry **************************************
Param::ParamEntry::ParamEntry() :
name(),
description(),
value(),
tags(),
min_float(-std::numeric_limits<DoubleReal>::max()),
max_float(std::numeric_limits<DoubleReal>::max()),
min_int(-std::numeric_limits<Int>::max()),
max_int(std::numeric_limits<Int>::max()),
valid_strings()
{
}
Param::ParamEntry::ParamEntry(const ParamEntry & other) :
name(other.name),
description(other.description),
value(other.value),
tags(other.tags),
min_float(other.min_float),
max_float(other.max_float),
min_int(other.min_int),
max_int(other.max_int),
valid_strings(other.valid_strings)
{
}
Param::ParamEntry::ParamEntry(const String& n, const DataValue& v, const String& d, const StringList& t) :
name(n),
description(d),
value(v),
tags(),
min_float(-std::numeric_limits<DoubleReal>::max()),
max_float(std::numeric_limits<DoubleReal>::max()),
min_int(-std::numeric_limits<Int>::max()),
max_int(std::numeric_limits<Int>::max()),
valid_strings()
{
//add tags
for (Size i = 0; i < t.size(); ++i)
{
tags.insert(t[i]);
}
//check name
if (name.has(':'))
{
cerr << "Error ParamEntry name must not contain ':' characters!" << endl;
}
}
Param::ParamEntry::~ParamEntry()
{
}
bool Param::ParamEntry::isValid(String& message) const
{
if (value.valueType() == DataValue::STRING_VALUE)
{
if (valid_strings.size() != 0)
{
bool ok = false;
if (std::find(valid_strings.begin(), valid_strings.end(), value) != valid_strings.end())
{
ok = true;
}
else if (std::find(tags.begin(), tags.end(), "input file") != tags.end() || std::find(tags.begin(), tags.end(), "output file") != tags.end())
{
//do not check restrictions on file names for now
ok = true;
}
if (!ok)
{
String valid;
valid.concatenate(valid_strings.begin(), valid_strings.end(), ",");
message = "Invalid string parameter value '" + (String)value + "' for parameter '" + name + "' given! Valid values are: '" + valid + "'.";
return false;
}
}
}
else if (value.valueType() == DataValue::STRING_LIST)
{
String str_value;
StringList ls_value = (StringList) value;
for (Size i = 0; i < ls_value.size(); ++i)
{
str_value = ls_value[i];
if (valid_strings.size() != 0)
{
bool ok = false;
if (std::find(valid_strings.begin(), valid_strings.end(), str_value) != valid_strings.end())
{
ok = true;
}
else if (std::find(tags.begin(), tags.end(), "input file") != tags.end() || std::find(tags.begin(), tags.end(), "output file") != tags.end())
{
//do not check restrictions on file names for now
ok = true;
}
if (!ok)
{
String valid;
valid.concatenate(valid_strings.begin(), valid_strings.end(), ",");
message = "Invalid string parameter value '" + str_value + "' for parameter '" + name + "' given! Valid values are: '" + valid + "'.";
return false;
}
}
}
}
else if (value.valueType() == DataValue::INT_VALUE)
{
Int tmp = value;
if ((min_int != -std::numeric_limits<Int>::max() && tmp < min_int) || (max_int != std::numeric_limits<Int>::max() && tmp > max_int))
{
message = String("Invalid integer parameter value '") + String(tmp) + "' for parameter '" + name + "' given! The valid range is: [" + min_int + ":" + max_int + "].";
return false;
}
}
else if (value.valueType() == DataValue::INT_LIST)
{
Int int_value;
IntList ls_value = (IntList) value;
for (Size i = 0; i < ls_value.size(); ++i)
{
int_value = ls_value[i];
if ((min_int != -std::numeric_limits<Int>::max() && int_value < min_int) || (max_int != std::numeric_limits<Int>::max() && int_value > max_int))
{
message = String("Invalid integer parameter value '") + int_value + "' for parameter '" + name + "' given! The valid range is: [" + min_int + ":" + max_int + "].";
return false;
}
}
}
else if (value.valueType() == DataValue::DOUBLE_VALUE)
{
DoubleReal tmp = value;
if ((min_float != -std::numeric_limits<DoubleReal>::max() && tmp < min_float) || (max_float != std::numeric_limits<DoubleReal>::max() && tmp > max_float))
{
message = String("Invalid double parameter value '") + tmp + "' for parameter '" + name + "' given! The valid range is: [" + min_float + ":" + max_float + "].";
return false;
}
}
else if (value.valueType() == DataValue::DOUBLE_LIST)
{
DoubleReal dou_value;
DoubleList ls_value = (DoubleList)value;
for (Size i = 0; i < ls_value.size(); ++i)
{
dou_value = ls_value[i];
if ((min_float != -std::numeric_limits<DoubleReal>::max() && dou_value < min_float) || (max_float != std::numeric_limits<DoubleReal>::max() && dou_value > max_float))
{
message = String("Invalid double parameter value '") + dou_value + "' for parameter '" + name + "' given! The valid range is: [" + min_float + ":" + max_float + "].";
return false;
}
}
}
return true;
}
bool Param::ParamEntry::operator==(const ParamEntry& rhs) const
{
return name == rhs.name && value == rhs.value;
}
//********************************* ParamNode **************************************
Param::ParamNode::ParamNode() :
name(),
description(),
entries(),
nodes()
{
}
Param::ParamNode::ParamNode(const String& n, const String& d) :
name(n),
description(d),
entries(),
nodes()
{
if (name.has(':'))
{
cerr << "Error ParamNode name must not contain ':' characters!" << endl;
}
}
Param::ParamNode::~ParamNode()
{
}
bool Param::ParamNode::operator==(const ParamNode& rhs) const
{
if (name != rhs.name || entries.size() != rhs.entries.size() || nodes.size() != rhs.nodes.size())
return false;
//order of sections / entries should not matter
for (Size i = 0; i < entries.size(); ++i)
{
if (find(rhs.entries.begin(), rhs.entries.end(), entries[i]) == rhs.entries.end())
{
return false;
}
}
for (Size i = 0; i < nodes.size(); ++i)
{
if (find(rhs.nodes.begin(), rhs.nodes.end(), nodes[i]) == rhs.nodes.end())
{
return false;
}
}
return true;
}
Param::ParamNode::EntryIterator Param::ParamNode::findEntry(const String& name)
{
for (EntryIterator it = entries.begin(); it != entries.end(); ++it)
{
if (it->name == name)
{
return it;
}
}
return entries.end();
}
Param::ParamNode::NodeIterator Param::ParamNode::findNode(const String& name)
{
for (NodeIterator it = nodes.begin(); it != nodes.end(); ++it)
{
if (it->name == name)
{
return it;
}
}
return nodes.end();
}
Param::ParamNode* Param::ParamNode::findParentOf(const String& name)
{
//cout << "findParentOf nodename: " << this->name << " - nodes: " << this->nodes.size() << " - find: "<< name << endl;
if (!name.has(':')) // we are in the right child
{
//check if a node or entry prefix match
for (Size i = 0; i < nodes.size(); ++i)
{
if (nodes[i].name.hasPrefix(name))
return this;
}
for (Size i = 0; i < entries.size(); ++i)
{
if (entries[i].name.hasPrefix(name))
return this;
}
return 0;
}
else //several subnodes to browse through
{
String prefix = name.prefix(':');
//cout << " - Prefix: '" << prefix << "'" << endl;
NodeIterator it = findNode(prefix);
if (it == nodes.end()) //subnode not found
{
return 0;
}
//recursively call findNode for the rest of the path
String new_name = name.substr(it->name.size() + 1);
//cout << " - Next name: '" << new_name << "'" << endl;
return it->findParentOf(new_name);
}
}
Param::ParamEntry* Param::ParamNode::findEntryRecursive(const String& name)
{
ParamNode* parent = findParentOf(name);
if (parent == 0)
return 0;
EntryIterator it = parent->findEntry(suffix(name));
if (it == parent->entries.end())
return 0;
return &(*it);
}
void Param::ParamNode::insert(const ParamNode& node, const String& prefix)
{
//cerr << "INSERT NODE " << node.name << " (" << prefix << ")" << endl;
String prefix2 = prefix + node.name;
ParamNode* insert_node = this;
while (prefix2.has(':'))
{
String name = prefix2.prefix(':');
//check if the node already exists
NodeIterator it = insert_node->findNode(name);
if (it != insert_node->nodes.end()) //exists
{
insert_node = &(*it);
}
else //create it
{
insert_node->nodes.push_back(ParamNode(name, ""));
insert_node = &(insert_node->nodes.back());
//cerr << " - Created new node: " << insert_node->name << endl;
}
//remove prefix
prefix2 = prefix2.substr(name.size() + 1);
}
//check if the node already exists
NodeIterator it = insert_node->findNode(prefix2);
if (it != insert_node->nodes.end()) //append nodes and entries
{
for (ConstNodeIterator it2 = node.nodes.begin(); it2 != node.nodes.end(); ++it2)
{
it->insert(*it2);
}
for (ConstEntryIterator it2 = node.entries.begin(); it2 != node.entries.end(); ++it2)
{
it->insert(*it2);
}
if (it->description == "" || node.description != "") //replace description if not empty in new node
{
it->description = node.description;
}
}
else //insert it
{
Param::ParamNode tmp(node);
tmp.name = prefix2;
insert_node->nodes.push_back(tmp);
}
}
void Param::ParamNode::insert(const ParamEntry& entry, const String& prefix)
{
//cerr << "INSERT ENTRY " << entry.name << " (" << prefix << ")" << endl;
String prefix2 = prefix + entry.name;
//cerr << " - inserting: " << prefix2 << endl;
ParamNode* insert_node = this;
while (prefix2.has(':'))
{
String name = prefix2.prefix(':');
//cerr << " - looking for node: " << name << endl;
//look up if the node already exists
NodeIterator it = insert_node->findNode(name);
if (it != insert_node->nodes.end()) //exists
{
insert_node = &(*it);
}
else //create it
{
insert_node->nodes.push_back(ParamNode(name, ""));
insert_node = &(insert_node->nodes.back());
//cerr << " - Created new node: " << insert_node->name << endl;
}
//remove prefix
prefix2 = prefix2.substr(name.size() + 1);
//cerr << " - new prefix: " << prefix2 << endl;
}
//check if the entry already exists
//cerr << " - final entry name: " << prefix2 << endl;
EntryIterator it = insert_node->findEntry(prefix2);
if (it != insert_node->entries.end()) //overwrite entry
{
it->value = entry.value;
it->tags = entry.tags;
if (it->description == "" || entry.description != "") //replace description if not empty in new entry
{
it->description = entry.description;
}
}
else //insert it
{
Param::ParamEntry tmp(entry);
tmp.name = prefix2;
insert_node->entries.push_back(tmp);
}
}
Size Param::ParamNode::size() const
{
Size subnode_size = 0;
for (vector<ParamNode>::const_iterator it = nodes.begin(); it != nodes.end(); ++it)
{
subnode_size += it->size();
}
return entries.size() + subnode_size;
}
String Param::ParamNode::suffix(const String& key) const
{
if (key.has(':'))
{
return key.suffix(':');
}
return key;
}
//********************************* Param **************************************
Param::Param() :
root_("ROOT", "")
{
}
Param::Param(const Param& rhs) :
root_(rhs.root_)
{
}
Param::~Param()
{
}
Param& Param::operator=(const Param& rhs)
{
root_ = rhs.root_;
return *this;
}
Param::Param(const ParamNode& node) :
root_(node)
{
root_.name = "ROOT";
root_.description = "";
}
bool Param::operator==(const Param& rhs) const
{
return root_ == rhs.root_;
}
void Param::setValue(const String& key, const DataValue& value, const String& description, const StringList& tags)
{
root_.insert(ParamEntry("", value, description, tags), key);
}
void Param::setValidStrings(const String& key, const std::vector<String>& strings)
{
ParamEntry& entry = getEntry_(key);
//check if correct parameter type
if (entry.value.valueType() != DataValue::STRING_VALUE && entry.value.valueType() != DataValue::STRING_LIST)
{
throw ElementNotFound(__FILE__, __LINE__, __PRETTY_FUNCTION__, key);
}
//check for commas
for (Size i = 0; i < strings.size(); ++i)
{
if (strings[i].has(','))
{
throw InvalidParameter(__FILE__, __LINE__, __PRETTY_FUNCTION__, "Comma characters in Param string restrictions are not allowed!");
}
}
entry.valid_strings = strings;
}
void Param::setMinInt(const String& key, Int min)
{
ParamEntry& entry = getEntry_(key);
if (entry.value.valueType() != DataValue::INT_VALUE && entry.value.valueType() != DataValue::INT_LIST)
{
throw ElementNotFound(__FILE__, __LINE__, __PRETTY_FUNCTION__, key);
}
entry.min_int = min;
}
void Param::setMaxInt(const String& key, Int max)
{
ParamEntry& entry = getEntry_(key);
if (entry.value.valueType() != DataValue::INT_VALUE && entry.value.valueType() != DataValue::INT_LIST)
{
throw ElementNotFound(__FILE__, __LINE__, __PRETTY_FUNCTION__, key);
}
entry.max_int = max;
}
void Param::setMinFloat(const String& key, DoubleReal min)
{
ParamEntry& entry = getEntry_(key);
if (entry.value.valueType() != DataValue::DOUBLE_VALUE && entry.value.valueType() != DataValue::DOUBLE_LIST)
{
throw ElementNotFound(__FILE__, __LINE__, __PRETTY_FUNCTION__, key);
}
entry.min_float = min;
}
void Param::setMaxFloat(const String& key, DoubleReal max)
{
ParamEntry& entry = getEntry_(key);
if (entry.value.valueType() != DataValue::DOUBLE_VALUE && entry.value.valueType() != DataValue::DOUBLE_LIST)
{
throw ElementNotFound(__FILE__, __LINE__, __PRETTY_FUNCTION__, key);
}
entry.max_float = max;
}
const DataValue& Param::getValue(const String& key) const
{
return getEntry_(key).value;
}
const String& Param::getSectionDescription(const String& key) const
{
//This variable is used instead of String::EMPTY as the method is used in
//statis initialization und thus cannot rely on String::EMPTY been initialized.
static String empty;
ParamNode* node = root_.findParentOf(key);
if (node == 0)
{
return empty;
}
Param::ParamNode::NodeIterator it = node->findNode(node->suffix(key));
if (it == node->nodes.end())
{
return empty;
}
return it->description;
}
void Param::insert(const String& prefix, const Param& param)
{
//cerr << "INSERT PARAM (" << prefix << ")" << endl;
for (Param::ParamNode::NodeIterator it = param.root_.nodes.begin(); it != param.root_.nodes.end(); ++it)
{
root_.insert(*it, prefix);
}
for (Param::ParamNode::EntryIterator it = param.root_.entries.begin(); it != param.root_.entries.end(); ++it)
{
root_.insert(*it, prefix);
}
}
void Param::setDefaults(const Param& defaults, const String& prefix, bool showMessage)
{
String prefix2 = prefix;
if (prefix2 != "")
{
prefix2.ensureLastChar(':');
}
String pathname;
for (Param::ParamIterator it = defaults.begin(); it != defaults.end(); ++it)
{
if (!exists(prefix2 + it.getName()))
{
if (showMessage)
cerr << "Setting " << prefix2 + it.getName() << " to " << it->value << endl;
String name = prefix2 + it.getName();
root_.insert(ParamEntry("", it->value, it->description), name);
//copy tags
for (set<String>::const_iterator tag_it = it->tags.begin(); tag_it != it->tags.end(); ++tag_it)
{
addTag(name, *tag_it);
}
//copy restrictions
if (it->value.valueType() == DataValue::STRING_VALUE || it->value.valueType() == DataValue::STRING_LIST)
{
setValidStrings(name, it->valid_strings);
}
else if (it->value.valueType() == DataValue::INT_VALUE || it->value.valueType() == DataValue::INT_LIST)
{
setMinInt(name, it->min_int);
setMaxInt(name, it->max_int);
}
else if (it->value.valueType() == DataValue::DOUBLE_VALUE || it->value.valueType() == DataValue::DOUBLE_LIST)
{
setMinFloat(name, it->min_float);
setMaxFloat(name, it->max_float);
}
}
//copy section descriptions
const std::vector<ParamIterator::TraceInfo>& trace = it.getTrace();
for (std::vector<ParamIterator::TraceInfo>::const_iterator it2 = trace.begin(); it2 != trace.end(); ++it2)
{
if (it2->opened)
{
pathname += it2->name + ":";
}
else
{
pathname.resize(pathname.size() - it2->name.size() - 1);
}
String real_pathname = pathname.chop(1); //remove ':' at the end
if (real_pathname != "")
{
String description_old = "";
String description_new = "";
description_old = getSectionDescription(prefix + real_pathname);
description_new = defaults.getSectionDescription(real_pathname);
if (description_old == "")
{
//cerr << "## Setting description of " << prefix+real_pathname << " to"<< endl;
//cerr << "## " << description_new << endl;
setSectionDescription(prefix2 + real_pathname, description_new);
}
}
}
}
}
void Param::remove(const String& key)
{
String keyname = key;
if (key.hasSuffix(':')) // delete section
{
keyname = key.chop(1);
ParamNode* node_parent = root_.findParentOf(keyname);
if (node_parent != 0)
{
Param::ParamNode::NodeIterator it = node_parent->findNode(node_parent->suffix(keyname));
if (it != node_parent->nodes.end())
{
String name = it->name;
node_parent->nodes.erase(it); // will automatically delete subnodes
if (node_parent->nodes.empty() && node_parent->entries.empty())
{
// delete last section name (could be partial)
remove(keyname.chop(name.size())); // keep last ':' to indicate deletion of a section
}
}
}
}
else
{
ParamNode* node = root_.findParentOf(keyname);
if (node != 0)
{
String entryname = node->suffix(keyname); // get everything beyond last ':'
Param::ParamNode::EntryIterator it = node->findEntry(entryname);
if (it != node->entries.end())
{
node->entries.erase(it); // delete entry
if (node->nodes.empty() && node->entries.empty())
{
// delete if section is now empty
remove(keyname.chop(entryname.size())); // keep last ':' to indicate deletion of a section
}
}
}
}
}
void Param::removeAll(const String& prefix)
{
if (prefix.hasSuffix(':')) //we have to delete one node only (and its subnodes)
{
ParamNode* node = root_.findParentOf(prefix.chop(1));
if (node != 0)
{
Param::ParamNode::NodeIterator it = node->findNode(node->suffix(prefix.chop(1)));
if (it != node->nodes.end())
{
String name = it->name;
node->nodes.erase(it); // will automatically delete subnodes
if (node->nodes.empty() && node->entries.empty())
{
// delete last section name (could be partial)
removeAll(prefix.chop(name.size() + 1)); // '+1' for the tailing ':'
}
}
}
}
else //we have to delete all entries and nodes starting with the prefix
{
ParamNode* node = root_.findParentOf(prefix);
if (node != 0)
{
String suffix = node->suffix(prefix); // name behind last ":"
for (Param::ParamNode::NodeIterator it = node->nodes.begin(); it != node->nodes.end(); /*do nothing*/)
{
if (it->name.hasPrefix(suffix))
{
it = node->nodes.erase(it);
}
else if (it != node->nodes.end())
{
++it;
}
}
for (Param::ParamNode::EntryIterator it = node->entries.begin(); it != node->entries.end(); /*do nothing*/)
{
if (it->name.hasPrefix(suffix))
{
it = node->entries.erase(it);
}
else if (it != node->entries.end())
{
++it;
}
}
// the parent node might now be empty (delete it as well - otherwise the trace might be broken)
if (node->nodes.empty() && node->entries.empty())
{
// delete last section name (could be partial)
removeAll(prefix.chop(suffix.size()));
}
}
}
}
Param Param::copy(const String& prefix, bool remove_prefix) const
{
ParamNode out("ROOT", "");
ParamNode* node = root_.findParentOf(prefix);
if (node == 0)
{
return Param();
}
//we have to copy this node only
if (prefix.hasSuffix(':'))
{
if (remove_prefix)
{
out = *node;
}
else
{
out.insert(*node, prefix.chop(node->name.size() + 1));
}
}
else //we have to copy all entries and nodes starting with the right suffix
{
String suffix = node->suffix(prefix);
for (Param::ParamNode::NodeIterator it = node->nodes.begin(); it != node->nodes.end(); ++it)
{
if (it->name.hasPrefix(suffix))
{
if (remove_prefix)
{
ParamNode tmp = *it;
tmp.name = tmp.name.substr(suffix.size());
out.insert(tmp);
}
else
{
out.insert(*it, prefix.chop(suffix.size()));
}
}
}
for (Param::ParamNode::EntryIterator it = node->entries.begin(); it != node->entries.end(); ++it)
{
if (it->name.hasPrefix(suffix))
{
if (remove_prefix)
{
ParamEntry tmp = *it;
tmp.name = tmp.name.substr(suffix.size());
out.insert(tmp);
}
else
{
out.insert(*it, prefix.chop(suffix.size()));
}
}
}
}
return Param(out);
}
void Param::parseCommandLine(const int argc, const char** argv, const String& prefix)
{
//determine prefix
String prefix2 = prefix;
if (prefix2 != "")
{
prefix2.ensureLastChar(':');
}
//parse arguments
String arg, arg1;
for (int i = 1; i < argc; ++i)
{
//load the current and next argument: arg and arg1 ("" at the last argument)
arg = argv[i];
arg1 = "";
if (i + 1 < argc)
{
arg1 = argv[i + 1];
}
//it is a option when it starts with a '-' and the second character is not a number
bool arg_is_option = false;
if (arg.size() >= 2 && arg[0] == '-' && arg[1] != '0' && arg[1] != '1' && arg[1] != '2' && arg[1] != '3' && arg[1] != '4' && arg[1] != '5' && arg[1] != '6' && arg[1] != '7' && arg[1] != '8' && arg[1] != '9')
arg_is_option = true;
bool arg1_is_option = false;
if (arg1.size() >= 2 && arg1[0] == '-' && arg1[1] != '0' && arg1[1] != '1' && arg1[1] != '2' && arg1[1] != '3' && arg1[1] != '4' && arg1[1] != '5' && arg1[1] != '6' && arg1[1] != '7' && arg1[1] != '8' && arg1[1] != '9')
arg1_is_option = true;
//cout << "Parse: '"<< arg << "' '" << arg1 << "'" << endl;
//flag (option without text argument)
if (arg_is_option && arg1_is_option)
{
root_.insert(ParamEntry(arg, String(), ""), prefix2);
}
//option with argument
else if (arg_is_option && !arg1_is_option)
{
root_.insert(ParamEntry(arg, arg1, ""), prefix2);
++i;
}
//just text arguments (not preceded by an option)
else
{
ParamEntry* misc_entry = root_.findEntryRecursive(prefix2 + "misc");
if (misc_entry == 0)
{
StringList sl;
sl << arg;
// create "misc"-Node:
root_.insert(ParamEntry("misc", sl, ""), prefix2);
}
else
{
StringList sl = (StringList)misc_entry->value;
sl << arg;
misc_entry->value = sl;
}
}
}
}
void Param::parseCommandLine(const int argc, const char** argv, const Map<String, String>& options_with_one_argument, const Map<String, String>& options_without_argument, const Map<String, String>& options_with_multiple_argument, const String& misc, const String& unknown)
{
//determine misc key
String misc_key = misc;
//determine unknown key
String unknown_key = unknown;
//parse arguments
String arg, arg1;
for (int i = 1; i < argc; ++i)
{
//load the current and next argument: arg and arg1 ("" at the last argument)
arg = argv[i];
arg1 = "";
if (i + 1 < argc)
{
arg1 = argv[i + 1];
}
//it is a option when it starts with a '-' and the second character is not a number
bool arg_is_option = false;
if (arg.size() >= 2 && arg[0] == '-' && arg[1] != '0' && arg[1] != '1' && arg[1] != '2' && arg[1] != '3' && arg[1] != '4' && arg[1] != '5' && arg[1] != '6' && arg[1] != '7' && arg[1] != '8' && arg[1] != '9')
arg_is_option = true;
bool arg1_is_option = false;
if (arg1.size() >= 2 && arg1[0] == '-' && arg1[1] != '0' && arg1[1] != '1' && arg1[1] != '2' && arg1[1] != '3' && arg1[1] != '4' && arg1[1] != '5' && arg1[1] != '6' && arg1[1] != '7' && arg1[1] != '8' && arg1[1] != '9')
arg1_is_option = true;
//with multpile argument
if (options_with_multiple_argument.has(arg))
{
//next argument is an option
if (arg1_is_option)
{
root_.insert(ParamEntry("", StringList(), ""), options_with_multiple_argument.find(arg)->second);
}
//next argument is not an option
else
{
StringList sl;
int j = (i + 1);
while (j < argc && !(arg1.size() >= 2 && arg1[0] == '-' && arg1[1] != '0' && arg1[1] != '1' && arg1[1] != '2' && arg1[1] != '3' && arg1[1] != '4' && arg1[1] != '5' && arg1[1] != '6' && arg1[1] != '7' && arg1[1] != '8' && arg1[1] != '9'))
{
sl << arg1;
++j;
if (j < argc)
arg1 = argv[j];
}
root_.insert(ParamEntry("", sl, ""), options_with_multiple_argument.find(arg)->second);
i = j - 1;
}
}
//without argument
else if (options_without_argument.has(arg))
{
root_.insert(ParamEntry("", String("true"), ""), options_without_argument.find(arg)->second);
}
//with one argument
else if (options_with_one_argument.has(arg))
{
//next argument is not an option
if (!arg1_is_option)
{
root_.insert(ParamEntry("", arg1, ""), options_with_one_argument.find(arg)->second);
++i;
}
//next argument is an option
else
{
root_.insert(ParamEntry("", String(), ""), options_with_one_argument.find(arg)->second);
}
}
//unknown option
else if (arg_is_option)
{
ParamEntry* unknown_entry = root_.findEntryRecursive(unknown);
if (unknown_entry == 0)
{
StringList sl;
sl << arg;
root_.insert(ParamEntry("", sl, ""), unknown);
}
else
{
StringList sl = (StringList)unknown_entry->value;
sl << arg;
unknown_entry->value = sl;
}
}
//just text argument
else
{
ParamEntry* misc_entry = root_.findEntryRecursive(misc);
if (misc_entry == 0)
{
StringList sl;
sl << arg;
// create "misc"-Node:
root_.insert(ParamEntry("", sl, ""), misc);
}
else
{
StringList sl = (StringList)misc_entry->value;
sl << arg;
misc_entry->value = sl;
}
}
}
}
ostream& operator<<(ostream& os, const Param& param)
{
for (Param::ParamIterator it = param.begin(); it != param.end(); ++it)
{
String prefix = it.getName().chop(it->name.size() + 1);
if (prefix != "")
{
prefix += "|";
}
os << '"' << prefix << it->name << "\" -> \"" << it->value << '"';
if (it->description != "")
{
os << " (" << it->description << ")";
}
os << endl;
}
return os;
}
Size Param::size() const
{
return root_.size();
}
bool Param::empty() const
{
return size() == 0;
}
void Param::clear()
{
root_ = ParamNode("ROOT", "");
}
void Param::checkDefaults(const String& name, const Param& defaults, const String& prefix, std::ostream& os) const
{
//Extract right parameters
String prefix2 = prefix;
if (prefix2 != "")
{
prefix2.ensureLastChar(':');
}
Param check_values = copy(prefix2, true);
//check
for (ParamIterator it = check_values.begin(); it != check_values.end(); ++it)
{
//unknown parameter
if (!defaults.exists(it.getName()))
{
os << "Warning: " << name << " received the unknown parameter '" << it.getName() << "'";
if (!prefix2.empty())
os << " in '" << prefix2 << "'";
os << "!" << endl;
}
//different types
ParamEntry* default_value = defaults.root_.findEntryRecursive(prefix2 + it.getName());
if (default_value == 0)
continue;
if (default_value->value.valueType() != it->value.valueType())
{
String d_type;
if (default_value->value.valueType() == DataValue::STRING_VALUE)
d_type = "string";
if (default_value->value.valueType() == DataValue::STRING_LIST)
d_type = "string list";
if (default_value->value.valueType() == DataValue::EMPTY_VALUE)
d_type = "empty";
if (default_value->value.valueType() == DataValue::INT_VALUE)
d_type = "integer";
if (default_value->value.valueType() == DataValue::INT_LIST)
d_type = "integer list";
if (default_value->value.valueType() == DataValue::DOUBLE_VALUE)
d_type = "float";
if (default_value->value.valueType() == DataValue::DOUBLE_LIST)
d_type = "float list";
String p_type;
if (it->value.valueType() == DataValue::STRING_VALUE)
p_type = "string";
if (it->value.valueType() == DataValue::STRING_LIST)
p_type = "string list";
if (it->value.valueType() == DataValue::EMPTY_VALUE)
p_type = "empty";
if (it->value.valueType() == DataValue::INT_VALUE)
p_type = "integer";
if (it->value.valueType() == DataValue::INT_LIST)
p_type = "integer list";
if (it->value.valueType() == DataValue::DOUBLE_VALUE)
p_type = "float";
if (it->value.valueType() == DataValue::DOUBLE_LIST)
p_type = "float list";
throw Exception::InvalidParameter(__FILE__, __LINE__, __PRETTY_FUNCTION__, name + ": Wrong parameter type '" + p_type + "' for " + d_type + " parameter '" + it.getName() + "' given!");
}
//parameter restrictions
ParamEntry pe = *default_value;
pe.value = it->value;
String s;
if (!pe.isValid(s))
throw Exception::InvalidParameter(__FILE__, __LINE__, __PRETTY_FUNCTION__, name + ": " + s);
}
}
Param::ParamIterator Param::findFirst(const String& leaf) const
{
for (Param::ParamIterator it = this->begin(); it != this->end(); ++it)
{
if (it.getName().hasSuffix(String(":") + leaf))
{
return it;
}
}
return this->end();
}
Param::ParamIterator Param::findNext(const String& leaf, const ParamIterator& start_leaf) const
{
// start at NEXT entry
Param::ParamIterator it = start_leaf;
if (it != this->end()) ++it;
for (; it != this->end(); ++it)
{
if (it.getName().hasSuffix(String(":") + leaf))
{
return it;
}
}
return this->end();
}
void Param::update(const Param& old_version, const bool add_unknown, Logger::LogStream& stream)
{
// augment
for (Param::ParamIterator it = old_version.begin(); it != old_version.end(); ++it)
{
Param::ParamEntry new_entry; // entry of new location (used to retain new description)
String target_name; // fully qualified name in new param
if (this->exists(it.getName()))
{
// param 'version': do not override!
if (it.getName().hasSuffix(":version"))
{
if (this->getValue(it.getName()) != it->value)
{
stream << "Warning: for ':version' entry, augmented and Default Ini-File differ in value. Default value will not be altered!\n";
}
continue;
}
// param 'type': do not override!
else if (it.getName().hasSuffix(":type") &&
it.getName().toQString().count(':') == 2) // only for TOPP type (e.g. PeakPicker:1:type), any other 'type' param is ok
{
if (this->getValue(it.getName()) != it->value)
{
stream << "Warning: for ':type' entry, augmented and Default Ini-File differ in value. Default value will not be altered!\n";
}
continue;
}
// all other parameters:
new_entry = this->getEntry(it.getName());
target_name = it.getName();
}
else // old param non-existant in new param
{
// search by suffix in new param. Only match complete names, e.g. myname will match newsection:myname, but not newsection:othermyname
Param::ParamEntry entry = old_version.getEntry(it.getName());
// since the old param with full path does not exist within new param, we will never find the new entry by using exists() as above, thus its safe to
// modify it here
ParamIterator it_match = this->findFirst(entry.name);
if (it_match != this->end())
{
// make sure the same leaf name does not exist at any other position
if (this->findNext(entry.name, it_match) == this->end())
{
stream << "Found '" << it.getName() << "' as '" << it_match.getName() << "' in new param." << std::endl;
new_entry = this->getEntry(it_match.getName());
target_name = it_match.getName();
}
}
if (target_name.empty()) // no mapping was found
{
if (add_unknown)
{
stream << "Unknown (or deprecated) Parameter '" << it.getName() << "' given in old parameter file! Adding to current set ..." << std::endl;
Param::ParamEntry entry = old_version.getEntry(it.getName());
String prefix = "";
if (it.getName().has(':'))
{
prefix = it.getName().substr(0, 1 + it.getName().find_last_of(':'));
}
this->root_.insert(entry, prefix); //->setValue(it.getName(), entry.value, entry.description, entry.tags);
}
else
{
stream << "Unknown (or deprecated) Parameter '" << it.getName() << "' given in old parameter file! Ignoring ..." << std::endl;
}
continue;
}
}
// do the actual updating (we found a matching pair)
if (new_entry.value.valueType() == it->value.valueType())
{
if (new_entry.value != it->value)
{
// check entry for consistency (in case restrictions have changed)
new_entry.value = it->value;
String s;
if (new_entry.isValid(s))
{
// overwrite default value
stream << "Overriding Default-Parameter '" << target_name << "' with new value '" << it->value << "'!" << std::endl;
this->setValue(target_name, it->value, new_entry.description, this->getTags(target_name));
}
else
{
stream << "Parameter '" << target_name << "' does not fit into new restriction settings! Ignoring...";
}
}
else
{
// value stayed the same .. nothing to be done
}
}
else
{
stream << "Parameter '" << it.getName() << "' has changed value type! Ignoring...\n";
}
} // next param in old tree
}
void Param::merge(const OpenMS::Param& toMerge)
{
// keep track of the path inside the param tree
String pathname;
// augment
for (Param::ParamIterator it = toMerge.begin(); it != toMerge.end(); ++it)
{
String prefix = "";
if (it.getName().has(':'))
prefix = it.getName().substr(0, 1 + it.getName().find_last_of(':'));
// we care only about values that do not exist already
if (!this->exists(it.getName()))
{
Param::ParamEntry entry = *it;
LOG_DEBUG << "[Param::merge] merging " << it.getName() << std::endl;
this->root_.insert(entry, prefix);
}
//copy section descriptions
const std::vector<ParamIterator::TraceInfo>& trace = it.getTrace();
for (std::vector<ParamIterator::TraceInfo>::const_iterator traceIt = trace.begin(); traceIt != trace.end(); ++traceIt)
{
if (traceIt->opened)
{
LOG_DEBUG << "[Param::merge] extending param trace " << traceIt->name << " (" << pathname << ")" << std::endl;
pathname += traceIt->name + ":";
}
else
{
LOG_DEBUG << "[Param::merge] reducing param trace " << traceIt->name << " (" << pathname << ")" << std::endl;
if (pathname.hasSuffix(traceIt->name + ":"))
pathname.resize(pathname.size() - traceIt->name.size() - 1);
}
String real_pathname = pathname.chop(1); //remove ':' at the end
if (real_pathname != "")
{
String description_old = "";
String description_new = "";
description_old = getSectionDescription(prefix + real_pathname);
description_new = toMerge.getSectionDescription(real_pathname);
if (description_old == "")
{
setSectionDescription(real_pathname, description_new);
}
}
}
}
}
void Param::setSectionDescription(const String& key, const String& description)
{
ParamNode* node = root_.findParentOf(key);
if (node == 0)
{
throw ElementNotFound(__FILE__, __LINE__, __PRETTY_FUNCTION__, key);
}
Param::ParamNode::NodeIterator it = node->findNode(node->suffix(key));
if (it == node->nodes.end())
{
throw ElementNotFound(__FILE__, __LINE__, __PRETTY_FUNCTION__, key);
}
it->description = description;
}
Param::ParamIterator Param::begin() const
{
return ParamIterator(root_);
}
Param::ParamIterator Param::end() const
{
return ParamIterator();
}
Param::ParamIterator::ParamIterator() :
root_(0),
current_(0),
stack_(),
trace_()
{
}
Param::ParamIterator::ParamIterator(const Param::ParamNode& root) :
root_(&root),
current_(-1),
stack_(),
trace_()
{
//Empty Param => begin == end iterator
if (root_->entries.empty() && root_->nodes.empty())
{
root_ = 0;
return;
}
//find first entry
stack_.push_back(root_);
operator++();
}
Param::ParamIterator::~ParamIterator()
{
}
const Param::ParamEntry& Param::ParamIterator::operator*()
{
return stack_.back()->entries[current_];
}
const Param::ParamEntry* Param::ParamIterator::operator->()
{
return &(stack_.back()->entries[current_]);
}
Param::ParamIterator Param::ParamIterator::operator++(Int)
{
ParamIterator tmp(*this);
++(*this);
return tmp;
}
Param::ParamIterator& Param::ParamIterator::operator++()
{
if (root_ == 0)
return *this;
trace_.clear();
while (true)
{
const Param::ParamNode* node = stack_.back();
//cout << "############ operator++ #### " << node->name << " ## " << current_ <<endl;
//check if there is a next entry in the current node
if (current_ + 1 < (Int)node->entries.size())
{
//cout << " - next entry" <<endl;
++current_;
return *this;
}
//visit subnodes after entries
else if (!node->nodes.empty())
{
current_ = -1;
stack_.push_back(&(node->nodes[0]));
//cout << " - entering into: " << node->nodes[0].name <<endl;
//track changes (enter a node)
trace_.push_back(TraceInfo(node->nodes[0].name, node->nodes[0].description, true));
continue;
}
//go back in tree until the node we came from is not the last subnode
//of the current node. Go into the next subnode.
else
{
while (true)
{
const Param::ParamNode* last = node;
stack_.pop_back();
//cout << " - stack size: " << stack_.size() << endl;
//we have reached the end
if (stack_.empty())
{
//cout << " - reached the end" << endl;
root_ = 0;
return *this;
}
node = stack_.back();
//cout << " - last was: " << last->name << endl;
//cout << " - descended to: " << node->name << endl;
//track changes (leave a node)
trace_.push_back(TraceInfo(last->name, last->description, false));
//check of new subtree is accessable
UInt next_index = (last - &(node->nodes[0])) + 1;
if (next_index < node->nodes.size())
{
current_ = -1;
stack_.push_back(&(node->nodes[next_index]));
//cout << " - entering into: " << node->nodes[next_index].name << endl;
//track changes (enter a node)
trace_.push_back(TraceInfo(node->nodes[next_index].name, node->nodes[next_index].description, true));
break;
}
}
}
}
return *this;
}
bool Param::ParamIterator::operator==(const ParamIterator& rhs) const
{
return (root_ == 0 && rhs.root_ == 0) || (stack_ == rhs.stack_ && current_ == rhs.current_);
}
bool Param::ParamIterator::operator!=(const ParamIterator& rhs) const
{
return !operator==(rhs);
}
String Param::ParamIterator::getName() const
{
String tmp;
for (std::vector<const Param::ParamNode*>::const_iterator it = stack_.begin() + 1; it != stack_.end(); ++it)
{
tmp += (*it)->name + ':';
}
return tmp + stack_.back()->entries[current_].name;
}
const std::vector<Param::ParamIterator::TraceInfo>& Param::ParamIterator::getTrace() const
{
return trace_;
}
const Param::ParamEntry& Param::getEntry(const String& key) const
{
return getEntry_(key);
}
const String& Param::getDescription(const String& key) const
{
return getEntry_(key).description;
}
void Param::addTag(const String& key, const String& tag)
{
if (tag.has(','))
{
throw Exception::InvalidValue(__FILE__, __LINE__, __PRETTY_FUNCTION__, "Param tags may not contain comma characters", tag);
}
getEntry_(key).tags.insert(tag);
}
void Param::addTags(const String& key, const StringList& tags)
{
ParamEntry& entry = getEntry_(key);
for (Size i = 0; i != tags.size(); ++i)
{
if (tags[i].has(','))
{
throw Exception::InvalidValue(__FILE__, __LINE__, __PRETTY_FUNCTION__, "Param tags may not contain comma characters", tags[i]);
}
entry.tags.insert(tags[i]);
}
}
StringList Param::getTags(const String& key) const
{
ParamEntry& entry = getEntry_(key);
StringList list;
for (set<String>::const_iterator it = entry.tags.begin(); it != entry.tags.end(); ++it)
{
list.push_back(*it);
}
return list;
}
void Param::clearTags(const String& key)
{
getEntry_(key).tags.clear();
}
bool Param::hasTag(const String& key, const String& tag) const
{
return getEntry_(key).tags.count(tag);
}
bool Param::exists(const String& key) const
{
return root_.findEntryRecursive(key);
}
Param::ParamEntry& Param::getEntry_(const String& key) const
{
ParamEntry* entry = root_.findEntryRecursive(key);
if (entry == 0)
{
throw ElementNotFound(__FILE__, __LINE__, __PRETTY_FUNCTION__, key);
}
return *entry;
}
} //namespace
|