adacl_6.1.1_9615232c/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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
--------------------------------------------------------------- {{{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.Containers.Indefinite_Vectors;
with Ada.Exceptions;
with Ada.Strings.Unbounded;
with Ada.Strings.Wide_Unbounded;
with Ada.Strings.Wide_Wide_Unbounded;
with AdaCL.Base;
with GNAT.Source_Info;
with System.Storage_Elements;
with System;

---
--  @summary
--
--  @description
package AdaCL.Trace is
   package Parameter_Vectors is new Ada.Containers.Indefinite_Vectors (Index_Type => Positive, Element_Type => String);

   Parameter : Parameter_Vectors.Vector renames Parameter_Vectors.Empty_Vector;

   ---
   --  Keep internal data for function traces
   --: @field Name_Length  Length 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);

   ---
   --  Initialize trace from environment variable and commandline
   --
   procedure Initialize;

   ---
   --  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.
   --
   --: @param Name Name of the function calls to be traced.
   --
   function Function_Trace (Name : in String) return Object with
      Inline;

   ---
   --  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.
   --
   --: @param Entity Name of the function calls to be traced.
   --: @param Source Source Line 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));

   ---
   --
   --: @param Name Name of the function calls to be traced.
   --
   procedure Entering (Name : in String) with
      Inline;

   ---
   --
   --: @param Entity Name of the function calls to be traced.
   --: @param Source Source Line to be traced
   --
   procedure Entering
      (Entity : in String := GNAT.Source_Info.Enclosing_Entity;
       Source : in String := GNAT.Source_Info.Source_Location);

   ---
   --
   --: @param Entity Name of the function calls to be traced.
   --: @param Source Source Line to be traced
   --
   procedure Entering
      (In_Parameter : in String;
       Entity       : in String := GNAT.Source_Info.Enclosing_Entity;
       Source       : in String := GNAT.Source_Info.Source_Location);

   ---
   --
   --: @param Entity Name of the function calls to be traced.
   --: @param Source Source Line to be traced
   --
   procedure Entering
      (In_Parameters : in Parameter_Vectors.Vector;
       Entity        : in String := GNAT.Source_Info.Enclosing_Entity;
       Source        : in String := GNAT.Source_Info.Source_Location);

   ---
   --
   --: @param Name Name of the function calls to be traced.
   --
   procedure Exiting (Name : in String) with
      Inline;

   ---
   --
   --: @param Entity Name of the function calls to be traced.
   --: @param Source Source Line to be traced
   --
   procedure Exiting
      (Entity : in String := GNAT.Source_Info.Enclosing_Entity;
       Source : in String := GNAT.Source_Info.Source_Location);

   ---
   --
   --: @param Out_Parameter   return value of function as string.
   --: @param Entity          name of the function calls to be traced.
   --: @param Source          source line to be traced
   --
   procedure Exiting
      (Out_Parameter : in String;
       Entity        : in String := GNAT.Source_Info.Enclosing_Entity;
       Source        : in String := GNAT.Source_Info.Source_Location);

   ---
   --
   --: @param Out_Parameters  return value of function as string.
   --: @param Entity          name of the function calls to be traced.
   --: @param Source          source line to be traced
   --
   procedure Exiting
      (Out_Parameters : in Parameter_Vectors.Vector;
       Entity         : in String := GNAT.Source_Info.Enclosing_Entity;
       Source         : in String := GNAT.Source_Info.Source_Location);

   ---
   --  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_With_Entity
      (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) with
      No_Return;

   ---
   --  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_With_File
      (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) with
      No_Return;

   ---
   --  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_With_Entity
      (Raising : in Ada.Exceptions.Exception_Id := Ada.Assertions.Assertion_Error'Identity;
       Message : in Wide_Wide_String            := "No Message given";
       Entity  : in String                      := GNAT.Source_Info.Enclosing_Entity;
       Source  : in String                      := GNAT.Source_Info.Source_Location) with
      No_Return;

   ---
   --  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_With_File
      (Raising : in Ada.Exceptions.Exception_Id := Ada.Assertions.Assertion_Error'Identity;
       Message : in Wide_Wide_String            := "No Message given";
       Source  : in String                      := GNAT.Source_Info.File;
       Line    : in Natural                     := GNAT.Source_Info.Line) with
      No_Return;

   ---
   --  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) with
      Inline;

   ---
   --  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 with
      Inline;

   ---
   --  Don't Write Line numbers
   --
   procedure Disable_Write_Line_Number with
      Inline;

   ---
   --  check if Line numbers are written
   --
   function Is_Write_Line_Number_Enabled return Boolean with
      Inline;

   ---
   --  Enable Trace
   --
   procedure Enable_Trace with
      Inline;

   ---
   --  Enable Trace
   --
   procedure Disable_Trace with
      Inline;

   ---
   --  check is trace is Enabled
   --
   function Is_Trace_Enabled return Boolean with
      Inline;

   ---
   --  Enable Verbose Output
   --
   procedure Enable_Verbose with
      Inline;

   ---
   --  Disable Verbose Output
   --
   procedure Disable_Verbose with
      Inline;

   ---
   --  check is trace is Enabled
   --
   function Is_Verbose_Enabled return Boolean with
      Inline;

   ---
   --  Write to queue - not supported yet.
   --
   procedure Write_To_Queue with
      Inline;

   ---
   --  Write to Standart Error
   --
   procedure Write_To_Standard_Error with
      Inline;

   ---
   --  Write to Standart Error
   --
   procedure Write_To_Standard_Output with
      Inline;

   ---
   --  Write to queue - not supported yet.
   --
   procedure Write_To_File with
      Inline;

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

   ---
   --  Check the Trace Destination
   --
   function Trace_Destination return Destination with
      Inline;

   ---
   --  Enable the write prefix
   --
   procedure Enable_Write_Prefix with
      Inline;

   ---
   --  Disable_ the write prefix
   --
   procedure Disable_Write_Prefix with
      Inline;

   ---
   --  Check the write prefix flag
   --
   function Is_Write_Prefix_Enabled return Boolean with
      Inline;

   ---
   --  Write an String using writeFormattedString after adding the appropriate padding for indentation.
   --
   --: @param Text  String to be written
   procedure Write (Text : 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);

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

   ---
   --  Write an String 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 String using writeFormattedString after adding the appropriate padding for indentation.
   --
   --: @param Text  String to be written
   procedure Write (Text : in Ada.Strings.Wide_Unbounded.Unbounded_Wide_String);

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

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

   ---
   --  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);

   ---
   --  Create a memory dump, S
   --
   --: @param An_Address   String to be written
   --: @param Size_In_Byte 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 Size_In_Bits 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 Wide_String);

   ---
   --  Write an IString using writeFormattedString after adding the appropriate padding for indentation.
   --
   --: @param Text  String to be written
   procedure Write_Error (Text : in Wide_Wide_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.Wide_Wide_Unbounded.Unbounded_Wide_Wide_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  Length 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