xref: /openbmc/phosphor-led-sysfs/sysfs.hpp (revision 61b90636)
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 #pragma once
18 #include <experimental/filesystem>
19 
20 namespace phosphor
21 {
22 namespace led
23 {
24 class SysfsLed
25 {
26   public:
27     SysfsLed(std::experimental::filesystem::path&& root) : root(std::move(root))
28     {}
29     SysfsLed() = delete;
30     SysfsLed(const SysfsLed& other) = delete;
31 
32     virtual ~SysfsLed() = default;
33 
34     virtual unsigned long getBrightness();
35     virtual void setBrightness(unsigned long value);
36     virtual unsigned long getMaxBrightness();
37     virtual std::string getTrigger();
38     virtual void setTrigger(const std::string& trigger);
39     virtual unsigned long getDelayOn();
40     virtual void setDelayOn(unsigned long ms);
41     virtual unsigned long getDelayOff();
42     virtual void setDelayOff(unsigned long ms);
43 
44   protected:
45     static constexpr char BRIGHTNESS[] = "brightness";
46     static constexpr char MAX_BRIGHTNESS[] = "max_brightness";
47     static constexpr char TRIGGER[] = "trigger";
48     static constexpr char DELAY_ON[] = "delay_on";
49     static constexpr char DELAY_OFF[] = "delay_off";
50 
51     std::experimental::filesystem::path root;
52 };
53 } // namespace led
54 } // namespace phosphor
55