1 /**
2  * Copyright © 2019 IBM Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include "id_map.hpp"
18 
19 #include "device.hpp"
20 #include "rail.hpp"
21 #include "rule.hpp"
22 
23 namespace phosphor::power::regulators
24 {
25 
26 void IDMap::addDevice(Device& device)
27 {
28     const std::string& id = device.getID();
29     if (deviceMap.count(id) != 0)
30     {
31         throw std::invalid_argument{"Unable to add device: Duplicate ID \"" +
32                                     id + '"'};
33     }
34     deviceMap[id] = &device;
35 }
36 
37 void IDMap::addRail(Rail& rail)
38 {
39     const std::string& id = rail.getID();
40     if (railMap.count(id) != 0)
41     {
42         throw std::invalid_argument{"Unable to add rail: Duplicate ID \"" + id +
43                                     '"'};
44     }
45     railMap[id] = &rail;
46 }
47 
48 void IDMap::addRule(Rule& rule)
49 {
50     const std::string& id = rule.getID();
51     if (ruleMap.count(id) != 0)
52     {
53         throw std::invalid_argument{"Unable to add rule: Duplicate ID \"" + id +
54                                     '"'};
55     }
56     ruleMap[id] = &rule;
57 }
58 
59 } // namespace phosphor::power::regulators
60