settings/agent/earcons/
utils.rs1use crate::call_async;
5use crate::event::Publisher;
6use crate::service_context::{ExternalServiceProxy, ServiceContext};
7use anyhow::{anyhow, Context as _, Error};
8use fidl::endpoints::Proxy as _;
9use fidl_fuchsia_media::AudioRenderUsage2;
10use fidl_fuchsia_media_sounds::{PlayerMarker, PlayerProxy};
11use futures::lock::Mutex;
12use std::collections::HashSet;
13use std::rc::Rc;
14use {fidl_fuchsia_io as fio, fuchsia_async as fasync};
15
16fn resource_file(name: &str) -> Result<fidl::endpoints::ClientEnd<fio::FileMarker>, Error> {
18 let path = format!("/config/data/{name}");
19 fuchsia_fs::file::open_in_namespace(&path, fio::PERM_READABLE)
20 .with_context(|| format!("opening resource file: {path}"))?
21 .into_client_end()
22 .map_err(|_: fio::FileProxy| {
23 anyhow!("failed to convert new Proxy to ClientEnd for resource file {path}")
24 })
25}
26
27pub(super) async fn connect_to_sound_player(
30 publisher: Publisher,
31 service_context_handle: Rc<ServiceContext>,
32 sound_player_connection: Rc<Mutex<Option<ExternalServiceProxy<PlayerProxy>>>>,
33) {
34 let mut sound_player_connection_lock = sound_player_connection.lock().await;
35 if sound_player_connection_lock.is_none() {
36 *sound_player_connection_lock = service_context_handle
37 .connect_with_publisher::<PlayerMarker>(publisher)
38 .await
39 .context("Connecting to fuchsia.media.sounds.Player")
40 .map_err(|e| log::error!("Failed to connect to fuchsia.media.sounds.Player: {}", e))
41 .ok()
42 }
43}
44
45pub(super) async fn play_sound<'a>(
50 sound_player_proxy: &ExternalServiceProxy<PlayerProxy>,
51 file_name: &'a str,
52 id: u32,
53 added_files: Rc<Mutex<HashSet<&'a str>>>,
54) -> Result<(), Error> {
55 if added_files.lock().await.insert(file_name) {
57 let sound_file_channel = match resource_file(file_name) {
58 Ok(file) => Some(file),
59 Err(e) => return Err(anyhow!("[earcons] Failed to convert sound file: {}", e)),
60 };
61 if let Some(file_channel) = sound_file_channel {
62 match call_async!(sound_player_proxy => add_sound_from_file(id, file_channel)).await {
63 Ok(_) => log::debug!("[earcons] Added sound to Player: {}", file_name),
64 Err(e) => {
65 return Err(anyhow!("[earcons] Unable to add sound to Player: {}", e));
66 }
67 };
68 }
69 }
70
71 let sound_player_proxy = sound_player_proxy.clone();
72 fasync::Task::local(async move {
75 if let Err(e) =
76 call_async!(sound_player_proxy => play_sound2(id, AudioRenderUsage2::Background)).await
77 {
78 log::error!("[earcons] Unable to Play sound from Player: {}", e);
79 };
80 })
81 .detach();
82 Ok(())
83}