@@ -595,6 +595,8 @@ def _create_components(self) -> None:
595
595
# .. this hack is necessary for pybind11 based modules
596
596
sys .modules ["pybind11_builtins" ] = types .SimpleNamespace () # type: ignore
597
597
598
+ injectables = self ._collect_injectables ()
599
+
598
600
for m , ctyp in typing .get_type_hints (cls ).items ():
599
601
# Ignore private variables
600
602
if m .startswith ("_" ):
@@ -611,24 +613,23 @@ def _create_components(self) -> None:
611
613
% (cls .__name__ , m , ctyp )
612
614
)
613
615
614
- component = self ._create_component (m , ctyp )
616
+ component = self ._create_component (m , ctyp , injectables )
615
617
616
618
# Store for later
617
619
components .append ((m , component ))
618
-
619
- self ._injectables = self ._collect_injectables ()
620
+ injectables [m ] = component
620
621
621
622
# For each new component, perform magic injection
622
623
for cname , component in components :
623
624
setup_tunables (component , cname , "components" )
624
- self ._setup_vars (cname , component )
625
+ self ._setup_vars (cname , component , injectables )
625
626
self ._setup_reset_vars (component )
626
627
627
628
# Do it for autonomous modes too
628
629
for mode in self ._automodes .modes .values ():
629
630
mode .logger = logging .getLogger (mode .MODE_NAME )
630
631
setup_tunables (mode , mode .MODE_NAME , "autonomous" )
631
- self ._setup_vars (mode .MODE_NAME , mode )
632
+ self ._setup_vars (mode .MODE_NAME , mode , injectables )
632
633
633
634
# And for self too
634
635
setup_tunables (self , "robot" , None )
@@ -672,9 +673,18 @@ def _collect_injectables(self) -> Dict[str, Any]:
672
673
673
674
return injectables
674
675
675
- def _create_component (self , name : str , ctyp : type ):
676
+ def _create_component (self , name : str , ctyp : type , injectables : Dict [str , Any ]):
677
+ type_hints = typing .get_type_hints (ctyp .__init__ )
678
+ NoneType = type (None )
679
+ init_return_type = type_hints .pop ("return" , NoneType )
680
+ assert (
681
+ init_return_type is NoneType
682
+ ), f"{ ctyp !r} __init__ had an unexpected non-None return type hint"
683
+ requests = get_injection_requests (type_hints , name )
684
+ injections = find_injections (requests , injectables , name )
685
+
676
686
# Create instance, set it on self
677
- component = ctyp ()
687
+ component = ctyp (** injections )
678
688
setattr (self , name , component )
679
689
680
690
# Ensure that mandatory methods are there
@@ -691,12 +701,12 @@ def _create_component(self, name: str, ctyp: type):
691
701
692
702
return component
693
703
694
- def _setup_vars (self , cname : str , component ) -> None :
704
+ def _setup_vars (self , cname : str , component , injectables : Dict [ str , Any ] ) -> None :
695
705
self .logger .debug ("Injecting magic variables into %s" , cname )
696
706
697
707
type_hints = typing .get_type_hints (type (component ))
698
708
requests = get_injection_requests (type_hints , cname , component )
699
- injections = find_injections (requests , self . _injectables , cname )
709
+ injections = find_injections (requests , injectables , cname )
700
710
component .__dict__ .update (injections )
701
711
702
712
def _setup_reset_vars (self , component ) -> None :
0 commit comments