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.
45use fdf_component::{driver_register, Driver, DriverContext, Node, NodeBuilder};
6use fidl::endpoints::ClientEnd;
7use fidl_fuchsia_driver_framework::NodeMarker;
8use log::info;
9use zx::Status;
1011/// The implementation of our driver will live in this object, which implements [`Driver`].
12#[allow(unused)]
13struct SimpleRustDriver {
14/// The [`NodeProxy`] is our handle to the node we bound to. We need to keep this handle
15 /// open to keep the node around.
16node: Node,
17/// After creating a child node, we need to keep a handle to its [`ClientEnd`] so the
18 /// node isn't removed.
19child_node: ClientEnd<NodeMarker>,
20}
2122// This creates the exported driver registration structures that allow the driver host to
23// find and run the start and stop methods on our `SimpleRustDriver`.
24driver_register!(SimpleRustDriver);
2526impl Driver for SimpleRustDriver {
27const NAME: &str = "simple_rust_driver";
2829async fn start(mut context: DriverContext) -> Result<Self, Status> {
30info!(concat!(
31"SimpleRustDriver::start() was invoked. Use this function to do basic initialization ",
32"like taking ownership over the node proxy, creating children, and connecting ",
33"to resources in the incoming namespace or serving resources to the ",
34"outgoing namespace."
35));
3637info!("Binding node client. Every driver needs to do this for the driver to be considered loaded.");
38let node = context.take_node()?;
3940info!("Creating an owned child node with a property");
41let node_args = NodeBuilder::new("simple_child")
42 .add_property(bind_fuchsia_test::TEST_CHILD, "simple")
43 .build();
44let (child_node, _) = node.add_owned_child(node_args).await?;
4546Ok(Self { node, child_node })
47 }
4849async fn stop(&self) {
50info!("SimpleRustDriver::stop() was invoked. Use this function to do any cleanup needed.");
51 }
52}