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

Commit c09a11c

Browse files
committed
Enable prefixed components
ref #97
1 parent 083585e commit c09a11c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+132
-107
lines changed

src/core/linux/gneiss-main.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ is
6969
Status := 1;
7070
return;
7171
end if;
72-
Construct_Sym := Gneiss_Internal.Linker.Symbol (Handle, "component__construct");
73-
Destruct_Sym := Gneiss_Internal.Linker.Symbol (Handle, "component__destruct");
72+
Construct_Sym := Gneiss_Internal.Linker.Symbol (Handle, "gneiss_component_construct");
73+
Destruct_Sym := Gneiss_Internal.Linker.Symbol (Handle, "gneiss_component_destruct");
7474
if
7575
Construct_Sym = System.Null_Address
7676
or else Destruct_Sym = System.Null_Address

src/gneiss-component.ads

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ is
3939
procedure Construct (Cap : Capability) with
4040
Export,
4141
Convention => C,
42-
External_Name => "componolit_interfaces_component_construct";
42+
External_Name => "gneiss_component_construct";
4343

4444
-- Exit method of a component.
4545
--
4646
-- This procedure is called once the platform decides to exit the component.
4747
procedure Destruct with
4848
Export,
4949
Convention => C,
50-
External_Name => "componolit_interfaces_component_destruct";
50+
External_Name => "gneiss_component_destruct";
5151

5252
-- Signal component
5353
--

test/empty.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ project Empty extends "gneiss_component" is
1515
when others =>
1616
for Library_Kind use "dynamic";
1717
for Library_Standalone use "encapsulated";
18-
for Library_Interface use ("component");
18+
for Library_Interface use ("empty");
1919
end case;
2020
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
2121
when others =>

test/hello_world.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project Hello_World extends "gneiss_component" is
1111
for Library_Name use Gneiss_Component_Prefix & "hello_world";
1212
for Library_Kind use "dynamic";
1313
for Library_Standalone use "encapsulated";
14-
for Library_Interface use ("component");
14+
for Library_Interface use ("Hello_World.Component");
1515
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
1616
when others =>
1717
for Languages use ();

test/hello_world/component.adb test/hello_world/hello_world-component.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
with Gneiss.Log;
33
with Gneiss.Log.Client;
44

5-
package body Component with
5+
package body Hello_World.Component with
66
SPARK_Mode,
77
Refined_State => (Platform_State => Log,
88
Component_State => Cap)
@@ -38,4 +38,4 @@ is
3838
Log_Client.Finalize (Log);
3939
end Destruct;
4040

41-
end Component;
41+
end Hello_World.Component;

test/hello_world/component.ads test/hello_world/hello_world-component.ads

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss;
33
with Gneiss.Component;
44
with Gneiss_Internal;
55

6-
package Component with
6+
package Hello_World.Component with
77
SPARK_Mode,
88
Abstract_State => (Component_State, Platform_State),
99
Initializes => (Platform_State, Main.Platform)
@@ -20,4 +20,4 @@ is
2020

2121
package Main is new Gneiss.Component (Construct, Destruct);
2222

23-
end Component;
23+
end Hello_World.Component;

test/hello_world/hello_world.ads

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
package Hello_World is
3+
4+
end Hello_World;

test/linux.sh

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ pip3 install -e tool/RecordFlux
99

1010
set -e
1111

12-
./cement prove test/message_client.gpr . lib test -u component
13-
./cement prove test/message_server.gpr . lib test -u component
14-
./cement prove test/hello_world.gpr . lib test -u component
15-
./cement prove test/log_proxy.gpr . lib test -u component
16-
./cement prove test/rom.gpr . lib test -u component
17-
./cement prove test/memory_client.gpr . lib test -u component
18-
./cement prove test/memory_server.gpr . lib test -u component
19-
./cement prove test/timer.gpr . lib test -u component
20-
#./cement prove test/packet_client.gpr . lib test -u component
21-
#./cement prove test/packet_server.gpr . lib test -u component
12+
./cement prove test/message_client.gpr . lib test -u message_client-component
13+
./cement prove test/message_server.gpr . lib test -u message_server-component
14+
./cement prove test/hello_world.gpr . lib test -u hello_world-component
15+
./cement prove test/log_proxy.gpr . lib test -u log_proxy-component
16+
./cement prove test/rom.gpr . lib test -u rom-component
17+
./cement prove test/memory_client.gpr . lib test -u memory_client-component
18+
./cement prove test/memory_server.gpr . lib test -u memory_server-component
19+
./cement prove test/timer.gpr . lib test -u timer-component
20+
#./cement prove test/packet_client.gpr . lib test -u packet_client-component
21+
#./cement prove test/packet_server.gpr . lib test -u packet_server-component
2222

2323
./cement build test/message_client/message_client.xml . lib test
2424
./cement build test/hello_world/hello_world.xml . lib test

