Line data Source code
1 : /****************************************************************************/
2 : // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3 : // Copyright (C) 2001-2024 German Aerospace Center (DLR) and others.
4 : // This program and the accompanying materials are made available under the
5 : // terms of the Eclipse Public License 2.0 which is available at
6 : // https://www.eclipse.org/legal/epl-2.0/
7 : // This Source Code may also be made available under the following Secondary
8 : // Licenses when the conditions for such availability set forth in the Eclipse
9 : // Public License 2.0 are satisfied: GNU General Public License, version 2
10 : // or later which is available at
11 : // https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12 : // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13 : /****************************************************************************/
14 : /// @file OptionsCont.cpp
15 : /// @author Daniel Krajzewicz
16 : /// @author Jakob Erdmann
17 : /// @author Michael Behrisch
18 : /// @author Walter Bamberger
19 : /// @date Mon, 17 Dec 2001
20 : ///
21 : // A storage for options (typed value containers)
22 : /****************************************************************************/
23 : #include <config.h>
24 :
25 : #include <map>
26 : #include <string>
27 : #include <exception>
28 : #include <algorithm>
29 : #include <vector>
30 : #include <iostream>
31 : #include <cstdlib>
32 : #include <ctime>
33 : #include <cstring>
34 : #include <cerrno>
35 : #include <iterator>
36 : #include <sstream>
37 : #include <utils/common/UtilExceptions.h>
38 : #include <utils/common/FileHelpers.h>
39 : #include <utils/common/MsgHandler.h>
40 : #include <utils/common/StringTokenizer.h>
41 : #include <utils/common/StringUtils.h>
42 : #include <utils/xml/SUMOSAXAttributes.h>
43 : #include "Option.h"
44 : #include "OptionsIO.h"
45 : #include "OptionsCont.h"
46 :
47 :
48 : // ===========================================================================
49 : // static member definitions
50 : // ===========================================================================
51 :
52 : OptionsCont OptionsCont::myOptions;
53 : OptionsCont OptionsCont::EMPTY_OPTIONS;
54 :
55 : // ===========================================================================
56 : // method definitions
57 : // ===========================================================================
58 :
59 : OptionsCont&
60 1568010303 : OptionsCont::getOptions() {
61 1568010303 : return myOptions;
62 : }
63 :
64 :
65 115772 : OptionsCont::OptionsCont() {
66 115772 : myCopyrightNotices.push_back(TL("Copyright (C) 2001-2024 German Aerospace Center (DLR) and others; https://sumo.dlr.de"));
67 115772 : }
68 :
69 :
70 115772 : OptionsCont::~OptionsCont() {
71 115772 : clear();
72 231544 : }
73 :
74 :
75 : void
76 25849834 : OptionsCont::doRegister(const std::string& name, Option* o) {
77 : // first check that option isn't null
78 25849834 : if (o == nullptr) {
79 0 : throw ProcessError("Option cannot be null");
80 : }
81 : // now check that there isn't another addresse (or synonym) related with the option
82 25849834 : if (myValues.find(name) != myValues.end()) {
83 0 : throw ProcessError(name + " is an already used option name.");
84 : }
85 : // check if previously was inserted in addresses (to avoid synonyms in addresses)
86 : bool isSynonym = false;
87 5132004760 : for (const auto& addresse : myAddresses) {
88 5106154926 : if (addresse.second == o) {
89 : isSynonym = true;
90 : }
91 : }
92 25849834 : if (!isSynonym) {
93 41569320 : myAddresses.push_back(std::make_pair(name, o));
94 : }
95 : // insert in values
96 25849834 : myValues[name] = o;
97 25849834 : }
98 :
99 :
100 : void
101 1433980 : OptionsCont::doRegister(const std::string& name1, char abbr, Option* o) {
102 1433980 : doRegister(name1, o);
103 1433980 : doRegister(convertChar(abbr), o);
104 1433980 : }
105 :
106 :
107 : void
108 3631194 : OptionsCont::addSynonyme(const std::string& name1, const std::string& name2, bool isDeprecated) {
109 : auto i1 = myValues.find(name1);
110 : auto i2 = myValues.find(name2);
111 3631194 : if (i1 == myValues.end() && i2 == myValues.end()) {
112 0 : throw ProcessError("Neither the option '" + name1 + "' nor the option '" + name2 + "' is known yet");
113 : }
114 3631194 : if (i1 != myValues.end() && i2 != myValues.end()) {
115 0 : if ((*i1).second == (*i2).second) {
116 : return;
117 : }
118 0 : throw ProcessError("Both options '" + name1 + "' and '" + name2 + "' do exist and differ.");
119 : }
120 3631194 : if (i1 == myValues.end() && i2 != myValues.end()) {
121 123767 : doRegister(name1, (*i2).second);
122 123767 : if (isDeprecated) {
123 0 : myDeprecatedSynonymes[name1] = false;
124 : }
125 : }
126 3631194 : if (i1 != myValues.end() && i2 == myValues.end()) {
127 3507427 : doRegister(name2, (*i1).second);
128 3507427 : if (isDeprecated) {
129 1927945 : myDeprecatedSynonymes[name2] = false;
130 : }
131 : }
132 : }
133 :
134 :
135 : void
136 103266 : OptionsCont::addXMLDefault(const std::string& name, const std::string& xmlRoot) {
137 103266 : myXMLDefaults[xmlRoot] = name;
138 103266 : }
139 :
140 :
141 : bool
142 379087630 : OptionsCont::exists(const std::string& name) const {
143 379087630 : return myValues.count(name) > 0;
144 : }
145 :
146 :
147 : bool
148 1664663081 : OptionsCont::isSet(const std::string& name, bool failOnNonExistant) const {
149 : auto i = myValues.find(name);
150 1664663081 : if (i == myValues.end()) {
151 202 : if (failOnNonExistant) {
152 6 : throw ProcessError(TLF("Internal request for unknown option '%'!", name));
153 : } else {
154 : return false;
155 : }
156 : }
157 1664662879 : return (*i).second->isSet();
158 : }
159 :
160 :
161 : bool
162 2210254 : OptionsCont::isDefault(const std::string& name) const {
163 : auto i = myValues.find(name);
164 2210254 : if (i == myValues.end()) {
165 : return false;
166 : }
167 2209813 : return (*i).second->isDefault();
168 : }
169 :
170 :
171 : Option*
172 367910631 : OptionsCont::getSecure(const std::string& name) const {
173 : const auto& valuesFinder = myValues.find(name);
174 367910631 : if (valuesFinder == myValues.end()) {
175 165 : throw ProcessError(TLF("No option with the name '%' exists.", name));
176 : }
177 : const auto& synonymFinder = myDeprecatedSynonymes.find(name);
178 367910576 : if ((synonymFinder != myDeprecatedSynonymes.end()) && !synonymFinder->second) {
179 : std::string defaultName;
180 7018 : for (const auto& subtopicEntry : mySubTopicEntries) {
181 105537 : for (const auto& value : subtopicEntry.second) {
182 : const auto l = myValues.find(value);
183 99720 : if ((l != myValues.end()) && (l->second == valuesFinder->second)) {
184 : defaultName = value;
185 : break;
186 : }
187 : }
188 7018 : if (defaultName != "") {
189 : break;
190 : }
191 : }
192 3603 : WRITE_WARNINGF(TL("Please note that '%' is deprecated.\n Use '%' instead."), name, defaultName);
193 1201 : synonymFinder->second = true;
194 : }
195 367910576 : return valuesFinder->second;
196 : }
197 :
198 :
199 : std::string
200 61139766 : OptionsCont::getValueString(const std::string& name) const {
201 61139766 : Option* o = getSecure(name);
202 61139766 : return o->getValueString();
203 : }
204 :
205 :
206 : std::string
207 26078607 : OptionsCont::getString(const std::string& name) const {
208 26078607 : Option* o = getSecure(name);
209 26078607 : return o->getString();
210 : }
211 :
212 :
213 : double
214 108989991 : OptionsCont::getFloat(const std::string& name) const {
215 108989991 : Option* o = getSecure(name);
216 108989990 : return o->getFloat();
217 : }
218 :
219 :
220 : int
221 2082125 : OptionsCont::getInt(const std::string& name) const {
222 2082125 : Option* o = getSecure(name);
223 2082125 : return o->getInt();
224 : }
225 :
226 :
227 : bool
228 121356165 : OptionsCont::getBool(const std::string& name) const {
229 121356165 : Option* o = getSecure(name);
230 121356165 : return o->getBool();
231 : }
232 :
233 :
234 : const IntVector&
235 0 : OptionsCont::getIntVector(const std::string& name) const {
236 0 : Option* o = getSecure(name);
237 0 : return o->getIntVector();
238 : }
239 :
240 : const StringVector&
241 1222763 : OptionsCont::getStringVector(const std::string& name) const {
242 1222763 : Option* o = getSecure(name);
243 1222763 : return o->getStringVector();
244 : }
245 :
246 :
247 : bool
248 1118403 : OptionsCont::set(const std::string& name, const std::string& value, const bool append) {
249 1118403 : Option* o = getSecure(name);
250 1118385 : if (!o->isWriteable()) {
251 0 : reportDoubleSetting(name);
252 0 : return false;
253 : }
254 : try {
255 : // Substitute environment variables defined by ${NAME} with their value
256 2236752 : if (!o->set(StringUtils::substituteEnvironment(value, &OptionsIO::getLoadTime()), value, append)) {
257 : return false;
258 : }
259 18 : } catch (ProcessError& e) {
260 36 : WRITE_ERROR("While processing option '" + name + "':\n " + e.what());
261 : return false;
262 18 : }
263 : return true;
264 : }
265 :
266 :
267 : bool
268 165103 : OptionsCont::setDefault(const std::string& name, const std::string& value) {
269 165103 : Option* const o = getSecure(name);
270 165103 : if (o->isWriteable() && set(name, value)) {
271 144300 : o->resetDefault();
272 144300 : return true;
273 : }
274 : return false;
275 : }
276 :
277 :
278 : bool
279 24 : OptionsCont::setByRootElement(const std::string& root, const std::string& value) {
280 : if (myXMLDefaults.count(root) > 0) {
281 1 : return set(myXMLDefaults[root], value);
282 : }
283 46 : if (myXMLDefaults.count("") > 0) {
284 46 : return set(myXMLDefaults[""], value);
285 : }
286 : return false;
287 : }
288 :
289 :
290 : std::vector<std::string>
291 40066 : OptionsCont::getSynonymes(const std::string& name) const {
292 40066 : Option* o = getSecure(name);
293 : std::vector<std::string> synonymes;
294 17569515 : for (const auto& value : myValues) {
295 17529449 : if ((value.second == o) && (name != value.first)) {
296 12098 : synonymes.push_back(value.first);
297 : }
298 : }
299 40066 : return synonymes;
300 0 : }
301 :
302 :
303 : const std::string&
304 0 : OptionsCont::getDescription(const std::string& name) const {
305 0 : return getSecure(name)->getDescription();
306 : }
307 :
308 :
309 : const std::string&
310 0 : OptionsCont::getSubTopic(const std::string& name) const {
311 0 : return getSecure(name)->getSubTopic();
312 : }
313 :
314 :
315 : std::ostream&
316 0 : operator<<(std::ostream& os, const OptionsCont& oc) {
317 : std::vector<std::string> done;
318 : os << "Options set:" << std::endl;
319 0 : for (const auto& value : oc.myValues) {
320 0 : const auto& finder = std::find(done.begin(), done.end(), value.first);
321 0 : if (finder == done.end()) {
322 0 : std::vector<std::string> synonymes = oc.getSynonymes(value.first);
323 0 : if (synonymes.size() != 0) {
324 0 : os << value.first << " (";
325 0 : for (auto synonym = synonymes.begin(); synonym != synonymes.end(); synonym++) {
326 0 : if (synonym != synonymes.begin()) {
327 0 : os << ", ";
328 : }
329 : os << (*synonym);
330 : }
331 0 : os << ")";
332 : } else {
333 : os << value.first;
334 : }
335 0 : if (value.second->isSet()) {
336 0 : os << ": " << value.second->getValueString() << std::endl;
337 : } else {
338 : os << ": <INVALID>" << std::endl;
339 : }
340 0 : done.push_back(value.first);
341 : copy(synonymes.begin(), synonymes.end(), back_inserter(done));
342 0 : }
343 : }
344 0 : return os;
345 0 : }
346 :
347 :
348 : void
349 11180 : OptionsCont::relocateFiles(const std::string& configuration) const {
350 4751181 : for (const auto& addresse : myAddresses) {
351 4740001 : if (addresse.second->isFileName() && addresse.second->isSet()) {
352 66414 : StringVector fileList = StringVector(addresse.second->getStringVector());
353 133692 : for (auto& file : fileList) {
354 67278 : file = FileHelpers::checkForRelativity(file, configuration);
355 : try {
356 134554 : file = StringUtils::urlDecode(file);
357 2 : } catch (NumberFormatException& e) {
358 4 : WRITE_WARNING(toString(e.what()) + " when trying to decode filename '" + file + "'.");
359 2 : }
360 : }
361 199242 : StringVector rawList = StringTokenizer(addresse.second->getValueString(), ",").getVector();
362 133692 : for (auto& file : rawList) {
363 134556 : file = FileHelpers::checkForRelativity(file, configuration);
364 : }
365 66414 : const std::string conv = joinToString(fileList, ',');
366 132828 : if (conv != joinToString(addresse.second->getStringVector(), ',')) {
367 2896 : const bool hadDefault = addresse.second->isDefault();
368 2896 : addresse.second->set(conv, joinToString(rawList, ','), false);
369 2896 : if (hadDefault) {
370 654 : addresse.second->resetDefault();
371 : }
372 : }
373 66414 : }
374 : }
375 11180 : }
376 :
377 :
378 : bool
379 95959 : OptionsCont::isUsableFileList(const std::string& name) const {
380 95959 : Option* const o = getSecure(name);
381 95959 : if (!o->isSet()) {
382 : return false;
383 : }
384 : // check whether the list of files is valid
385 : bool ok = true;
386 88576 : std::vector<std::string> files = getStringVector(name);
387 88576 : if (files.size() == 0) {
388 0 : WRITE_ERRORF(TL("The file list for '%' is empty."), name);
389 : ok = false;
390 : }
391 184679 : for (const auto& file : files) {
392 192206 : if (!FileHelpers::isReadable(file)) {
393 116 : if (file != "") {
394 348 : WRITE_ERRORF(TL("File '%' is not accessible (%)."), file, std::strerror(errno));
395 : ok = false;
396 : } else {
397 0 : WRITE_WARNING(TL("Empty file name given; ignoring."));
398 : }
399 : }
400 : }
401 : return ok;
402 88576 : }
403 :
404 :
405 : bool
406 5694 : OptionsCont::checkDependingSuboptions(const std::string& name, const std::string& prefix) const {
407 5694 : Option* o = getSecure(name);
408 5694 : if (o->isSet()) {
409 : return true;
410 : }
411 : bool ok = true;
412 : std::vector<std::string> seenSynonymes;
413 2667250 : for (const auto& value : myValues) {
414 2661575 : if (std::find(seenSynonymes.begin(), seenSynonymes.end(), value.first) != seenSynonymes.end()) {
415 1 : continue;
416 : }
417 2750539 : if (value.second->isSet() && !value.second->isDefault() && value.first.find(prefix) == 0) {
418 3 : WRITE_ERRORF(TL("Option '%' needs option '%'."), value.first, name);
419 1 : std::vector<std::string> synonymes = getSynonymes(value.first);
420 : std::copy(synonymes.begin(), synonymes.end(), std::back_inserter(seenSynonymes));
421 : ok = false;
422 1 : }
423 : }
424 : return ok;
425 5675 : }
426 :
427 :
428 : void
429 0 : OptionsCont::reportDoubleSetting(const std::string& arg) const {
430 0 : std::vector<std::string> synonymes = getSynonymes(arg);
431 0 : std::ostringstream s;
432 0 : s << TLF("A value for the option '%' was already set.\n Possible synonymes: ", arg);
433 : auto synonym = synonymes.begin();
434 0 : while (synonym != synonymes.end()) {
435 : s << (*synonym);
436 : synonym++;
437 0 : if (synonym != synonymes.end()) {
438 0 : s << ", ";
439 : }
440 : }
441 0 : WRITE_ERROR(s.str());
442 0 : }
443 :
444 :
445 : std::string
446 1433980 : OptionsCont::convertChar(char abbr) const {
447 : char buf[2];
448 1433980 : buf[0] = abbr;
449 1433980 : buf[1] = 0;
450 1433980 : std::string s(buf);
451 1433980 : return s;
452 : }
453 :
454 :
455 : bool
456 751177 : OptionsCont::isBool(const std::string& name) const {
457 751177 : Option* o = getSecure(name);
458 751147 : return o->isBool();
459 : }
460 :
461 :
462 : void
463 68958 : OptionsCont::resetWritable() {
464 25542629 : for (const auto& addresse : myAddresses) {
465 25473671 : addresse.second->resetWritable();
466 : }
467 68958 : }
468 :
469 :
470 : void
471 0 : OptionsCont::resetDefault() {
472 0 : for (const auto& addresse : myAddresses) {
473 0 : addresse.second->resetDefault();
474 : }
475 0 : }
476 :
477 :
478 : void
479 0 : OptionsCont::resetDefault(const std::string& name) {
480 0 : getSecure(name)->resetDefault();
481 0 : }
482 :
483 :
484 : bool
485 94794 : OptionsCont::isWriteable(const std::string& name) {
486 94794 : Option* o = getSecure(name);
487 94788 : return o->isWriteable();
488 : }
489 :
490 :
491 : void
492 209783 : OptionsCont::clear() {
493 : // delete only address (because synonyms placed in values aim to the same Option)
494 20994443 : for (const auto& addresse : myAddresses) {
495 20784660 : delete addresse.second;
496 : }
497 : myAddresses.clear();
498 : myValues.clear();
499 : mySubTopics.clear();
500 : mySubTopicEntries.clear();
501 209783 : }
502 :
503 :
504 : void
505 20784660 : OptionsCont::addDescription(const std::string& name, const std::string& subtopic,
506 : const std::string& description) {
507 20784660 : Option* o = getSecure(name);
508 20784660 : if (o == nullptr) {
509 0 : throw ProcessError("Option doesn't exist");
510 : }
511 20784660 : if (find(mySubTopics.begin(), mySubTopics.end(), subtopic) == mySubTopics.end()) {
512 0 : throw ProcessError("SubTopic '" + subtopic + "' doesn't exist");
513 : }
514 20784660 : o->setDescription(description);
515 20784660 : o->setSubtopic(subtopic);
516 20784660 : mySubTopicEntries[subtopic].push_back(name);
517 20784660 : }
518 :
519 :
520 : void
521 0 : OptionsCont::setFurtherAttributes(const std::string& name, const std::string& subtopic, bool required, bool positional, const std::string& listSep) {
522 0 : Option* o = getSecure(name);
523 0 : if (o == nullptr) {
524 0 : throw ProcessError("Option doesn't exist");
525 : }
526 0 : if (find(mySubTopics.begin(), mySubTopics.end(), subtopic) == mySubTopics.end()) {
527 0 : throw ProcessError("SubTopic '" + subtopic + "' doesn't exist");
528 : }
529 0 : if (required) {
530 0 : o->setRequired();
531 : }
532 0 : if (positional) {
533 0 : o->setPositional();
534 : }
535 0 : o->setListSeparator(listSep);
536 0 : }
537 :
538 :
539 : void
540 57415 : OptionsCont::setApplicationName(const std::string& appName,
541 : const std::string& fullName) {
542 57415 : myAppName = appName;
543 57415 : myFullName = fullName;
544 57415 : }
545 :
546 :
547 : void
548 56849 : OptionsCont::setApplicationDescription(const std::string& appDesc) {
549 56849 : myAppDescription = appDesc;
550 56849 : }
551 :
552 :
553 : void
554 145120 : OptionsCont::addCallExample(const std::string& example, const std::string& desc) {
555 145120 : myCallExamples.push_back(std::make_pair(example, desc));
556 145120 : }
557 :
558 :
559 : void
560 118 : OptionsCont::setAdditionalHelpMessage(const std::string& add) {
561 118 : myAdditionalMessage = add;
562 118 : }
563 :
564 :
565 : void
566 14 : OptionsCont::addCopyrightNotice(const std::string& copyrightLine) {
567 14 : myCopyrightNotices.push_back(copyrightLine);
568 14 : }
569 :
570 :
571 : void
572 0 : OptionsCont::clearCopyrightNotices() {
573 : myCopyrightNotices.clear();
574 0 : }
575 :
576 :
577 : void
578 1301872 : OptionsCont::addOptionSubTopic(const std::string& topic) {
579 1301872 : mySubTopics.push_back(topic);
580 1301872 : mySubTopicEntries[topic] = std::vector<std::string>();
581 1301872 : }
582 :
583 :
584 : void
585 18292 : OptionsCont::splitLines(std::ostream& os, std::string what,
586 : int offset, int nextOffset) {
587 56082 : while (what.length() > 0) {
588 37790 : if ((int)what.length() > 79 - offset) {
589 19530 : std::string::size_type splitPos = what.rfind(';', 79 - offset);
590 19530 : if (splitPos == std::string::npos) {
591 19275 : splitPos = what.rfind(' ', 79 - offset);
592 : } else {
593 255 : splitPos++;
594 : }
595 19530 : if (splitPos != std::string::npos) {
596 19498 : os << what.substr(0, splitPos) << std::endl;
597 19498 : what = what.substr(splitPos + 1);
598 794031 : for (int r = 0; r < (nextOffset + 1); ++r) {
599 774533 : os << ' ';
600 : }
601 : } else {
602 : os << what;
603 : what = "";
604 : }
605 : offset = nextOffset;
606 : } else {
607 : os << what;
608 : what = "";
609 : }
610 : }
611 : os << std::endl;
612 18292 : }
613 :
614 :
615 : bool
616 57847 : OptionsCont::processMetaOptions(bool missingOptions) {
617 57847 : MsgHandler::setupI18n(getString("language"));
618 57847 : if (missingOptions) {
619 : // no options are given
620 : std::cout << myFullName << std::endl;
621 72 : std::cout << TL(" Build features: ") << HAVE_ENABLED << std::endl;
622 145 : for (const auto& copyrightNotice : myCopyrightNotices) {
623 73 : std::cout << " " << copyrightNotice.data() << std::endl;
624 : }
625 72 : std::cout << TL(" License EPL-2.0: Eclipse Public License Version 2 <https://eclipse.org/legal/epl-v20.html>") << std::endl;
626 72 : std::cout << TL(" Use --help to get the list of options.") << std::endl;
627 72 : return true;
628 : }
629 :
630 : // check whether the help shall be printed
631 115550 : if (getBool("help")) {
632 : std::cout << myFullName << std::endl;
633 147 : for (const auto& copyrightNotice : myCopyrightNotices) {
634 74 : std::cout << " " << copyrightNotice.data() << std::endl;
635 : }
636 73 : printHelp(std::cout);
637 73 : return true;
638 : }
639 : // check whether the help shall be printed
640 115404 : if (getBool("version")) {
641 : std::cout << myFullName << std::endl;
642 13 : std::cout << TL(" Build features: ") << HAVE_ENABLED << std::endl;
643 27 : for (const auto& copyrightNotice : myCopyrightNotices) {
644 14 : std::cout << " " << copyrightNotice.data() << std::endl;
645 : }
646 13 : std::cout << "\n" << myFullName << " is part of SUMO.\n";
647 13 : std::cout << "This program and the accompanying materials\n";
648 13 : std::cout << "are made available under the terms of the Eclipse Public License v2.0\n";
649 13 : std::cout << "which accompanies this distribution, and is available at\n";
650 13 : std::cout << "http://www.eclipse.org/legal/epl-v20.html\n";
651 13 : std::cout << "This program may also be made available under the following Secondary\n";
652 13 : std::cout << "Licenses when the conditions for such availability set forth in the Eclipse\n";
653 13 : std::cout << "Public License 2.0 are satisfied: GNU General Public License, version 2\n";
654 13 : std::cout << "or later which is available at\n";
655 13 : std::cout << "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html\n";
656 : std::cout << "SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later" << std::endl;
657 13 : return true;
658 : }
659 : // check whether the settings shall be printed
660 115378 : if (getBool("print-options")) {
661 0 : std::cout << (*this);
662 : }
663 : // check whether something has to be done with options
664 : // whether the current options shall be saved
665 115378 : if (isSet("save-configuration")) {
666 366 : const std::string& configPath = getString("save-configuration");
667 366 : if (configPath == "-" || configPath == "stdout") {
668 24 : writeConfiguration(std::cout, true, false, getBool("save-commented"));
669 12 : return true;
670 : }
671 708 : std::ofstream out(StringUtils::transcodeToLocal(configPath).c_str());
672 354 : if (!out.good()) {
673 0 : throw ProcessError(TLF("Could not save configuration to '%'", configPath));
674 : } else {
675 354 : writeConfiguration(out, true, false, getBool("save-commented"), configPath);
676 708 : if (getBool("verbose")) {
677 480 : WRITE_MESSAGEF(TL("Written configuration to '%'"), configPath);
678 : }
679 : return true;
680 : }
681 354 : }
682 : // whether the template shall be saved
683 114646 : if (isSet("save-template")) {
684 60 : if (getString("save-template") == "-" || getString("save-template") == "stdout") {
685 4 : writeConfiguration(std::cout, false, true, getBool("save-commented"));
686 2 : return true;
687 : }
688 36 : std::ofstream out(StringUtils::transcodeToLocal(getString("save-template")).c_str());
689 18 : if (!out.good()) {
690 0 : throw ProcessError(TLF("Could not save template to '%'", getString("save-template")));
691 : } else {
692 36 : writeConfiguration(out, false, true, getBool("save-commented"));
693 36 : if (getBool("verbose")) {
694 0 : WRITE_MESSAGEF(TL("Written template to '%'"), getString("save-template"));
695 : }
696 : return true;
697 : }
698 18 : }
699 114606 : if (isSet("save-schema")) {
700 3 : if (getString("save-schema") == "-" || getString("save-schema") == "stdout") {
701 0 : writeSchema(std::cout);
702 0 : return true;
703 : }
704 2 : std::ofstream out(StringUtils::transcodeToLocal(getString("save-schema")).c_str());
705 1 : if (!out.good()) {
706 0 : throw ProcessError(TLF("Could not save schema to '%'", getString("save-schema")));
707 : } else {
708 1 : writeSchema(out);
709 2 : if (getBool("verbose")) {
710 0 : WRITE_MESSAGEF(TL("Written schema to '%'"), getString("save-schema"));
711 : }
712 : return true;
713 : }
714 1 : }
715 : return false;
716 : }
717 :
718 :
719 : const std::vector<std::string>&
720 0 : OptionsCont::getSubTopics() const {
721 0 : return mySubTopics;
722 : }
723 :
724 :
725 : std::vector<std::string>
726 0 : OptionsCont::getSubTopicsEntries(const std::string& subtopic) const {
727 : if (mySubTopicEntries.count(subtopic) > 0) {
728 0 : return mySubTopicEntries.find(subtopic)->second;
729 : } else {
730 0 : return std::vector<std::string>();
731 : }
732 : }
733 :
734 :
735 : std::string
736 0 : OptionsCont::getTypeName(const std::string name) {
737 0 : return getSecure(name)->getTypeName();
738 : }
739 :
740 :
741 : const std::string&
742 0 : OptionsCont::getFullName() const {
743 0 : return myFullName;
744 : }
745 :
746 :
747 : bool
748 0 : OptionsCont::isEmpty() const {
749 0 : return myAddresses.size() == 0;
750 : }
751 :
752 :
753 : std::vector<std::pair<std::string, Option*> >::const_iterator
754 0 : OptionsCont::begin() const {
755 0 : return myAddresses.cbegin();
756 : }
757 :
758 :
759 : std::vector<std::pair<std::string, Option*> >::const_iterator
760 0 : OptionsCont::end() const {
761 0 : return myAddresses.cend();
762 : }
763 :
764 :
765 : void
766 73 : OptionsCont::printHelp(std::ostream& os) {
767 : // print application description
768 146 : splitLines(os, TL(myAppDescription.c_str()), 0, 0);
769 : os << std::endl;
770 :
771 : // check option sizes first
772 : // we want to know how large the largest not-too-large-entry will be
773 : int tooLarge = 40;
774 : int maxSize = 0;
775 1262 : for (const auto& subTopic : mySubTopics) {
776 19408 : for (const auto& entry : mySubTopicEntries[subTopic]) {
777 18219 : Option* o = getSecure(entry);
778 : // name, two leading spaces and "--"
779 18219 : int csize = (int)entry.length() + 2 + 4;
780 : // abbreviation length ("-X, "->4chars) if any
781 18219 : const auto synonymes = getSynonymes(entry);
782 21138 : for (const auto& synonym : synonymes) {
783 4511 : if (synonym.length() == 1 && myDeprecatedSynonymes.count(synonym) == 0) {
784 1592 : csize += 4;
785 1592 : break;
786 : }
787 : }
788 : // the type name
789 18219 : if (!o->isBool()) {
790 12447 : csize += 1 + (int)o->getTypeName().length();
791 : }
792 : // divider
793 18219 : csize += 2;
794 18219 : if (csize < tooLarge && maxSize < csize) {
795 : maxSize = csize;
796 : }
797 18219 : }
798 : }
799 :
800 146 : const std::string helpTopic = StringUtils::to_lower_case(getSecure("help")->getValueString());
801 73 : if (helpTopic != "") {
802 : bool foundTopic = false;
803 0 : for (const auto& topic : mySubTopics) {
804 0 : if (StringUtils::to_lower_case(topic).find(helpTopic) != std::string::npos) {
805 : foundTopic = true;
806 0 : printHelpOnTopic(topic, tooLarge, maxSize, os);
807 : }
808 : }
809 0 : if (!foundTopic) {
810 : // print topic list
811 : os << "Help Topics:" << std::endl;
812 0 : for (const std::string& t : mySubTopics) {
813 : os << " " << t << std::endl;
814 : }
815 : }
816 : return;
817 : }
818 : // print usage BNF
819 : os << "Usage: " << myAppName << " [OPTION]*" << std::endl;
820 : // print additional text if any
821 73 : if (myAdditionalMessage.length() > 0) {
822 : os << myAdditionalMessage << std::endl << std::endl;
823 : }
824 : // print the options
825 1262 : for (const auto& subTopic : mySubTopics) {
826 1189 : printHelpOnTopic(subTopic, tooLarge, maxSize, os);
827 : }
828 : os << std::endl;
829 : // print usage examples, calc size first
830 73 : if (myCallExamples.size() != 0) {
831 : os << "Examples:" << std::endl;
832 213 : for (const auto& callExample : myCallExamples) {
833 140 : os << " " << myAppName << ' ' << callExample.first << std::endl;
834 : os << " " << callExample.second << std::endl;
835 : }
836 : }
837 : os << std::endl;
838 : os << "Report bugs at <https://github.com/eclipse-sumo/sumo/issues>." << std::endl;
839 : os << "Get in contact via <sumo@dlr.de>." << std::endl;
840 : }
841 :
842 :
843 : void
844 1189 : OptionsCont::printHelpOnTopic(const std::string& topic, int tooLarge, int maxSize, std::ostream& os) {
845 : os << topic << " Options:" << std::endl;
846 19408 : for (const auto& entry : mySubTopicEntries[topic]) {
847 : // start length computation
848 18219 : int csize = (int)entry.length() + 2;
849 18219 : Option* o = getSecure(entry);
850 18219 : os << " ";
851 : // write abbreviation if given
852 18219 : const auto synonymes = getSynonymes(entry);
853 21138 : for (const auto& synonym : synonymes) {
854 4511 : if (synonym.length() == 1 && myDeprecatedSynonymes.count(synonym) == 0) {
855 3184 : os << '-' << synonym << ", ";
856 1592 : csize += 4;
857 1592 : break;
858 : }
859 : }
860 : // write leading '-'/"--"
861 18219 : os << "--";
862 18219 : csize += 2;
863 : // write the name
864 : os << entry;
865 : // write the type if not a bool option
866 18219 : if (!o->isBool()) {
867 12447 : os << ' ' << o->getTypeName();
868 12447 : csize += 1 + (int)o->getTypeName().length();
869 : }
870 18219 : csize += 2;
871 : // write the description formatting it
872 18219 : os << " ";
873 184003 : for (int r = maxSize; r > csize; --r) {
874 165784 : os << ' ';
875 : }
876 18219 : int offset = csize > tooLarge ? csize : maxSize;
877 36438 : splitLines(os, o->getDescription(), offset, maxSize);
878 18219 : }
879 : os << std::endl;
880 1189 : }
881 :
882 :
883 : void
884 66037 : OptionsCont::writeConfiguration(std::ostream& os, const bool filled,
885 : const bool complete, const bool addComments, const std::string& relativeTo,
886 : const bool forceRelative, const bool inComment) const {
887 66037 : if (!inComment) {
888 437 : writeXMLHeader(os, false);
889 : }
890 124683 : const std::string& app = myAppName == "sumo-gui" ? "sumo" : myAppName;
891 : os << "<" << app << "Configuration xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" "
892 66037 : << "xsi:noNamespaceSchemaLocation=\"http://sumo.dlr.de/xsd/" << app << "Configuration.xsd\">\n\n";
893 1582192 : for (std::string subtopic : mySubTopics) {
894 1516155 : if (subtopic == "Configuration" && !complete) {
895 : continue;
896 : }
897 : const std::vector<std::string>& entries = mySubTopicEntries.find(subtopic)->second;
898 : std::replace(subtopic.begin(), subtopic.end(), ' ', '_');
899 2900276 : subtopic = StringUtils::to_lower_case(subtopic);
900 : bool hadOne = false;
901 25398556 : for (const std::string& name : entries) {
902 23948418 : Option* o = getSecure(name);
903 23948418 : bool write = complete || (filled && !o->isDefault());
904 23304781 : if (!write) {
905 23304781 : continue;
906 : }
907 643637 : if (name == "registry-viewport" && !complete) {
908 0 : continue;
909 : }
910 643637 : if (!hadOne) {
911 291877 : os << " <" << subtopic << ">\n";
912 : }
913 : // add the comment if wished
914 643637 : if (addComments) {
915 4293 : os << " <!-- " << StringUtils::escapeXML(o->getDescription(), inComment) << " -->\n";
916 : }
917 : // write the option and the value (if given)
918 643637 : os << " <" << name << " value=\"";
919 643637 : if (o->isSet() && (filled || o->isDefault())) {
920 642786 : if (o->isFileName() && relativeTo != "") {
921 5028 : StringVector fileList = StringTokenizer(o->getValueString(), ",").getVector();
922 3405 : for (auto& file : fileList) {
923 3458 : if (StringUtils::startsWith(file, "${")) {
924 : // there is an environment variable up front, assume it points to an absolute path
925 : // not even forcing relativity makes sense here
926 34 : file = StringUtils::urlEncode(file, " ;%");
927 : } else {
928 5136 : file = FileHelpers::fixRelative(
929 3424 : StringUtils::urlEncode(file, " ;%"),
930 1712 : StringUtils::urlEncode(relativeTo, " ;%"),
931 6848 : forceRelative || getBool("save-configuration.relative"));
932 : }
933 : }
934 1676 : os << StringUtils::escapeXML(joinToString(fileList, ','), inComment);
935 1676 : } else {
936 1282220 : os << StringUtils::escapeXML(o->getValueString(), inComment);
937 : }
938 : }
939 643637 : if (complete) {
940 3627 : std::vector<std::string> synonymes = getSynonymes(name);
941 3627 : if (!synonymes.empty()) {
942 1011 : os << "\" synonymes=\"";
943 2444 : for (auto synonym = synonymes.begin(); synonym != synonymes.end(); synonym++) {
944 1433 : if (synonym != synonymes.begin()) {
945 422 : os << " ";
946 : }
947 : os << (*synonym);
948 : }
949 : }
950 3627 : os << "\" type=\"" << o->getTypeName();
951 3627 : if (!addComments) {
952 4392 : os << "\" help=\"" << StringUtils::escapeXML(o->getDescription());
953 : }
954 3627 : }
955 643637 : os << "\"/>\n";
956 : // append an endline if a comment was printed
957 643637 : if (addComments) {
958 1431 : os << "\n";
959 : }
960 : hadOne = true;
961 : }
962 1450138 : if (hadOne) {
963 291877 : os << " </" << subtopic << ">\n\n";
964 : }
965 : }
966 : os << "</" << app << "Configuration>" << std::endl; // flushing seems like a good idea here
967 66037 : }
968 :
969 :
970 : void
971 1 : OptionsCont::writeSchema(std::ostream& os) {
972 1 : const std::string& app = myAppName == "sumo-gui" ? "sumo" : myAppName;
973 1 : writeXMLHeader(os, false);
974 1 : os << "<xsd:schema elementFormDefault=\"qualified\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\">\n\n";
975 1 : os << " <xsd:include schemaLocation=\"baseTypes.xsd\"/>\n";
976 1 : os << " <xsd:element name=\"" << app << "Configuration\" type=\"configurationType\"/>\n\n";
977 1 : os << " <xsd:complexType name=\"configurationType\">\n";
978 1 : os << " <xsd:all>\n";
979 28 : for (std::string subtopic : mySubTopics) {
980 27 : if (subtopic == "Configuration") {
981 : continue;
982 : }
983 : std::replace(subtopic.begin(), subtopic.end(), ' ', '_');
984 52 : subtopic = StringUtils::to_lower_case(subtopic);
985 26 : os << " <xsd:element name=\"" << subtopic << "\" type=\"" << subtopic << "TopicType\" minOccurs=\"0\"/>\n";
986 : }
987 1 : os << " </xsd:all>\n";
988 1 : os << " </xsd:complexType>\n\n";
989 28 : for (std::string subtopic : mySubTopics) {
990 27 : if (subtopic == "Configuration") {
991 : continue;
992 : }
993 : const std::vector<std::string>& entries = mySubTopicEntries.find(subtopic)->second;
994 : std::replace(subtopic.begin(), subtopic.end(), ' ', '_');
995 52 : subtopic = StringUtils::to_lower_case(subtopic);
996 26 : os << " <xsd:complexType name=\"" << subtopic << "TopicType\">\n";
997 26 : os << " <xsd:all>\n";
998 455 : for (const auto& entry : entries) {
999 429 : Option* o = getSecure(entry);
1000 429 : std::string type = o->getTypeName();
1001 429 : type = StringUtils::to_lower_case(type);
1002 429 : if (type == "int[]") {
1003 : type = "intArray";
1004 : }
1005 429 : if (type == "str[]") {
1006 : type = "strArray";
1007 : }
1008 429 : os << " <xsd:element name=\"" << entry << "\" type=\"" << type << "OptionType\" minOccurs=\"0\"/>\n";
1009 : }
1010 26 : os << " </xsd:all>\n";
1011 26 : os << " </xsd:complexType>\n\n";
1012 : }
1013 1 : os << "</xsd:schema>\n";
1014 1 : }
1015 :
1016 :
1017 : void
1018 66038 : OptionsCont::writeXMLHeader(std::ostream& os, const bool includeConfig) const {
1019 : time_t rawtime;
1020 : char buffer [80];
1021 :
1022 66038 : os << "<?xml version=\"1.0\"" << SUMOSAXAttributes::ENCODING << "?>\n\n";
1023 66038 : time(&rawtime);
1024 66038 : strftime(buffer, 80, "<!-- generated on %F %T by ", localtime(&rawtime));
1025 66038 : os << buffer << myFullName << "\n";
1026 132076 : if (getBool("write-license")) {
1027 : os << "This data file and the accompanying materials\n"
1028 : "are made available under the terms of the Eclipse Public License v2.0\n"
1029 : "which accompanies this distribution, and is available at\n"
1030 : "http://www.eclipse.org/legal/epl-v20.html\n"
1031 : "This file may also be made available under the following Secondary\n"
1032 : "Licenses when the conditions for such availability set forth in the Eclipse\n"
1033 : "Public License 2.0 are satisfied: GNU General Public License, version 2\n"
1034 : "or later which is available at\n"
1035 : "https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html\n"
1036 49550 : "SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later\n";
1037 : }
1038 66038 : if (includeConfig) {
1039 131200 : writeConfiguration(os, true, false, false, "", false, true);
1040 : }
1041 66038 : os << "-->\n\n";
1042 66038 : }
1043 :
1044 :
1045 : bool
1046 39058 : OptionsCont::isInStringVector(const std::string& optionName,
1047 : const std::string& itemName) const {
1048 39058 : if (isSet(optionName)) {
1049 0 : std::vector<std::string> values = getStringVector(optionName);
1050 0 : return std::find(values.begin(), values.end(), itemName) != values.end();
1051 0 : }
1052 : return false;
1053 : }
1054 :
1055 : /****************************************************************************/
|