|
22 | 22 | Gneiss_Internal.Platform_State,
|
23 | 23 | Main.Platform));
|
24 | 24 |
|
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, |
28 | 28 | Global => null;
|
29 | 29 |
|
30 | 30 | package Message is new Gneiss.Message (Message_Buffer, Null_Buffer);
|
|
35 | 35 | Log : Gneiss_Log.Client_Session;
|
36 | 36 | Capability : Gneiss.Capability;
|
37 | 37 |
|
38 |
| - function Null_Terminate (S : String) return String |
| 38 | + function Strip (S : String) return String |
39 | 39 | is
|
40 | 40 | begin
|
41 | 41 | for I in S'Range loop
|
|
44 | 44 | end if;
|
45 | 45 | end loop;
|
46 | 46 | return S;
|
47 |
| - end Null_Terminate; |
| 47 | + end Strip; |
48 | 48 |
|
49 | 49 | procedure Construct (Cap : Gneiss.Capability)
|
50 | 50 | is
|
|
55 | 55 | Message_Client.Initialize (Client, Capability, "log");
|
56 | 56 | if Gneiss_Log.Initialized (Log) and Message.Initialized (Client) then
|
57 | 57 | 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)); |
59 | 59 | Message_Client.Write (Client, Msg);
|
60 | 60 | else
|
61 | 61 | Main.Vacate (Capability, Main.Failure);
|
|
71 | 71 | pragma Loop_Invariant (Gneiss_Log.Initialized (Log));
|
72 | 72 | pragma Loop_Invariant (Message.Initialized (Client));
|
73 | 73 | Message_Client.Read (Client, Msg);
|
74 |
| - Log_Client.Info (Log, "Received: " & Null_Terminate (Msg)); |
| 74 | + Log_Client.Info (Log, "Received: " & Strip (Msg)); |
75 | 75 | Main.Vacate (Capability, Main.Success);
|
76 | 76 | end loop;
|
77 | 77 | end if;
|
|
0 commit comments