agpl_1.0.0_b5da3320/src/agpl-tasking-generic_workers.adb

  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
with Ada.Calendar;
with Ada.Containers.Doubly_Linked_Lists,
     Ada.Finalization,
     Ada.Unchecked_Deallocation;
with Agpl.Average_Queue;
with Agpl.Average_Queue.Timed;
with Agpl.Conversions;
with Agpl.Counter.Multi,
     Agpl.Generic_Handle,
     Agpl.Trace,
     Agpl.Types.Ustrings;

use Agpl.Trace,
    Agpl.Types.Ustrings;

package body Agpl.Tasking.Generic_Workers is

   subtype Rates is Float;

   package Avg_Rates_Base is new Agpl.Average_Queue (Rates);
   package Avg_Rates      is new Avg_Rates_Base.Timed;

   Class_Counter : Agpl.Counter.Multi.Object;

   Thread_Ini_Rate : Avg_Rates.Object (Slots => 5, Slot_Duration => 1000);
   Thread_Fin_Rate : Avg_Rates.Object (Slots => 5, Slot_Duration => 1000);

   package Code_Handles is new Agpl.Generic_Handle (Code);
   subtype Code_Handle is Code_Handles.Object;
   use Code_Handles;

   ------------
   -- Worker --
   ------------

   task type Worker (Stack_Size : Natural) is
      pragma Storage_Size (Stack_Size);

      entry Set_Class (Class : String);
      entry Launch (This : Code);
   end Worker;

   type Worker_Access is access Worker;

   procedure Free is new Ada.Unchecked_Deallocation (Worker, Worker_Access);

   package Worker_Lists is new
     Ada.Containers.Doubly_Linked_Lists (Worker_Access);

   -------------
   -- Aborter --
   -------------

   task type Aborter (W : Worker_Access);

   task body Aborter is
   begin
      abort W.all;
   end Aborter;

   type Jobs is record
      Work  : Code_Handle;
      Class : Ustring;
      Stack : Natural;
   end record;

   package Job_Lists is new Ada.Containers.Doubly_Linked_Lists (Jobs);

   ----------
   -- Safe --
   ----------

   protected Safe is
      procedure Increment;
      procedure Decrement;

      procedure Add_Job (Job : Jobs);
      entry Get_Job (Job : out Jobs);
      --  remove first pending job

      procedure Abort_All;
      procedure Append (W : Worker_Access);
      procedure Check_Old;
      function  Count return Natural;
   private
      Counter         : Natural := 0;
      Running_Workers : Worker_Lists.List;
      Pending_Jobs    : Job_Lists.List;
   end Safe;

   ----------
   -- Safe --
   ----------

   protected body Safe is

      ------------
      -- Append --
      ------------

      procedure Append (W : Worker_Access) is
      begin
         Running_Workers.Append (W);
      end Append;

      ---------------
      -- Check_Old --
      ---------------

      procedure Check_Old is
         use Worker_Lists;
         I : Cursor := Worker_Lists.Last (Running_Workers);
         J : Cursor;
      begin
         while Has_Element (I) loop
            J := Previous (I);

            declare
               W : Worker_Access := Element (I);
            begin
               if W'Terminated then
                  Free (W);
                  Running_Workers.Delete (I);
               end if;
            end;

            I := J;
         end loop;
      end Check_Old;

      -----------
      -- Count --
      -----------

      function Count return Natural is
      begin
         return Counter;
      end Count;

      ---------------
      -- Decrement --
      ---------------

      procedure Decrement is
      begin
         Counter := Counter - 1;
      end Decrement;

      ---------------
      -- Increment --
      ---------------

      procedure Increment is
      begin
         Counter := Counter + 1;
      end Increment;

      ---------------
      -- Abort_All --
      ---------------

      procedure Abort_All is
         procedure Abort_Worker (I : Worker_Lists.Cursor) is
            A : constant access Aborter :=
                  new Aborter (Worker_Lists.Element (I));
            pragma Unreferenced (A);
         begin
            null;
         end Abort_Worker;
      begin
         Running_Workers.Iterate (Abort_Worker'Access);
      end Abort_All;

      -------------
      -- Add_Job --
      -------------

      procedure Add_Job (Job : Jobs) is
      begin
         Pending_Jobs.Append (Job);
      end Add_Job;

      -------------
      -- Get_Job --
      -------------

      entry Get_Job (Job : out Jobs)
        when not Pending_Jobs.Is_Empty is
      begin
         Job := Pending_Jobs.First_Element;
         Pending_Jobs.Delete_First;
      end Get_Job;

   end Safe;

   ----------
   -- Live --
   ----------

   task Live;

   task body Live is
   begin
      loop
         declare
            Job : Jobs;
         begin
            Safe.Get_Job (Job);
            Launch (Job.Work.Ref.all,
                    +Job.Class,
                    Job.Stack,
                    Reap_Old => False,
                    Activate => True);
         exception
            when E : others =>
               Log ("Agpl.Tasking.Workers.Live: " & Report (E),
                    Error, Log_Section);
         end;
      end loop;
   end Live;

   type Autocounter is new Ada.Finalization.Limited_Controlled with null record;
   procedure Initialize (This : in out Autocounter);
   procedure Finalize   (This : in out Autocounter);

   procedure Initialize (This : in out Autocounter) is
      pragma Unreferenced (This);
   begin
      Safe.Increment;
   end Initialize;

   procedure Finalize   (This : in out Autocounter) is
      pragma Unreferenced (This);
   begin
      Safe.Decrement;
   end Finalize;

   ---------------
   -- Abort_All --
   ---------------

   procedure Abort_All is
   begin
      Safe.Abort_All;
   end Abort_All;

   -----------
   -- Count --
   -----------

   function Count return Natural is
   begin
      return Safe.Count;
   end Count;

   ------------
   -- Worker --
   ------------

   task body Worker is
      C : Code_Handle;
      A : Autocounter; pragma Unreferenced (A);

      subtype Code_Class is Agpl.Tasking.Code.Object'Class;

      Class : Ustring;
   begin
      Thread_Ini_Rate.Push (1.0);

      accept Set_Class (Class : String) do
         Worker.Class := +Class;
      end Set_Class;

      Class_Counter.Add (+Class);

      accept Launch (This : Code) do
         C.Set (This);
      end Launch;

      begin
         C.Ref.all.Init;
      exception
         when E : others =>
            Log ("Agpl.Tasking.Worker [init]: " &
                 External_Tag (Code_Class (C.Ref.all)'Tag) & ": " & Report (E),
                 Error);
      end;

      begin
         C.Ref.all.Run;
      exception
         when E : others =>
            Log ("Agpl.Tasking.Worker [run]: " &
                 External_Tag (Code_Class (C.Ref.all)'Tag) & ": " & Report (E),
                 Error);
      end;

      begin
         C.Ref.all.Destroy;
      exception
         when E : others =>
            Log ("Agpl.Tasking.Worker [destroy]: " &
                 External_Tag (Code_Class (C.Ref.all)'Tag) & ": " & Report (E),
                 Error);
      end;

      Class_Counter.Add (+Class, -1);
      Thread_Fin_Rate.Push (1.0);

   exception
      when E : others =>
         Class_Counter.Add (+Class, -1);
         Thread_Fin_Rate.Push (1.0);

         Log ("Agpl.Tasking.Worker: " & Report (E), Error);
         raise;
   end Worker;

   ------------
   -- Launch --
   ------------

   procedure Launch
     (This     : Code;
      Class    : String  := "";
      Stack    : Natural := 64 * 1024;
      Reap_Old : Boolean := True;
      Activate : Boolean := False)
   is
   begin
      if Activate then
         declare
            W : constant Worker_Access := new Worker (Stack);
         begin
            W.Set_Class (Class);
            W.Launch (This);

            Safe.Append (W);
         end;
      else
         Safe.Add_Job ((Work  => Set (This),
                        Class => +Class,
                        Stack => Stack));
      end if;

      if Reap_Old then
         Safe.Check_Old;
      end if;
   end Launch;

   ---------------
   -- Purge_Old --
   ---------------

   procedure Purge_Old is
   begin
      Safe.Check_Old;
   end Purge_Old;

   -----------------
   -- Class_Count --
   -----------------

   function Class_Count (Class : String) return Natural is
   begin
      return Class_Counter.Val (Class);
   end Class_Count;

   -------------------
   -- Rate_Informer --
   -------------------

   task Rate_Informer is
      entry Avg_Ini (Avg : out Float);
      entry Avg_Fin (Avg : out Float);
   end Rate_Informer;

   task body Rate_Informer is
      use Ada.Calendar;
      use Agpl.Conversions;
      Next    : Ada.Calendar.Time := Ada.Calendar.Clock;
   begin
      loop
         declare
            Av_Ini : Rates;
            Av_Fin : Rates;
         begin
            thread_ini_Rate.Average (Av_Ini);
            Thread_Fin_Rate.Average (Av_Fin);

            Log ("New threads: " & To_String (Float (Av_Ini), Decimals => 1) &
                 " (" & To_String (Float (Av_Ini), Decimals => 1) & "/s)",
                 Informative, Log_Section_Rates);
            Log ("Fin threads: " & To_String (Float (Av_Fin), Decimals => 1) &
                 " (" & To_String (Float (Av_Fin), Decimals => 1) & "/s)",
                 Informative, Log_Section_Rates);

            Next := Next + 1.0;

            while Next > Clock loop
               select
                  accept Avg_Ini (Avg : out Float) do
                     Avg := Av_Ini;
                  end Avg_Ini;
               or
                  accept Avg_Fin (Avg : out Float) do
                     Avg := Av_Fin;
                  end Avg_Fin;
               or
                  delay until Next;
               end select;
            end loop;
         end;
      end loop;
   end Rate_Informer;

      ---------------------
      -- Avg_Threads_New --
      ---------------------

      function Avg_Threads_New return Float is
         X : Float;
      begin
         Rate_Informer.Avg_Ini (X);
         return X;
      end Avg_Threads_New;

      ---------------------
      -- Avg_Threads_End --
      ---------------------

      function Avg_Threads_End return Float is
         X : Float;
      begin
         Rate_Informer.Avg_Fin (X);
         return X;
      end Avg_Threads_End;

end Agpl.Tasking.Generic_Workers;