Skip to content
This repository was archived by the owner on May 22, 2023. It is now read-only.

Commit c3be440

Browse files
committed
Add component construction prototype
ref #97
1 parent c9fc352 commit c3be440

File tree

8 files changed

+109
-4
lines changed

8 files changed

+109
-4
lines changed

cement

+45-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,48 @@ def mount_segger_jlink(device):
6161
iface = dbus.Interface(obj, 'org.freedesktop.UDisks2.Filesystem')
6262
return iface.get_dbus_method('Mount', dbus_interface='org.freedesktop.UDisks2.Filesystem')([])
6363

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
64106

65107
def build_init(root, outdir, default_args, platform, logger):
66108
args = default_args + ["-P", f"core",
@@ -147,7 +189,9 @@ def gpr_compile_nrf52832(config, gneiss_root, build_dir, paths, platform, logger
147189
with open(os.path.join(gneiss_root, f"src/core/{platform}/core.gpr"), "r") as core_template:
148190
core_gpr.write(core_template.read())
149191
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)}"]
151195
logger.debug("gprbuild " + " ".join(args))
152196
if gprbuild(args) != 0:
153197
logger.error("Compilation failed")

src/core/nRF52832/core.gpr

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
with "switches";
22
with "basalt";
33
with "gneiss";
4+
with "gneiss_protocol";
45

56
project Core is
67

78
Gneiss_Root := external ("GNEISS_ROOT", ".");
89
Step := external ("CEMENT_BUILD_STEP");
10+
Generated := external("CEMENT_GENERATED_SOURCE", "");
911

1012
case Step is
1113
when "compile" =>
12-
for Source_Dirs use (Gneiss_Root & "/src/core/nRF52832");
14+
for Source_Dirs use (Gneiss_Root & "/src/core/nRF52832", Generated);
1315
for Object_Dir use external ("CEMENT_OBJECT_DIR");
1416
for Create_Missing_Dirs use "True";
1517
for Languages use ("Ada", "Asm_CPP");
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
with System;
2+
with Gneiss_Protocol;
3+
4+
package Gneiss_Internal.Main with
5+
SPARK_Mode
6+
is
7+
8+
subtype Index is Integer range -1 .. Integer'Last;
9+
10+
type Permit is record
11+
Server : Index := 0;
12+
S_Type : Gneiss_Protocol.Kind_Type := Gneiss_Protocol.Kind_Type'First;
13+
end record;
14+
15+
type Permit_List is array (1 .. 8) of Permit;
16+
17+
type Provides is array (Gneiss_Protocol.Kind_Type) of System.Address;
18+
19+
type Component is record
20+
Permits : Permit_List;
21+
Services : Provides := (others => System.Null_Address);
22+
end record;
23+
24+
type Component_Registry is array (Natural range <>) of Component;
25+
26+
procedure Run;
27+
28+
end Gneiss_Internal.Main;

src/core/nRF52832/main.adb

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ with Componolit.Runtime.Drivers.GPIO;
33
with Componolit.Runtime.Debug;
44
with Spi;
55
with ST7789;
6+
with Gneiss_Internal.Main;
67

78
procedure Main with
89
SPARK_Mode
@@ -63,4 +64,5 @@ begin
6364
Rainbow (Purple, 200);
6465
Debug.Log_Debug ("There should be a Pixel");
6566
-- Output.Turn_Off;
67+
Gneiss_Internal.Main.Run;
6668
end Main;

src/platform/nRF52832/gneiss-init.adb

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package body Gneiss.Init with
2+
SPARK_Mode
3+
is
4+
5+
function Create_Capability (Reg : System.Address;
6+
Idx : Natural) return Capability
7+
is
8+
begin
9+
return (Reg, Idx);
10+
end Create_Capability;
11+
12+
end Gneiss.Init;

src/platform/nRF52832/gneiss-init.ads

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
with System;
2+
3+
package Gneiss.Init with
4+
SPARK_Mode
5+
is
6+
7+
function Create_Capability (Reg : System.Address;
8+
Idx : Natural) return Capability;
9+
10+
end Gneiss.Init;
+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
with System;
2+
13
package Gneiss_Internal with
24
SPARK_Mode
35
is
46

5-
type Capability is null record;
7+
type Capability is record
8+
Reg : System.Address;
9+
Idx : Natural;
10+
end record;
611

712
end Gneiss_Internal;

test/empty/empty-component.adb

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1+
with Componolit.Runtime.Debug;
12

23
package body Empty.Component with
34
SPARK_Mode
45
is
56

67
procedure Construct (Capability : Gneiss.Capability)
78
is
9+
pragma Unreferenced (Capability);
810
begin
9-
null;
11+
Componolit.Runtime.Debug.Log_Debug ("Empty Construct");
1012
end Construct;
1113

1214
procedure Destruct

0 commit comments

Comments
 (0)