Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "types.hpp" |
| 4 | |
| 5 | #include <sdbusplus/bus/match.hpp> |
| 6 | |
Adriana Kobylak | 52245b6 | 2021-09-13 15:46:21 +0000 | [diff] [blame] | 7 | #include <bitset> |
| 8 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 9 | namespace phosphor::power::psu |
| 10 | { |
| 11 | |
| 12 | /** |
| 13 | * @class UtilBase |
| 14 | * A base class to allow for mocking certain utility functions. |
| 15 | */ |
| 16 | class UtilBase |
| 17 | { |
| 18 | public: |
| 19 | virtual ~UtilBase() = default; |
| 20 | |
| 21 | virtual bool getPresence(sdbusplus::bus::bus& bus, |
| 22 | const std::string& invpath) const = 0; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 23 | |
| 24 | virtual void setPresence(sdbusplus::bus::bus& bus, |
| 25 | const std::string& invpath, bool present, |
| 26 | const std::string& name) const = 0; |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 27 | }; |
| 28 | |
| 29 | const UtilBase& getUtils(); |
| 30 | |
| 31 | inline bool getPresence(sdbusplus::bus::bus& bus, const std::string& invpath) |
| 32 | { |
| 33 | return getUtils().getPresence(bus, invpath); |
| 34 | } |
| 35 | |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 36 | inline void setPresence(sdbusplus::bus::bus& bus, const std::string& invpath, |
| 37 | bool present, const std::string& name) |
| 38 | { |
| 39 | return getUtils().setPresence(bus, invpath, present, name); |
| 40 | } |
| 41 | |
Adriana Kobylak | 3ca062a | 2021-10-20 15:27:23 +0000 | [diff] [blame] | 42 | class GPIOInterfaceBase |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 43 | { |
| 44 | public: |
Adriana Kobylak | 3ca062a | 2021-10-20 15:27:23 +0000 | [diff] [blame] | 45 | virtual ~GPIOInterfaceBase() = default; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 46 | |
| 47 | virtual int read() = 0; |
Adriana Kobylak | 52245b6 | 2021-09-13 15:46:21 +0000 | [diff] [blame] | 48 | virtual void write(int value, std::bitset<32> flags) = 0; |
B. J. Wyman | d8b8cb1 | 2021-07-15 22:03:34 +0000 | [diff] [blame] | 49 | virtual std::string getName() const = 0; |
B. J. Wyman | 681b2a3 | 2021-04-20 22:31:22 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
Brandon Wyman | 3f1242f | 2020-01-28 13:11:25 -0600 | [diff] [blame] | 52 | } // namespace phosphor::power::psu |