test/linux_log_server.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ project Linux_Log_Server extends "gneiss_component" is
1010
for Library_Name use Gneiss_Component_Prefix & "linux_log_server";
1111
for Library_Kind use "dynamic";
1212
for Library_Standalone use "encapsulated";
13-
for Library_Interface use ("component");
13+
for Library_Interface use ("Linux_Log_Server.Component");
1414
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
1515
when others =>
1616
for Languages use ();

test/linux_log_server/component.adb test/linux_log_server/linux_log_server-component.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss.Log;
33
with Gneiss.Log.Server;
44
with Gneiss.Log.Dispatcher;
55

6-
package body Component with
6+
package body Linux_Log_Server.Component with
77
SPARK_Mode
88
is
99

@@ -145,4 +145,4 @@ is
145145
then Context (Log.Index (Session).Value).Ready
146146
else False);
147147

148-
end Component;
148+
end Linux_Log_Server.Component;

test/linux_log_server/component.ads test/linux_log_server/linux_log_server-component.ads

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
with Gneiss;
33
with Gneiss.Component;
44

5-
package Component with
5+
package Linux_Log_Server.Component with
66
SPARK_Mode
77
is
88

@@ -11,4 +11,4 @@ is
1111

1212
package Main is new Gneiss.Component (Construct, Destruct);
1313

14-
end Component;
14+
end Linux_Log_Server.Component;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
package Linux_Log_Server is
3+
4+
end Linux_Log_Server;

test/log_proxy.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ project Log_Proxy extends "gneiss_component" is
1313
for Library_Name use Gneiss_Component_Prefix & "log_proxy";
1414
for Library_Kind use "dynamic";
1515
for Library_Standalone use "encapsulated";
16-
for Library_Interface use ("component");
16+
for Library_Interface use ("Log_Proxy.Component");
1717
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
1818
when others =>
1919
for Languages use ();

test/log_proxy/component.adb test/log_proxy/log_proxy-component.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ with Gneiss.Log.Client;
44
with Gneiss.Log.Server;
55
with Gneiss.Log.Dispatcher;
66

