LCOV - code coverage report
Current view: top level - src/utils/options - OptionsParser.cpp (source / functions) Coverage Total Hit
Test: lcov.info Lines: 93.5 % 62 58
Test Date: 2024-12-21 15:45:41 Functions: 100.0 % 4 4

            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    OptionsParser.cpp
      15              : /// @author  Daniel Krajzewicz
      16              : /// @author  Jakob Erdmann
      17              : /// @author  Michael Behrisch
      18              : /// @date    Mon, 17 Dec 2001
      19              : ///
      20              : // Parses the command line arguments
      21              : /****************************************************************************/
      22              : #include <config.h>
      23              : 
      24              : #include <iostream>
      25              : #include <cstring>
      26              : #include "Option.h"
      27              : #include "OptionsCont.h"
      28              : #include "OptionsParser.h"
      29              : #include <utils/common/UtilExceptions.h>
      30              : #include <utils/common/MsgHandler.h>
      31              : 
      32              : 
      33              : // ===========================================================================
      34              : // method definitions
      35              : // ===========================================================================
      36              : bool
      37       116661 : OptionsParser::parse(const std::vector<std::string>& args, const bool ignoreAppenders) {
      38       116661 :     bool ok = true;
      39       116661 :     const int argc = (int)args.size();
      40      1009960 :     for (int i = 1; i < argc;) {
      41              :         try {
      42              :             int add;
      43              :             // try to set the current option
      44       893299 :             if (i < argc - 1) {
      45       835800 :                 add = check(args[i], &args[i + 1], ok, ignoreAppenders);
      46              :             } else {
      47        57499 :                 add = check(args[i], nullptr, ok, ignoreAppenders);
      48              :             }
      49       893251 :             i += add;
      50           48 :         } catch (ProcessError& e) {
      51           96 :             WRITE_ERROR("On processing option '" + args[i] + "':\n " + e.what());
      52           48 :             i++;
      53           48 :             ok = false;
      54           48 :         }
      55              :     }
      56       116661 :     return ok;
      57              : }
      58              : 
      59              : 
      60              : int
      61       893299 : OptionsParser::check(const std::string& arg1, const std::string* const arg2, bool& ok, const bool ignoreAppenders) {
      62              :     // the first argument should be an option
      63              :     // (only the second may be a free string)
      64       893299 :     if (!checkParameter(arg1)) {
      65           33 :         ok = false;
      66           33 :         return 1;
      67              :     }
      68              : 
      69       893266 :     OptionsCont& oc = OptionsCont::getOptions();
      70       893266 :     const bool append = arg1[0] == '+';
      71              :     // process not abbreviated switches
      72       893266 :     if (append || arg1[1] == '-') {
      73      1293330 :         const std::string tmp(arg1.substr(append ? 1 : 2));
      74       646680 :         const std::string::size_type idx1 = tmp.find('=');
      75       646680 :         if (append && ignoreAppenders) {
      76           19 :             return idx1 == std::string::npos ? 2 : 1;
      77              :         }
      78              :         // check whether a parameter was submitted
      79       646665 :         if (idx1 != std::string::npos) {
      80        88475 :             ok &= oc.set(tmp.substr(0, idx1), tmp.substr(idx1 + 1), append);
      81              :         } else {
      82       558202 :             if (arg2 == nullptr || (oc.isBool(tmp) && (*arg2)[0] == '-')) {
      83       273059 :                 ok &= oc.set(tmp, "true");
      84              :             } else {
      85       285161 :                 ok &= oc.set(tmp, *arg2, append);
      86       285161 :                 return 2;
      87              :             }
      88              :         }
      89       361456 :         return 1;
      90              :     }
      91              :     // go through the abbreviated switches
      92       246586 :     const int len = (int)arg1.size();
      93       280948 :     for (int i = 1; i < len; i++) {
      94              :         // set boolean switches
      95       246586 :         const std::string abbr = arg1.substr(i, 1);
      96       246586 :         if (oc.isBool(abbr)) {
      97        34362 :             if (arg2 == nullptr || (*arg2)[0] == '-' || i != len - 1) {
      98        34362 :                 ok &= oc.set(abbr, "true");
      99              :             } else {
     100            0 :                 ok &= oc.set(abbr, *arg2);
     101            0 :                 return 2;
     102              :             }
     103              :             // set non-boolean switches
     104              :         } else {
     105              :             // check whether the parameter comes directly after the switch
     106              :             //  and process if so
     107       212224 :             if (arg2 == nullptr || i != len - 1) {
     108         9016 :                 ok &= processNonBooleanSingleSwitch(oc, arg1.substr(i), append);
     109         9016 :                 return 1;
     110              :                 // process parameter following after a space
     111              :             } else {
     112       203208 :                 ok &= oc.set(abbr, *arg2, append);
     113              :                 // option name and attribute were in two arguments
     114       203208 :                 return 2;
     115              :             }
     116              :         }
     117              :     }
     118              :     // all switches within the current argument were boolean switches
     119              :     return 1;
     120              : }
     121              : 
     122              : 
     123              : bool
     124         9016 : OptionsParser::processNonBooleanSingleSwitch(OptionsCont& oc, const std::string& arg, const bool append) {
     125         9016 :     if (arg[1] == '=') {
     126         9010 :         if (arg.size() < 3) {
     127            0 :             WRITE_ERRORF(TL("Missing value for parameter '%'."), arg.substr(0, 1));
     128            0 :             return false;
     129              :         } else {
     130        18020 :             return oc.set(arg.substr(0, 1), arg.substr(2), append);
     131              :         }
     132              :     } else {
     133            6 :         if (arg.size() < 2) {
     134            3 :             WRITE_ERRORF(TL("Missing value for parameter '%'."), arg);
     135            1 :             return false;
     136              :         } else {
     137           10 :             return oc.set(arg.substr(0, 1), arg.substr(1), append);
     138              :         }
     139              :     }
     140              : }
     141              : 
     142              : 
     143              : bool
     144       893299 : OptionsParser::checkParameter(const std::string& arg1) {
     145       893299 :     if (arg1[0] != '-' && arg1[0] != '+') {
     146           75 :         WRITE_ERRORF(TL("The parameter '%' is not allowed in this context.\n Switch or parameter name expected."), arg1);
     147           25 :         return false;
     148              :     }
     149       893274 :     if ((arg1[0] == '-' && arg1[1] == '+') || (arg1[0] == '+' && arg1[1] == '-')) {
     150           24 :         WRITE_ERRORF(TL("Mixed parameter syntax in '%'."), arg1);
     151            8 :         return false;
     152              :     }
     153              :     return true;
     154              : }
     155              : 
     156              : 
     157              : /****************************************************************************/
        

Generated by: LCOV version 2.0-1