sl4f_lib/setui/
commands.rs

1// Copyright 2019 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::server::Facade;
6use anyhow::Error;
7use async_trait::async_trait;
8use serde_json::Value;
9
10use crate::setui::facade::SetUiFacade;
11use crate::setui::types::SetUiMethod;
12
13#[async_trait(?Send)]
14impl Facade for SetUiFacade {
15    async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
16        match method.parse()? {
17            SetUiMethod::SetNetwork => self.set_network(args).await,
18            SetUiMethod::GetNetwork => self.get_network_setting().await,
19            SetUiMethod::SetIntl => self.set_intl_setting(args).await,
20            SetUiMethod::GetIntl => self.get_intl_setting().await,
21            SetUiMethod::IsMicMuted => self.is_mic_muted().await,
22            SetUiMethod::SetBrightness => self.set_brightness(args).await,
23            SetUiMethod::SetMediaVolume => self.set_media_volume(args).await,
24            SetUiMethod::SetMicMute => self.set_mic_mute(args).await,
25        }
26    }
27}