routing/bedrock/
weak_instance_token_ext.rs1use crate::component_instance::{
6 ComponentInstanceInterface, ExtendedInstanceInterface, WeakComponentInstanceInterface,
7 WeakExtendedInstanceInterface,
8};
9use crate::error::ComponentInstanceError;
10use moniker::ExtendedMoniker;
11use sandbox::WeakInstanceToken;
12use std::sync::Arc;
13
14pub trait WeakInstanceTokenExt<C: ComponentInstanceInterface + 'static> {
17 fn to_instance(self) -> WeakExtendedInstanceInterface<C>;
19
20 fn as_ref(&self) -> &WeakExtendedInstanceInterface<C>;
22
23 fn upgrade(&self) -> Result<ExtendedInstanceInterface<C>, ComponentInstanceError>;
25
26 fn moniker(&self) -> ExtendedMoniker;
28}
29
30impl<C: ComponentInstanceInterface + 'static> WeakInstanceTokenExt<C> for WeakInstanceToken {
31 fn to_instance(self) -> WeakExtendedInstanceInterface<C> {
32 self.as_ref().clone()
33 }
34
35 fn as_ref(&self) -> &WeakExtendedInstanceInterface<C> {
36 match self.inner.as_any().downcast_ref::<WeakExtendedInstanceInterface<C>>() {
37 Some(instance) => &instance,
38 None => panic!(),
39 }
40 }
41
42 fn upgrade(&self) -> Result<ExtendedInstanceInterface<C>, ComponentInstanceError> {
43 self.as_ref().upgrade()
44 }
45
46 fn moniker(&self) -> ExtendedMoniker {
47 WeakInstanceTokenExt::<C>::as_ref(self).extended_moniker()
48 }
49}
50
51pub fn test_invalid_instance_token<C: ComponentInstanceInterface + 'static>() -> WeakInstanceToken {
53 WeakComponentInstanceInterface::<C>::invalid().into()
54}
55
56impl<C: ComponentInstanceInterface + 'static> From<WeakExtendedInstanceInterface<C>>
57 for WeakInstanceToken
58{
59 fn from(instance: WeakExtendedInstanceInterface<C>) -> Self {
60 Self { inner: Arc::new(instance) }
61 }
62}
63
64impl<C: ComponentInstanceInterface + 'static> From<WeakComponentInstanceInterface<C>>
65 for WeakInstanceToken
66{
67 fn from(instance: WeakComponentInstanceInterface<C>) -> Self {
68 Self::from(WeakExtendedInstanceInterface::<C>::Component(instance))
69 }
70}