7-
package body Component with
7+
package body Log_Proxy.Component with
88
SPARK_Mode,
99
Refined_State => (Component_State => Capability,
1010
Platform_State => (Dispatcher,
@@ -294,4 +294,4 @@ is
294294
S.Flushed := True;
295295
end Flush;
296296

297-
end Component;
297+
end Log_Proxy.Component;

test/log_proxy/component.ads test/log_proxy/log_proxy-component.ads

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss;
33
with Gneiss.Component;
44
with Gneiss_Internal;
55

6-
package Component with
6+
package Log_Proxy.Component with
77
SPARK_Mode,
88
Abstract_State => (Component_State, Platform_State),
99
Initializes => (Platform_State, Main.Platform)
@@ -21,4 +21,4 @@ is
2121

2222
package Main is new Gneiss.Component (Construct, Destruct);
2323

24-
end Component;
24+
end Log_Proxy.Component;

test/log_proxy/log_proxy.ads

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
package Log_Proxy is
3+
4+
end Log_Proxy;

test/memory_client.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project Memory_Client extends "gneiss_component" is
1111
for Library_Name use Gneiss_Component_Prefix & "memory_client";
1212
for Library_Kind use "dynamic";
1313
for Library_Standalone use "encapsulated";
14-
for Library_Interface use ("component");
14+
for Library_Interface use ("Memory_Client.Component");
1515
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
1616
when others =>
1717
for Languages use ();

test/memory_client/component.adb test/memory_client/memory_client-component.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ with Gneiss.Log.Client;
44
with Gneiss.Memory;
55
with Gneiss.Memory.Client;
66

7-
package body Component with
7+
package body Memory_Client.Component with
88
SPARK_Mode,
99
Refined_State => (Platform_State => (Log, Mem))
1010
is
@@ -71,4 +71,4 @@ is
7171
Log_Client.Finalize (Log);
7272
end Destruct;
7373

74-
end Component;
74+
end Memory_Client.Component;

test/memory_client/component.ads test/memory_client/memory_client-component.ads

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss_Internal;
33
with Gneiss;
44
with Gneiss.Component;
55

6-
package Component with
6+
package Memory_Client.Component with
77
SPARK_Mode,
88
Abstract_State => Platform_State,
99
Initializes => (Platform_State, Main.Platform)
@@ -19,4 +19,4 @@ is
1919

2020
package Main is new Gneiss.Component (Construct, Destruct);
2121

22-
end Component;
22+
end Memory_Client.Component;

test/memory_client/memory_client.ads

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
package Memory_Client is
3+
4+
end Memory_Client;

test/memory_server.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project Memory_Server extends "gneiss_component" is
1111
for Library_Name use Gneiss_Component_Prefix & "memory_server";
1212
for Library_Kind use "dynamic";
1313
for Library_Standalone use "encapsulated";
14-
for Library_Interface use ("component");
14+
for Library_Interface use ("Memory_Server.Component");
1515
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
1616
when others =>
1717
for Languages use ();

test/memory_server/component.adb test/memory_server/memory_server-component.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss.Memory;
33
with Gneiss.Memory.Dispatcher;
44
with Gneiss.Memory.Server;
55

6-
package body Component with
6+
package body Memory_Server.Component with
77
SPARK_Mode,
88
Refined_State => (Component_State => Capability,
99
Platform_State => (Dispatcher,
@@ -163,4 +163,4 @@ is
163163
then Context (Memory.Index (Session).Value).Ready
164164
else False);
165165

166-
end Component;
166+
end Memory_Server.Component;

test/memory_server/component.ads test/memory_server/memory_server-component.ads

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss;
33
with Gneiss.Component;
44
with Gneiss_Internal;
55

6-
package Component with
6+
package Memory_Server.Component with
77
SPARK_Mode,
88
Abstract_State => (Component_State, Platform_State),
99
Initializes => (Platform_State, Main.Platform)
@@ -20,4 +20,4 @@ is
2020

2121
package Main is new Gneiss.Component (Construct, Destruct);
2222

23-
end Component;
23+
end Memory_Server.Component;

test/memory_server/memory_server.ads

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
package Memory_Server is
3+
4+
end Memory_Server;

test/message_client.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project Message_Client extends "gneiss_component" is
1111
for Library_Name use Gneiss_Component_Prefix & "message_client";
1212
for Library_Kind use "dynamic";
1313
for Library_Standalone use "encapsulated";
14-
for Library_Interface use ("component");
14+
for Library_Interface use ("Message_Client.Component");
1515
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
1616
when others =>
1717
for Languages use ();

test/message_client/component.adb test/message_client/message_client-component.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ with Gneiss.Log.Client;
44
with Gneiss.Message;
55
with Gneiss.Message.Client;
66

7-
package body Component with
7+
package body Message_Client.Component with
88
SPARK_Mode,
99
Refined_State => (Component_State => Capability,
1010
Platform_State => (Client, Log))
@@ -84,4 +84,4 @@ is
8484
Message_Client.Finalize (Client);
8585
end Destruct;
8686

87-
end Component;
87+
end Message_Client.Component;

test/message_client/component.ads test/message_client/message_client-component.ads

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss;
33
with Gneiss.Component;
44
with Gneiss_Internal;
55

6-
package Component with
6+
package Message_Client.Component with
77
SPARK_Mode,
88
Abstract_State => (Component_State, Platform_State),
99
Initializes => (Platform_State, Main.Platform)
@@ -20,4 +20,4 @@ is
2020

2121
package Main is new Gneiss.Component (Construct, Destruct);
2222

23-
end Component;
23+
end Message_Client.Component;
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
package Message_Client is
3+
4+
end Message_Client;

test/message_server.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ project Message_Server extends "gneiss_component" is
1212
for Library_Name use Gneiss_Component_Prefix & "message_server";
1313
for Library_Kind use "dynamic";
1414
for Library_Standalone use "encapsulated";
15-
for Library_Interface use ("component");
15+
for Library_Interface use ("Message_Server.Component");
1616
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
1717
when others =>
1818
for Languages use ();

test/message_server/component.adb test/message_server/message_server-component.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss.Message;
33
with Gneiss.Message.Dispatcher;
44
with Gneiss.Message.Server;
55

6-
package body Component with
6+
package body Message_Server.Component with
77
SPARK_Mode,
88
Refined_State => (Component_State => Capability,
99
Platform_State => (Dispatcher,
@@ -150,4 +150,4 @@ is
150150
then Context (Message.Index (Session).Value).Ready
151151
else False);
152152

153-
end Component;
153+
end Message_Server.Component;

test/message_server/component.ads test/message_server/message_server-component.ads

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ with Gneiss;
33
with Gneiss.Component;
44
with Gneiss_Internal;
55

6-
package Component with
6+
package Message_Server.Component with
77
SPARK_Mode,
88
Abstract_State => (Component_State, Platform_State),
99
Initializes => (Platform_State, Main.Platform)
@@ -20,4 +20,4 @@ is
2020

2121
package Main is new Gneiss.Component (Construct, Destruct);
2222

23-
end Component;
23+
end Message_Server.Component;
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
package Message_Server is
3+
4+
end Message_Server;

test/packet_client.gpr

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project Packet_Client extends "gneiss_component" is
99
for Library_Name use Gneiss_Component_Prefix & "packet_client";
1010
for Library_Kind use "dynamic";
1111
for Library_Standalone use "encapsulated";
12-
for Library_Interface use ("component");
12+
for Library_Interface use ("Packet_Client.Component");
1313
for Library_Dir use external ("CEMENT_COMPONENT_DIR");
1414
when others =>
1515
for Languages use ();

test/packet_client/component.adb test/packet_client/packet_client-component.adb

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ with Gneiss.Log.Client;
44
with Gneiss.Packet;
55
with Gneiss.Packet.Client;
66

7-
package body Component with
7+
package body Packet_Client.Component with
88
SPARK_Mode
99
is
1010

@@ -103,4 +103,4 @@ is
103103
Packet_Client.Finalize (Client);
104104
end Destruct;
105105

106-
end Component;
106+
end Packet_Client.Component;

0 commit comments

Comments
 (0)