fdf_component/
lib.rs

1// Copyright 2024 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
5//! Wrappers around the mechanisms of driver registration for the driver
6//! framework for implementing startup and shutdown of the driver in rust.
7
8#![warn(missing_docs, unsafe_op_in_unsafe_fn)]
9
10use core::future::Future;
11
12use zx::Status;
13
14mod context;
15mod incoming;
16pub mod macros;
17mod node;
18mod server;
19
20pub use context::*;
21pub use incoming::*;
22pub use node::*;
23
24/// Entry points into a driver for starting and stopping.
25///
26/// Driver authors should implement this trait, taking information from the [`DriverContext`]
27/// passed to the [`Driver::start`] method to set up, and then tearing down any resources they use
28/// in the [`Driver::stop`] method.
29pub trait Driver: Sized + Send + Sync + 'static {
30    /// The name of the driver as it will appear in logs
31    const NAME: &str;
32
33    /// This will be called when the driver is started.
34    ///
35    /// The given [`DriverContext`] contains information and functionality necessary to get at the
36    /// driver's incoming and outgoing namespaces, add child nodes in the driver topology, and
37    /// manage dispatchers.
38    ///
39    /// In order for the driver to be properly considered started, it must return [`Status::OK`]
40    /// and bind the client end for the [`DriverStartArgs::node`] given in
41    /// [`DriverContext::start_args`].
42    fn start(context: DriverContext) -> impl Future<Output = Result<Self, Status>> + Send;
43
44    /// This will be called when the driver has been asked to stop, and should do any
45    /// asynchronous cleanup necessary before the driver is fully shut down.
46    ///
47    /// Note: The driver will not be considered fully stopped until the node client end bound in
48    /// [`Driver::start`] has been closed.
49    fn stop(&self) -> impl Future<Output = ()> + Send;
50}