@@ -61,6 +61,48 @@ def mount_segger_jlink(device):
61
61
iface = dbus .Interface (obj , 'org.freedesktop.UDisks2.Filesystem' )
62
62
return iface .get_dbus_method ('Mount' , dbus_interface = 'org.freedesktop.UDisks2.Filesystem' )([])
63
63
64
+ def generate_nrf52832_main (config , project_dir ):
65
+ generated_dir = os .path .join (project_dir , "generated" )
66
+ try :
67
+ os .mkdir (generated_dir )
68
+ except FileExistsError :
69
+ pass
70
+ components = ET .parse (config ).getroot ().findall ("component" )
71
+ implementations = {c .get ("name" ): c .get ("implementation" ) if "implementation" in c .keys () else c .get ("name" ) for c in components }
72
+ components = {c .get ("name" ): {(s .get ("server" ), s .get ("name" )) for s in c .findall ("service" )} for c in components }
73
+ started = [c for c , s in components .items () if not s ]
74
+ while set (started ) != set (components ):
75
+ started .extend ([c for c , s in components .items () if c not in started and {t [0 ] for t in s }.issubset (started )])
76
+ started = [implementations [s ].title () for s in started ]
77
+ with open (os .path .join (generated_dir , "gneiss_internal-main.adb" ), "w" ) as main :
78
+ main .write (f"""with Gneiss.Init;
79
+ { chr (10 ).join ([f'with { c } .Component;' for c in started ])}
80
+
81
+ package body Gneiss_Internal.Main with
82
+ SPARK_Mode
83
+ is
84
+
85
+ Registry : Component_Registry (0 .. { len (components ) - 1 } ) :=
86
+ (
87
+ { ("," + chr (10 ) + " " ).join (
88
+ [(f'{ started .index (implementations [c ].title ())} => ({ chr (10 )} '
89
+ f' Permits => ('
90
+ f'{ ("," + chr (10 ) + " " * 22 ).join ([f"({ started .index (implementations [t [0 ]].title ())} , Gneiss_Protocol.{ t [1 ]} )" for t in s ] + ["(-1, Gneiss_Protocol.Message)" ] * (8 - len (s )))} '
91
+ f'),{ chr (10 )} Services => (others => System.Null_Address))' )
92
+ for c , s in components .items ()
93
+ ])}
94
+ );
95
+
96
+ procedure Run with
97
+ SPARK_Mode => Off
98
+ is
99
+ begin
100
+ { (chr (10 ) + " " ).join ([f"{ c } .Component.Main.Construct (Gneiss.Init.Create_Capability (Registry'Address, { started .index (c )} ));" for c in started ])}
101
+ end Run;
102
+
103
+ end Gneiss_Internal.Main;
104
+ """ )
105
+ return generated_dir
64
106
65
107
def build_init (root , outdir , default_args , platform , logger ):
66
108
args = default_args + ["-P" , f"core" ,
@@ -147,7 +189,9 @@ def gpr_compile_nrf52832(config, gneiss_root, build_dir, paths, platform, logger
147
189
with open (os .path .join (gneiss_root , f"src/core/{ platform } /core.gpr" ), "r" ) as core_template :
148
190
core_gpr .write (core_template .read ())
149
191
for step in ["prepare" , "compile" ]:
150
- args += ["-XCEMENT_BUILD_STEP=" + step ]
192
+ args += [f"-XCEMENT_BUILD_STEP={ step } " ]
193
+ if step == "compile" :
194
+ args += [f"-XCEMENT_GENERATED_SOURCE={ generate_nrf52832_main (config , project_dir )} " ]
151
195
logger .debug ("gprbuild " + " " .join (args ))
152
196
if gprbuild (args ) != 0 :
153
197
logger .error ("Compilation failed" )
0 commit comments