blob: 14d92bc30f6054131aa369ee6d48b6d84d583b5d [file] [log] [blame]
Bob King07301ea2020-04-21 17:22:23 +08001/**
2 * Copyright © 2020 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#pragma once
17
18#include "action.hpp"
19#include "action_environment.hpp"
20
Bob King07301ea2020-04-21 17:22:23 +080021#include <string>
22
23namespace phosphor::power::regulators
24{
25
26/**
27 * @class ComparePresenceAction
28 *
29 * Compares a hardware component's presence to an expected value.
30 *
31 * Implements the compare_presence action in the JSON config file.
32 */
33class ComparePresenceAction : public Action
34{
35 public:
36 // Specify which compiler-generated methods we want
37 ComparePresenceAction() = delete;
38 ComparePresenceAction(const ComparePresenceAction&) = delete;
39 ComparePresenceAction(ComparePresenceAction&&) = delete;
40 ComparePresenceAction& operator=(const ComparePresenceAction&) = delete;
41 ComparePresenceAction& operator=(ComparePresenceAction&&) = delete;
42 virtual ~ComparePresenceAction() = default;
43
44 /**
45 * Constructor.
46 *
Shawn McCarney45907cc2021-02-05 17:33:11 -060047 * @param fru Field-Replaceable Unit (FRU). Specify the D-Bus inventory path
48 * of the FRU.
Bob King07301ea2020-04-21 17:22:23 +080049 * @param value Expected presence value
50 */
51 explicit ComparePresenceAction(const std::string& fru, bool value) :
52 fru{fru}, value{value}
Adriana Kobylak0c9a33d2021-09-13 18:05:09 +000053 {}
Bob King07301ea2020-04-21 17:22:23 +080054
55 /**
56 * Executes this action.
57 *
Shawn McCarney45907cc2021-02-05 17:33:11 -060058 * Compares the actual presence value to the expected value.
59 *
60 * Throws an exception if an error occurs.
61 *
62 * @param environment action execution environment
63 * @return true if the actual presence value equals the expected value,
64 * otherwise returns false
Bob King07301ea2020-04-21 17:22:23 +080065 */
Bob King49e90d32020-11-11 13:55:25 +080066 virtual bool execute(ActionEnvironment& environment) override;
Bob King07301ea2020-04-21 17:22:23 +080067
68 /**
69 * Returns the Field-Replaceable Unit (FRU).
70 *
71 * @return FRU
72 */
73 const std::string& getFRU() const
74 {
75 return fru;
76 }
77
78 /**
79 * Returns the expected presence value.
80 *
81 * @return value
82 */
83 bool getValue() const
84 {
85 return value;
86 }
87
88 /**
89 * Returns a string description of this action.
90 *
91 * @return description of action
92 */
Bob King49e90d32020-11-11 13:55:25 +080093 virtual std::string toString() const override;
Bob King07301ea2020-04-21 17:22:23 +080094
95 private:
96 /**
97 * Field-Replaceable Unit (FRU) for this action.
98 *
Shawn McCarney45907cc2021-02-05 17:33:11 -060099 * The D-Bus inventory path of the FRU.
Bob King07301ea2020-04-21 17:22:23 +0800100 */
101 const std::string fru{};
102
103 /**
104 * Expected presence value.
105 */
106 const bool value{};
107};
108
109} // namespace phosphor::power::regulators