ComponentCatalogService

Struct ComponentCatalogService 

Source
pub struct ComponentCatalogService { /* private fields */ }
Expand description

Component catalog service for managing available components

§Examples

use mecha10_cli::services::ComponentCatalogService;

let service = ComponentCatalogService::new();

// Get all drivers
let drivers = service.get_drivers();
for driver in drivers {
    println!("Driver: {} - {}", driver.name, driver.description);
}

// Search for camera components
let cameras = service.search("camera");

// Get a specific component
if let Some(component) = service.get("realsense-camera") {
    println!("Found: {}", component.name);
}

Implementations§

Source§

impl ComponentCatalogService

Source

pub fn new() -> Self

Create a new component catalog service

Initializes the catalog with all built-in components.

Source

pub fn get_all(&self) -> Vec<&Component>

Get all available components

Returns a vector of all components in the catalog.

Source

pub fn get_drivers(&self) -> Vec<&Component>

Get all driver components

Returns only components of type Driver.

Source

pub fn get_packages(&self) -> Vec<&Component>

Get all package components

Returns only components of type Package.

Source

pub fn get_behaviors(&self) -> Vec<&Component>

Get all behavior components

Returns only components of type Behavior.

Source

pub fn get_stacks(&self) -> Vec<&Component>

Get all stack components

Returns only components of type Stack (pre-configured sets).

Source

pub fn get_by_type(&self, component_type: ComponentType) -> Vec<&Component>

Get components by type

§Arguments
  • component_type - Type of components to retrieve
Source

pub fn get(&self, id: &str) -> Option<&Component>

Get a specific component by ID

§Arguments
  • id - Component identifier (e.g., “realsense-camera”, “rplidar”)
§Returns

Some(&Component) if found, None otherwise

Source

pub fn search(&self, query: &str) -> Vec<&Component>

Search components by query string

Searches component names, descriptions, and tags.

§Arguments
  • query - Search query (case-insensitive)
§Returns

Vector of components matching the query

Source

pub fn get_by_category(&self, category: &str) -> Vec<&Component>

List components by category

§Arguments
  • category - Category name (e.g., “vision”, “motion”, “sensors”)
§Returns

Vector of components in the specified category

Source

pub fn list_categories(&self) -> Vec<String>

List all available categories

§Returns

Sorted vector of unique category names

Source

pub fn list_tags(&self) -> Vec<String>

List all available tags

§Returns

Sorted vector of unique tags

Source

pub fn get_by_tag(&self, tag: &str) -> Vec<&Component>

Get components with a specific tag

§Arguments
  • tag - Tag to filter by (e.g., “camera”, “lidar”, “imu”)
Source

pub fn get_counts(&self) -> (usize, usize, usize, usize)

Get component count by type

§Returns

Tuple of (drivers, packages, behaviors, stacks)

Source

pub fn exists(&self, id: &str) -> bool

Check if a component exists

§Arguments
  • id - Component identifier

Get recommended components for a platform

Returns components commonly used with a specific robot platform.

§Arguments
  • platform - Platform name (e.g., “rover”, “arm”, “quadruped”)
Source

pub fn validate_dependencies(&self, component_id: &str) -> Result<Vec<String>>

Validate component dependencies

Check if all cargo dependencies for a component are valid.

§Arguments
  • component_id - Component to validate

Trait Implementations§

Source§

impl Default for ComponentCatalogService

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more