blob: 0f7d3ace333f9e131e7d5e68977c71c7286777ef [file] [log] [blame]
Shawn McCarney494ef032019-11-07 15:56:50 -06001/**
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
23namespace phosphor::power::regulators
24{
25
26void IDMap::addDevice(Device& device)
27{
Shawn McCarneye38f8a22020-04-05 15:39:14 -050028 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;
Shawn McCarney494ef032019-11-07 15:56:50 -060035}
36
37void IDMap::addRail(Rail& rail)
38{
Shawn McCarneye38f8a22020-04-05 15:39:14 -050039 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;
Shawn McCarney494ef032019-11-07 15:56:50 -060046}
47
48void IDMap::addRule(Rule& rule)
49{
Shawn McCarneye38f8a22020-04-05 15:39:14 -050050 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;
Shawn McCarney494ef032019-11-07 15:56:50 -060057}
58
59} // namespace phosphor::power::regulators