blob: e802d4353bdb96c4d376cfa50925f40fd5bcc67f [file] [log] [blame]
// Copyright 2019 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.
mod test_server;
use {
anyhow::Context as _,
fidl_fuchsia_component_runner as fcrunner, fuchsia_async as fasync,
fuchsia_component::server::ServiceFs,
futures::prelude::*,
log::{error, info},
test_runners_lib::elf,
test_server::TestServer,
thiserror::Error,
};
fn main() -> Result<(), anyhow::Error> {
fuchsia_syslog::init_with_tags(&["rust_test_runner"])?;
info!("started");
let mut executor = fasync::Executor::new().context("Error creating executor")?;
let mut fs = ServiceFs::new_local();
fs.dir("svc").add_fidl_service(move |stream| {
fasync::Task::local(
async move { start_runner(stream).await.expect("failed to start runner.") },
)
.detach();
});
fs.take_and_serve_directory_handle()?;
executor.run_singlethreaded(fs.collect::<()>());
Ok(())
}
/// Error encountered while calling fdio operations.
#[derive(Debug, Error)]
pub enum RunnerError {
#[error("Cannot read request: {:?}", _0)]
RequestRead(fidl::Error),
}
async fn start_runner(
mut request_stream: fcrunner::ComponentRunnerRequestStream,
) -> Result<(), RunnerError> {
while let Some(event) = request_stream.try_next().await.map_err(RunnerError::RequestRead)? {
match event {
fcrunner::ComponentRunnerRequest::Start { start_info, controller, .. } => {
let _ = elf::start_component(
start_info,
controller,
get_new_test_server,
TestServer::validate_args,
);
}
}
}
Ok(())
}
fn get_new_test_server() -> TestServer {
TestServer::new()
}