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
// 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::{server::Facade, wlan_deprecated::facade::WlanDeprecatedConfigurationFacade},
    anyhow::{format_err, Error},
    async_trait::async_trait,
    serde_json::{to_value, Value},
    tracing::info,
};

#[async_trait(?Send)]
impl Facade for WlanDeprecatedConfigurationFacade {
    async fn handle_request(&self, method: String, args: Value) -> Result<Value, Error> {
        match method.as_ref() {
            "suggest_ap_mac" => {
                let mac = self.parse_mac_argument(args)?;
                info!(
                    tag = "WlanDeprecatedConfigurationFacade",
                    "setting suggested MAC to: {:?}", mac
                );
                let result = self.suggest_access_point_mac_address(mac).await?;
                to_value(result).map_err(|e| {
                    format_err!("error parsing suggested access point MAC result: {}", e)
                })
            }
            _ => return Err(format_err!("unsupported command!")),
        }
    }
}