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

Commit 9e2394d

Browse files
committed
Add clarifications, fix indentation
ref #173
1 parent b56cdb1 commit 9e2394d

File tree

10 files changed

+30
-18
lines changed

10 files changed

+30
-18
lines changed

src/core/linux/gneiss-broker-main.adb

+6-6
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ is
9797
Gneiss_Internal.Syscall.Waitpid (B_State.Components (Index).Pid, Exit_Status);
9898
if Result = SXML.Result_OK then
9999
Gneiss_Internal.Print.Info ("Component "
100-
& XML_Buf (XML_Buf'First .. Last)
101-
& " exited with status "
102-
& Basalt.Strings.Image (Exit_Status));
100+
& XML_Buf (XML_Buf'First .. Last)
101+
& " exited with status "
102+
& Basalt.Strings.Image (Exit_Status));
103103
else
104104
Gneiss_Internal.Print.Info ("Component PID "
105-
& Basalt.Strings.Image (B_State.Components (Index).Pid)
106-
& " exited with status "
107-
& Basalt.Strings.Image (Exit_Status));
105+
& Basalt.Strings.Image (B_State.Components (Index).Pid)
106+
& " exited with status "
107+
& Basalt.Strings.Image (Exit_Status));
108108
end if;
109109
if Gneiss_Internal.Valid (B_State.Components (Index).Fd) then
110110
Gneiss_Internal.Epoll.Remove (B_State.Epoll_Fd, B_State.Components (Index).Fd, Ignore_Success);

src/core/linux/gneiss-broker-startup.adb

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ is
6060
pragma Warnings (On, "unused assignment to ""Fd""");
6161
Parent := True;
6262
Gneiss_Internal.Print.Info ("Started " & XML_Buf (XML_Buf'First .. Last)
63-
& " with PID " & Basalt.Strings.Image (Pid));
63+
& " with PID " & Basalt.Strings.Image (Pid));
6464
else -- Pid = 0, Child
6565
Gneiss_Internal.Syscall.Close (State.Epoll_Fd);
6666
Load (State, Fd, Query, Status);

src/log/genode/gneiss-log.adb

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ is
2525
function Index (Session : Dispatcher_Session) return Session_Index_Option is
2626
(Session.Index);
2727

28-
function Registered (Session : Dispatcher_Session) return Boolean is (True);
28+
function Registered (Session : Dispatcher_Session) return Boolean is (False);
2929

3030
end Gneiss.Log;

src/log/server/linux/gneiss-log-dispatcher.adb

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ is
8282
Label.Value (Label.Value'First .. Label.Last));
8383
end if;
8484
else
85+
-- If Fd /= Dispatch_Fd a server session has been closed by a client. So
86+
-- Dispatch will be called with an invalid capability that carries the
87+
-- file descriptor as Clean_Fd which is then used to clean up the disconnected
88+
-- session in Session_Cleanup.
8589
Dispatch (Session,
8690
Dispatcher_Capability'(Client_Fd => -1,
8791
Server_Fd => -1,

src/memory/genode/gneiss-memory.adb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ is
3030
function Index (Session : Dispatcher_Session) return Session_Index_Option is
3131
(Session.Index);
3232

33-
function Registered (Session : Dispatcher_Session) return Boolean is (True);
33+
function Registered (Session : Dispatcher_Session) return Boolean is (False);
3434

3535
end Gneiss.Memory;

src/memory/server/linux/gneiss-memory-dispatcher.adb

+4
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ is
7272
Label.Value (Label.Value'First .. Label.Last));
7373
end if;
7474
else
75+
-- If Fd /= Dispatch_Fd a server session has been closed by a client. So
76+
-- Dispatch will be called with an invalid capability that carries the
77+
-- file descriptor as Clean_Fd which is then used to clean up the disconnected
78+
-- session in Session_Cleanup.
7579
Dispatch (Session,
7680
Dispatcher_Capability'(Memfd => -1,
7781
Client_Fd => -1,

src/message/genode/gneiss-message.adb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ is
3030
function Index (Session : Dispatcher_Session) return Session_Index_Option is
3131
(Session.Index);
3232

33-
function Registered (Session : Dispatcher_Session) return Boolean is (True);
33+
function Registered (Session : Dispatcher_Session) return Boolean is (False);
3434

3535
end Gneiss.Message;

src/message/server/linux/gneiss-message-dispatcher.adb

+4
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ is
105105
Label.Value (Label.Value'First .. Label.Last));
106106
end if;
107107
else
108+
-- If Fd /= Dispatch_Fd a server session has been closed by a client. So
109+
-- Dispatch will be called with an invalid capability that carries the
110+
-- file descriptor as Clean_Fd which is then used to clean up the disconnected
111+
-- session in Session_Cleanup.
108112
Dispatch (Session,
109113
Dispatcher_Capability'(Client_Fd => -1,
110114
Server_Fd => -1,

test/log_proxy/component.adb

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ is
260260
Flush (S);
261261
else
262262
declare
263+
-- WORKAROUND: Componolit/Workarounds#25
263264
Clr : constant String := Get_Color (S.Hue);
264-
-- Separate declaration: non-scalar object declared before loop-invariant is not yet supported
265265
begin
266266
for H of Clr loop
267267
pragma Loop_Invariant (Log.Initialized (Client));

test/message_client/component.adb

+7-7
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ is
2222
Gneiss_Internal.Platform_State,
2323
Main.Platform));
2424

25-
function Null_Terminate (S : String) return String with
26-
Post => Null_Terminate'Result'First = S'First
27-
and then Null_Terminate'Result'Length <= S'Length,
25+
function Strip (S : String) return String with
26+
Post => Strip'Result'First = S'First
27+
and then Strip'Result'Length <= S'Length,
2828
Global => null;
2929

3030
package Message is new Gneiss.Message (Message_Buffer, Null_Buffer);
@@ -35,7 +35,7 @@ is
3535
Log : Gneiss_Log.Client_Session;
3636
Capability : Gneiss.Capability;
3737

38-
function Null_Terminate (S : String) return String
38+
function Strip (S : String) return String
3939
is
4040
begin
4141
for I in S'Range loop
@@ -44,7 +44,7 @@ is
4444
end if;
4545
end loop;
4646
return S;
47-
end Null_Terminate;
47+
end Strip;
4848

4949
procedure Construct (Cap : Gneiss.Capability)
5050
is
@@ -55,7 +55,7 @@ is
5555
Message_Client.Initialize (Client, Capability, "log");
5656
if Gneiss_Log.Initialized (Log) and Message.Initialized (Client) then
5757
Msg (Msg'First .. Msg'First + 11) := "Hello World!";
58-
Log_Client.Info (Log, "Sending: " & Null_Terminate (Msg));
58+
Log_Client.Info (Log, "Sending: " & Strip (Msg));
5959
Message_Client.Write (Client, Msg);
6060
else
6161
Main.Vacate (Capability, Main.Failure);
@@ -71,7 +71,7 @@ is
7171
pragma Loop_Invariant (Gneiss_Log.Initialized (Log));
7272
pragma Loop_Invariant (Message.Initialized (Client));
7373
Message_Client.Read (Client, Msg);
74-
Log_Client.Info (Log, "Received: " & Null_Terminate (Msg));
74+
Log_Client.Info (Log, "Received: " & Strip (Msg));
7575
Main.Vacate (Capability, Main.Success);
7676
end loop;
7777
end if;

0 commit comments

Comments
 (0)