blob: f5132b2eb56e7b3625e2e34af25d52bc06b3247e [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 {
Patrick Williamsf5402192024-08-16 15:20:53 -040031 throw std::invalid_argument{
32 "Unable to add device: Duplicate ID \"" + id + '"'};
Shawn McCarneye38f8a22020-04-05 15:39:14 -050033 }
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 {
Patrick Williamsf5402192024-08-16 15:20:53 -040042 throw std::invalid_argument{
43 "Unable to add rail: Duplicate ID \"" + id + '"'};
Shawn McCarneye38f8a22020-04-05 15:39:14 -050044 }
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 {
Patrick Williamsf5402192024-08-16 15:20:53 -040053 throw std::invalid_argument{
54 "Unable to add rule: Duplicate ID \"" + id + '"'};
Shawn McCarneye38f8a22020-04-05 15:39:14 -050055 }
56 ruleMap[id] = &rule;
Shawn McCarney494ef032019-11-07 15:56:50 -060057}
58
59} // namespace phosphor::power::regulators