blob: a809378136ddd5fa0d5d838dd5696d02831140b7 [file] [log] [blame]
Andrew Jefferye185efb2018-05-24 12:59:06 +09301/**
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
George Liu45eba6f2021-05-18 14:32:20 +080018#include <filesystem>
Andrew Jefferye185efb2018-05-24 12:59:06 +093019
20namespace phosphor
21{
22namespace led
23{
24class SysfsLed
25{
26 public:
George Liu1f2b9322021-12-28 10:32:49 +080027 explicit SysfsLed(std::filesystem::path&& root) : root(std::move(root))
George Liu61b90632020-06-22 10:55:13 +080028 {}
Andrew Jefferye185efb2018-05-24 12:59:06 +093029 SysfsLed() = delete;
30 SysfsLed(const SysfsLed& other) = delete;
31
32 virtual ~SysfsLed() = default;
33
34 virtual unsigned long getBrightness();
Andrew Jefferyb0f538d2023-02-06 19:46:11 +103035 virtual void setBrightness(unsigned long brightness);
Andrew Jefferye185efb2018-05-24 12:59:06 +093036 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:
Andrew Jeffery8e852282023-02-06 19:29:43 +103045 static constexpr const char* attrBrightness = "brightness";
46 static constexpr const char* attrMaxBrightness = "max_brightness";
47 static constexpr const char* attrTrigger = "trigger";
48 static constexpr const char* attrDelayOn = "delay_on";
49 static constexpr const char* attrDelayOff = "delay_off";
Andrew Jefferye185efb2018-05-24 12:59:06 +093050
George Liu45eba6f2021-05-18 14:32:20 +080051 std::filesystem::path root;
Andrew Jefferye185efb2018-05-24 12:59:06 +093052};
53} // namespace led
54} // namespace phosphor