2020-07-07 14:30:16 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 The Android Open Source Project
|
2020-09-18 12:09:28 -04:00
|
|
|
* Copyright (C) 2020-2021 The LineageOS Project
|
2020-07-07 14:30:16 -04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <aidl/android/hardware/light/BnLights.h>
|
|
|
|
#include <hardware/hardware.h>
|
|
|
|
#include <hardware/lights.h>
|
|
|
|
#include <map>
|
2020-09-18 12:09:28 -04:00
|
|
|
#include <sstream>
|
2020-07-07 14:30:16 -04:00
|
|
|
|
|
|
|
namespace aidl {
|
|
|
|
namespace android {
|
|
|
|
namespace hardware {
|
|
|
|
namespace light {
|
|
|
|
|
|
|
|
class Lights : public BnLights {
|
2020-09-18 12:09:28 -04:00
|
|
|
public:
|
|
|
|
Lights();
|
|
|
|
ndk::ScopedAStatus setLightState(int id, const HwLightState& state) override;
|
|
|
|
ndk::ScopedAStatus getLights(std::vector<HwLight>* types) override;
|
|
|
|
|
|
|
|
private:
|
2021-09-24 08:56:19 -04:00
|
|
|
void setLightBacklight(int id, const HwLightState& state);
|
|
|
|
void setLightButtons(int id, const HwLightState& state);
|
2020-09-18 12:09:28 -04:00
|
|
|
void setLightNotification(int id, const HwLightState& state);
|
|
|
|
void applyNotificationState(const HwLightState& state);
|
|
|
|
|
2021-09-24 08:56:19 -04:00
|
|
|
uint32_t max_button_brightness_;
|
2020-09-18 12:09:28 -04:00
|
|
|
uint32_t max_led_brightness_;
|
2021-09-24 08:56:19 -04:00
|
|
|
uint32_t max_screen_brightness_;
|
2020-09-18 12:09:28 -04:00
|
|
|
|
|
|
|
std::map<int, std::function<void(int id, const HwLightState&)>> mLights;
|
|
|
|
std::vector<HwLight> mAvailableLights;
|
|
|
|
|
|
|
|
// Keep sorted in the order of importance.
|
|
|
|
std::array<std::pair<int, HwLightState>, 2> notif_states_ = {{
|
|
|
|
{(int)LightType::NOTIFICATIONS, {}},
|
|
|
|
{(int)LightType::BATTERY, {}},
|
|
|
|
}};
|
2021-09-24 08:56:19 -04:00
|
|
|
|
|
|
|
std::vector<std::string> buttons_;
|
2020-07-07 14:30:16 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace light
|
|
|
|
} // namespace hardware
|
|
|
|
} // namespace android
|
|
|
|
} // namespace aidl
|