settings/night_mode/
night_mode_fidl_handler.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

use crate::base::{SettingInfo, SettingType};
use crate::handler::base::Request;
use crate::ingress::{request, watch, Scoped};
use crate::job::source::{Error as JobError, ErrorResponder};
use crate::job::Job;
use crate::night_mode::types::NightModeInfo;
use fidl::prelude::*;
use fidl_fuchsia_settings::{
    NightModeRequest, NightModeSetResponder, NightModeSetResult, NightModeSettings,
    NightModeWatchResponder,
};

impl ErrorResponder for NightModeSetResponder {
    fn id(&self) -> &'static str {
        "NightMode_Set"
    }

    fn respond(self: Box<Self>, error: fidl_fuchsia_settings::Error) -> Result<(), fidl::Error> {
        self.send(Err(error))
    }
}

impl request::Responder<Scoped<NightModeSetResult>> for NightModeSetResponder {
    fn respond(self, Scoped(response): Scoped<NightModeSetResult>) {
        let _ = self.send(response);
    }
}

impl watch::Responder<NightModeSettings, zx::Status> for NightModeWatchResponder {
    fn respond(self, response: Result<NightModeSettings, zx::Status>) {
        match response {
            Ok(settings) => {
                let _ = self.send(&settings);
            }
            Err(error) => {
                self.control_handle().shutdown_with_epitaph(error);
            }
        }
    }
}

impl From<SettingInfo> for NightModeSettings {
    fn from(response: SettingInfo) -> Self {
        if let SettingInfo::NightMode(info) = response {
            return NightModeSettings {
                night_mode_enabled: info.night_mode_enabled,
                ..Default::default()
            };
        }

        panic!("incorrect value sent to night_mode");
    }
}

impl From<NightModeSettings> for Request {
    fn from(settings: NightModeSettings) -> Self {
        let mut night_mode_info = NightModeInfo::empty();
        night_mode_info.night_mode_enabled = settings.night_mode_enabled;
        Request::SetNightModeInfo(night_mode_info)
    }
}

impl TryFrom<NightModeRequest> for Job {
    type Error = JobError;

    fn try_from(item: NightModeRequest) -> Result<Self, Self::Error> {
        #[allow(unreachable_patterns)]
        match item {
            NightModeRequest::Set { settings, responder } => {
                Ok(request::Work::new(SettingType::NightMode, to_request(settings), responder)
                    .into())
            }
            NightModeRequest::Watch { responder } => {
                Ok(watch::Work::new_job(SettingType::NightMode, responder))
            }
            _ => {
                tracing::warn!("Received a call to an unsupported API: {:?}", item);
                Err(JobError::Unsupported)
            }
        }
    }
}

fn to_request(settings: NightModeSettings) -> Request {
    Request::SetNightModeInfo(NightModeInfo { night_mode_enabled: settings.night_mode_enabled })
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::job::{execution, work};
    use assert_matches::assert_matches;
    use fidl_fuchsia_settings::{NightModeMarker, NightModeRequestStream};
    use futures::StreamExt;

    #[fuchsia::test]
    fn test_request_from_settings_empty() {
        let request = to_request(NightModeSettings::default());
        let night_mode_info = NightModeInfo::empty();
        assert_eq!(request, Request::SetNightModeInfo(night_mode_info));
    }

    #[fuchsia::test]
    fn test_request_from_settings() {
        const NIGHT_MODE_ENABLED: bool = true;

        let request = to_request(NightModeSettings {
            night_mode_enabled: Some(NIGHT_MODE_ENABLED),
            ..Default::default()
        });

        let mut night_mode_info = NightModeInfo::empty();
        night_mode_info.night_mode_enabled = Some(NIGHT_MODE_ENABLED);

        assert_eq!(request, Request::SetNightModeInfo(night_mode_info));
    }

    #[fuchsia::test(allow_stalls = false)]
    async fn try_from_set_converts_supplied_params() {
        let (proxy, server) = fidl::endpoints::create_proxy::<NightModeMarker>();
        let _fut =
            proxy.set(&NightModeSettings { night_mode_enabled: Some(true), ..Default::default() });
        let mut request_stream: NightModeRequestStream = server.into_stream();
        let request = request_stream
            .next()
            .await
            .expect("should have on request before stream is closed")
            .expect("should have gotten a request");
        let job = Job::try_from(request);
        let job = job.as_ref();
        assert_matches!(job.map(|j| j.workload()), Ok(work::Load::Independent(_)));
        assert_matches!(job.map(|j| j.execution_type()), Ok(execution::Type::Independent));
    }

    #[fuchsia::test(allow_stalls = false)]
    async fn try_from_watch_converts_supplied_params() {
        let (proxy, server) = fidl::endpoints::create_proxy::<NightModeMarker>();
        let _fut = proxy.watch();
        let mut request_stream: NightModeRequestStream = server.into_stream();
        let request = request_stream
            .next()
            .await
            .expect("should have on request before stream is closed")
            .expect("should have gotten a request");
        let job = Job::try_from(request);
        let job = job.as_ref();
        assert_matches!(job.map(|j| j.workload()), Ok(work::Load::Sequential(_, _)));
        assert_matches!(job.map(|j| j.execution_type()), Ok(execution::Type::Sequential(_)));
    }
}