settings/night_mode/
night_mode_controller.rs

1// Copyright 2020 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use crate::base::SettingInfo;
6use crate::handler::base::Request;
7use crate::handler::setting_handler::persist::{controller as data_controller, ClientProxy};
8use crate::handler::setting_handler::{
9    controller, ControllerError, IntoHandlerResult, SettingHandlerResult,
10};
11use crate::night_mode::types::NightModeInfo;
12use async_trait::async_trait;
13use settings_storage::device_storage::{DeviceStorage, DeviceStorageCompatible};
14use settings_storage::storage_factory::{NoneT, StorageAccess};
15
16impl DeviceStorageCompatible for NightModeInfo {
17    type Loader = NoneT;
18    const KEY: &'static str = "night_mode_info";
19}
20
21impl From<NightModeInfo> for SettingInfo {
22    fn from(info: NightModeInfo) -> SettingInfo {
23        SettingInfo::NightMode(info)
24    }
25}
26
27pub struct NightModeController {
28    client: ClientProxy,
29}
30
31impl StorageAccess for NightModeController {
32    type Storage = DeviceStorage;
33    type Data = NightModeInfo;
34    const STORAGE_KEY: &'static str = NightModeInfo::KEY;
35}
36
37#[async_trait(?Send)]
38impl data_controller::Create for NightModeController {
39    async fn create(client: ClientProxy) -> Result<Self, ControllerError> {
40        Ok(NightModeController { client })
41    }
42}
43
44#[async_trait(?Send)]
45impl controller::Handle for NightModeController {
46    async fn handle(&self, request: Request) -> Option<SettingHandlerResult> {
47        match request {
48            Request::SetNightModeInfo(night_mode_info) => {
49                let id = fuchsia_trace::Id::new();
50                let mut current = self.client.read_setting::<NightModeInfo>(id).await;
51
52                // Save the value locally.
53                current.night_mode_enabled = night_mode_info.night_mode_enabled;
54                Some(self.client.write_setting(current.into(), id).await.into_handler_result())
55            }
56            Request::Get => Some(
57                self.client
58                    .read_setting_info::<NightModeInfo>(fuchsia_trace::Id::new())
59                    .await
60                    .into_handler_result(),
61            ),
62            _ => None,
63        }
64    }
65}