LCOV - code coverage report
Current view: top level - src/netimport/vissim/tempstructs - NIVissimVehicleType.cpp (source / functions) Hit Total Coverage
Test: lcov.info Lines: 16 21 76.2 %
Date: 2024-05-01 15:34:42 Functions: 5 6 83.3 %

          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    NIVissimVehicleType.cpp
      15             : /// @author  Daniel Krajzewicz
      16             : /// @date    Sept 2002
      17             : ///
      18             : // -------------------
      19             : /****************************************************************************/
      20             : #include <config.h>
      21             : 
      22             : 
      23             : #include "NIVissimVehicleType.h"
      24             : 
      25             : NIVissimVehicleType::DictType NIVissimVehicleType::myDict;
      26             : 
      27          28 : NIVissimVehicleType::NIVissimVehicleType(const std::string& name,
      28          28 :         const std::string& category, const RGBColor& color)
      29          28 :     : myName(name), myCategory(category),
      30          28 :       myColor(color) {}
      31             : 
      32             : 
      33          28 : NIVissimVehicleType::~NIVissimVehicleType() {}
      34             : 
      35             : 
      36             : 
      37             : bool
      38          28 : NIVissimVehicleType::dictionary(int id, const std::string& name, const std::string& category,
      39             :                                 const RGBColor& color) {
      40          28 :     NIVissimVehicleType* o = new NIVissimVehicleType(name, category, color);
      41          28 :     if (!dictionary(id, o)) {
      42           0 :         delete o;
      43           0 :         return false;
      44             :     }
      45             :     return true;
      46             : }
      47             : 
      48             : 
      49             : bool
      50          28 : NIVissimVehicleType::dictionary(int id, NIVissimVehicleType* o) {
      51             :     DictType::iterator i = myDict.find(id);
      52          28 :     if (i == myDict.end()) {
      53          28 :         myDict[id] = o;
      54          28 :         return true;
      55             :     }
      56             :     return false;
      57             : }
      58             : 
      59             : 
      60             : NIVissimVehicleType*
      61           0 : NIVissimVehicleType::dictionary(int id) {
      62             :     DictType::iterator i = myDict.find(id);
      63           0 :     if (i == myDict.end()) {
      64             :         return nullptr;
      65             :     }
      66           0 :     return (*i).second;
      67             : }
      68             : 
      69             : void
      70           9 : NIVissimVehicleType::clearDict() {
      71          37 :     for (DictType::iterator i = myDict.begin(); i != myDict.end(); i++) {
      72          28 :         delete (*i).second;
      73             :     }
      74             :     myDict.clear();
      75           9 : }
      76             : 
      77             : 
      78             : /****************************************************************************/

Generated by: LCOV version 1.14