adacl_5.15.1_e7c1515b/src/adacl-trace.ads

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
--------------------------------------------------------------- {{{1 ----------
--: Copyright © 2007 … 2023 Martin Krischik «krischik@users.sourceforge.net»
-----------------------------------------------------------------------------
--: This library is free software; you can redistribute it and/or modify it
--: under the terms of the GNU Library General Public License as published by
--: the Free Software Foundation; either version 2 of the License, or (at your
--: option) any later version.
--:
--: This library is distributed in the hope that it will be useful, but
--: WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
--: or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
--: License for more details.
--:
--: You should have received a copy of the GNU Library General Public License
--: along with this library; if not, write to the Free Software Foundation,
--: Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
--------------------------------------------------------------- }}}1 ----------

pragma License (Modified_Gpl);
pragma Ada_2022;

with Ada.Assertions;
with Ada.Exceptions;
with Ada.Strings.Unbounded;
with AdaCL.Base;
with GNAT.Source_Info;
with System.Storage_Elements;
with System;

---
--  @summary
--
--  @description
package AdaCL.Trace is

   ---
   --  Keep internal data for function traces
   --: @field Name_Length  Lenght of trace String
   --
   type Object (Name_Length : Positive) is new Base.Object with private;

   ---
   --  Trace Destination
   --
   --: @value Queue           Trace to system queue
   --: @value Standard_Error  Trace to standart error
   --: @value Standard_Output Trace to standart output
   --: @value File            Trace to file
   type Destination is
      (Queue,
       Standard_Error,
       Standard_Output,
       File);

   ---
   --  Functrace is not quite as usefull as the C++ version. The reason are the missing constructors and destructors in
   --  Ada. With Controlled types you can't limit to just one call to Initialize and one to Finalize There are allways
   --  some extra Adjust with matching. Finalize.
   --
   --  Name of the function calls to be traced.
   --
   function Function_Trace (Name : in String) return Object;
   pragma Inline (Function_Trace);

   ---
   --  Functrace is not quite as usefull as the C++ version. The reason are the missing constructors and destructors in
   --  Ada. With Controlled types you can't limit to just one call to Initialize and one to Finalize There are allways
   --  some extra Adjust with matching. Finalize.
   --
   --  Name of the function calls to be traced.
   --
   function Function_Trace
      (Entity : in String := GNAT.Source_Info.Enclosing_Entity;
       Source : in String := GNAT.Source_Info.Source_Location)
       return Object is (Function_Trace (Name => Entity & ':' & Source));

   ---
   --  Functrace is not quite as usefull as the C++ version. The reason are the missing constructors and destructors in
   --  Ada. With Controlled types you can't limit to just one call to Initialize and one to Finalize There are allways
   --  some extra Adjust with matching. Finalize.
   --
   --  Name of the function calls to be traced.
   --
   --: function Function_Trace (
   --:  Entity      : in String;
   --:  Parameter   : in Parameter_Vector.Vector)
   --:  return Object
   --: is (Function_Trace (Entity & ':' & Parameter.Image));

   ---
   --  Trace the given exeption details and then raise the exception.
   --
   --: @param Raising  Exeption which is raised Message : Free form Message
   --: @param Message  Message to print to trace
   --: @param Entity   Location destriptor.
   --: @param Source   Location destriptor.
   procedure Raise_Exception
      (Raising : in Ada.Exceptions.Exception_Id := Ada.Assertions.Assertion_Error'Identity;
       Message : in String                      := "No Message given";
       Entity  : in String                      := GNAT.Source_Info.Enclosing_Entity;
       Source  : in String                      := GNAT.Source_Info.Source_Location);
   pragma No_Return (Raise_Exception);

   ---
   --  Trace the given exeption details and then raise the exception.
   --
   --: @param Raising  Exeption which is raised Message : Free form Message
   --: @param Message  Message to print to trace
   --: @param Source   Filename.
   --: @param Line     Line number.
   procedure Raise_Exception
      (Raising : in Ada.Exceptions.Exception_Id := Ada.Assertions.Assertion_Error'Identity;
       Message : in String                      := "No Message given";
       Source  : in String                      := GNAT.Source_Info.File;
       Line    : in Natural                     := GNAT.Source_Info.Line);

   ---
   --  Report an assert condition. If the condition is not true create a trace entry describing the assertion and then
   --  raise an exception.
   --
   --: @param Condition  Condition which should be true
   --: @param Raising    Exeption which is raised
   --: @param Message    Free form Message
   --: @param Entity     Location destriptor.
   --: @param Source     Location destriptor.
   procedure Report_Assertion
      (Condition : in Boolean;
       Raising   : in Ada.Exceptions.Exception_Id := Ada.Assertions.Assertion_Error'Identity;
       Message   : in String                      := "No Message given.";
       Entity    : in String                      := GNAT.Source_Info.Enclosing_Entity;
       Source    : in String                      := GNAT.Source_Info.Source_Location);
   pragma Inline (Report_Assertion);

   ---
   --  Report an assert condition. If the condition is not true create a trace entry describing the assertion and then
   --  raise an exception.
   --
   --  This version used parameter which are compatible with AUnit
   --
   --: @param Condition  Condition which should be true
   --: @param Message    Free form Message
   --: @param Source     Filename of source code
   --: @param Line       Line number in source code.
   procedure Report_Assertion
      (Condition : Boolean;
       Message   : String;
       Source    : String  := GNAT.Source_Info.File;
       Line      : Natural := GNAT.Source_Info.Line);

   ---
   --  Write Line numbers
   --
   procedure Enable_Write_Line_Number;
   pragma Inline (Enable_Write_Line_Number);

   ---
   --  Don't Write Line numbers
   --
   procedure Disable_Write_Line_Number;
   pragma Inline (Disable_Write_Line_Number);

   ---
   --  check if Line numbers are written
   --
   function Is_Write_Line_Number_Enabled return Boolean;
   pragma Inline (Is_Write_Line_Number_Enabled);

   ---
   --  Enable Trace
   --
   procedure Enable_Trace;
   pragma Inline (Enable_Trace);

   ---
   --  Enable Trace
   --
   procedure Disable_Trace;
   pragma Inline (Disable_Trace);

   ---
   --  check is trace is Enabled
   --
   function Is_Trace_Enabled return Boolean;
   pragma Inline (Is_Trace_Enabled);

   ---
   --  Enable Verbose Output
   --
   procedure Enable_Verbose;
   pragma Inline (Enable_Verbose);

   ---
   --  Disable Verbose Output
   --
   procedure Disable_Verbose;
   pragma Inline (Disable_Verbose);

   ---
   --  check is trace is Enabled
   --
   function Is_Verbose_Enabled return Boolean;
   pragma Inline (Is_Verbose_Enabled);

   ---
   --  Write to queue - not supported yet.
   --
   procedure Write_To_Queue;
   pragma Inline (Write_To_Queue);

   ---
   --  Write to Standart Error
   --
   procedure Write_To_Standard_Error;
   pragma Inline (Write_To_Standard_Error);

   ---
   --  Write to Standart Error
   --
   procedure Write_To_Standard_Output;
   pragma Inline (Write_To_Standard_Output);

   ---
   --  Write to queue - not supported yet.
   --
   procedure Write_To_File;
   pragma Inline (Write_To_File);

   ---
   --  Set Filename for Trace File
   --
   procedure Write_To_File (New_Filename : in String);

   ---
   --  Check the Trace Destination
   --
   function Trace_Destination return Destination;
   pragma Inline (Trace_Destination);

   ---
   --  Enable the write prefix
   --
   procedure Enable_Write_Prefix;
   pragma Inline (Enable_Write_Prefix);

   ---
   --  Disable_ the write prefix
   --
   procedure Disable_Write_Prefix;
   pragma Inline (Disable_Write_Prefix);

   ---
   --  Check the write prefix flag
   --
   function Is_Write_Prefix_Enabled return Boolean;
   pragma Inline (Is_Write_Prefix_Enabled);

   ---
   --  Write an IString using writeFormattedString after adding the appropriate padding for indentation.
   --
   --: @param Text  String to be written
   procedure Write (Text : in String);

   ---
   --  Write an Address.
   --
   --: @param Text  String to be written
   procedure Write (Text : in String; An_Address : in System.Address);

   ---
   --  Write an IString using writeFormattedString after adding the appropriate padding for indentation.
   --
   --: @param Text  String to be written
   procedure Write (Text : in Ada.Strings.Unbounded.Unbounded_String);

   ---
   --  Write an Exception to the Trace
   --
   --: @param An_Exception  String to be written
   procedure Write (An_Exception : in Ada.Exceptions.Exception_Occurrence);

   ---
   --  Write an Exception to the Trace
   --
   --: @param An_Exception Exception to be written
   --: @param Entity       Procedure in which the exception was caught
   --: @param Source       Source File in which Entity is located.
   procedure Write
      (An_Exception : in Ada.Exceptions.Exception_Occurrence;
       Entity       : in String;
       Source       : in String);

   ---
   --  Write an IString using writeFormattedString after adding the appropriate padding for indentation.
   --
   --: @param Text  String to be written
   procedure Write_Wide (Text : in Wide_String);

   ---
   --  Create a memory dump, S
   --
   --: @param An_Address   String to be written
   --: @param A_Size       Size in Storage_Elements.
   procedure Write_Dump (An_Address : in System.Address; Size_In_Byte : in System.Storage_Elements.Storage_Count);

   ---
   --  Create a memory dump. This Dump takes size in bits.
   --
   --: @param An_Address  String to be written
   --: @param A_Size      Size in Bits - i.E. for 'Size.
   procedure Write_Dump (An_Address : in System.Address; Size_In_Bits : in Integer);

   ---
   --  Write an IString using writeFormattedString after adding the appropriate padding for indentation.
   --
   --: @param Text  String to be written
   procedure Write_Error (Text : in String);

   ---
   --  Write an IString using writeFormattedString after adding the appropriate padding for indentation.
   --
   --: @param Text  String to be written
   procedure Write_Error (Text : in Ada.Strings.Unbounded.Unbounded_String);

   ---
   --  Write an Exception to the Trace
   --
   --: @param An_Exception  String to be written
   procedure Write_Error (An_Exception : in Ada.Exceptions.Exception_Occurrence);

   ---
   --  Write an Exception to the Trace
   --
   --: @param An_Exception String to be written
   --: @param Entity       Procedure in which the exception was caught
   --: @param Source       Source File in which Entity is located.
   procedure Write_Error
      (An_Exception : in Ada.Exceptions.Exception_Occurrence;
       Entity       : in String;
       Source       : in String);

   ---
   --  When verbose is aktivated then an empty line is written to Standart_Output
   --
   procedure Write_Info;

   ---
   --  Write an IString using writeFormattedString after adding the appropriate padding for indentation.
   --
   --  When verbose is aktivated then the string is written to Standart_Output as well.
   --
   --: @param Text  String to be written
   procedure Write_Info (Text : in String);

   ---
   --  When verbose is aktivated then the character is written to Standart_Output.
   --
   --: @param Text  character to be written
   procedure Write_Info (Text : in Character);

   ---
   --  Write an IString using writeFormattedString after adding the appropriate padding for indentation.
   --
   --  When verbose is aktivated then the string is written to Standart_Output as well.
   --
   --: @param Text  String to be written
   procedure Write_Info (Text : in Ada.Strings.Unbounded.Unbounded_String);

   ---
   --  Write Help for Commandline Options parsed from Trace
   --
   procedure Write_Commandline_Help;

private

   ---
   --  Ada Class Library
   --  Trace
   --
   --  Instanz Data
   --
   --: @field Name_Length  Lenght of trace String
   --: @field Trace_Name   Trace String
   --
   type Object (Name_Length : Positive) is new AdaCL.Base.Object with record
      Trace_Name : String (1 .. Name_Length);
   end record;

   ---
   --  Trace Copy.
   --
   --: @param This  Object itself.
   --
   overriding procedure Adjust (This : in out Object);

   ---
   --  Trace end of function
   --
   --: @param This  Object itself.
   --
   overriding procedure Finalize (This : in out Object);

end AdaCL.Trace;

---------------------------------------------------------------- {{{ ----------
--: vim: set textwidth=0 nowrap tabstop=8 shiftwidth=3 softtabstop=3 expandtab :
--: vim: set filetype=ada fileencoding=utf-8 fileformat=unix foldmethod=expr :
--: vim: set spell spelllang=en_gb