File: gnatcoll-promises.adb

package info (click to toggle)
libgnatcoll 18-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,068 kB
  • sloc: ada: 40,393; python: 354; ansic: 310; makefile: 245; sh: 31
file content (434 lines) | stat: -rw-r--r-- 13,046 bytes parent folder | download
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
------------------------------------------------------------------------------
--                             G N A T C O L L                              --
--                                                                          --
--                     Copyright (C) 2017, AdaCore                          --
--                                                                          --
-- This library is free software;  you can redistribute it and/or modify it --
-- under terms of the  GNU General Public License  as published by the Free --
-- Software  Foundation;  either version 3,  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 MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE.                            --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
--                                                                          --
-- You should have received a copy of the GNU General Public License and    --
-- a copy of the GCC Runtime Library Exception along with this program;     --
-- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
-- <http://www.gnu.org/licenses/>.                                          --
--                                                                          --
------------------------------------------------------------------------------

with Ada.Containers.Vectors;
with Ada.Exceptions;     use Ada.Exceptions;
with Ada.Unchecked_Deallocation;
with GNAT.Strings;       use GNAT.Strings;
with GNATCOLL.Atomic;    use GNATCOLL.Atomic;

package body GNATCOLL.Promises is

   use type Impl.Promise_Callback_Access;

   package Cb_Vectors is new Ada.Containers.Vectors
      (Positive, Impl.Promise_Callback_Access, Impl."=");

   ----------
   -- Free --
   ----------

   procedure Free (Self : in out Freeable_Access) is
      procedure Unchecked_Free is new Ada.Unchecked_Deallocation
         (IFreeable'Class, Freeable_Access);
   begin
      if Self /= null then
         Free (Self.all);
         Unchecked_Free (Self);
      end if;
   end Free;

   ---------------
   -- Subscribe --
   ---------------

   procedure Subscribe (Self : Promise_Chain) is
   begin
      null;
   end Subscribe;

   ----------
   -- Impl --
   ----------

   package body Impl is

      -------------------
      -- Dispatch_Free --
      -------------------

      procedure Dispatch_Free (Self : in out IPromise_Data'Class) is
      begin
         Free (Self);
      end Dispatch_Free;

   end Impl;

   --------------
   -- Promises --
   --------------

   package body Promises is

      type T_Access is access all T;

      type Promise_Data is new Impl.IPromise_Data with record
         State     : aliased Promise_State := Pending;

         Callbacks : Cb_Vectors.Vector;
         --  Need a vector here, but should try to limit memory allocs.
         --  A bounded vector might be more efficient, and sufficient in
         --  practice.

         Value     : T_Access;
         --  ??? Using the ada-traits-containers approach, we could avoid
         --  some memory allocation here.

         Reason    : GNAT.Strings.String_Access;
      end record;
      type Promise_Data_Access is access all Promise_Data'Class;

      overriding procedure Free (Self : in out Promise_Data);

      procedure Unchecked_Free is new Ada.Unchecked_Deallocation
         (T, T_Access);

      ---------------
      -- Get_State --
      ---------------

      function Get_State (Self : Promise'Class) return Actual_Promise_State is
         D : constant not null access Promise_Data'Class :=
            Promise_Data_Access (Impl.Promise_Pointers.Unchecked_Get (Self));
      begin
         return Actual_Promise_State (D.State);
      end Get_State;

      ------------
      -- Create --
      ------------

      function Create return Promise is
      begin
         return P : Promise do
            P.Set
               (Data => Promise_Data'
                  (Callbacks => Cb_Vectors.Empty_Vector,
                   State     => Pending,
                   Value     => null,
                   Reason    => null));
         end return;
      end Create;

      ----------
      -- Free --
      ----------

      overriding procedure Free (Self : in out Promise_Data) is
      begin
         Unchecked_Free (Self.Value);
         Free (Self.Reason);
      end Free;

      ---------------
      -- Set_Value --
      ---------------

      procedure Set_Value (Self : in out Promise; R : T) is
         D : constant not null access Promise_Data'Class :=
            Promise_Data_Access (Impl.Promise_Pointers.Unchecked_Get (Self));
         Old : Actual_Promise_State;
      begin
         loop
            Old := Actual_Promise_State
               (Sync_Val_Compare_And_Swap_Counter
                  (Ptr    => D.State'Access,
                   Oldval => Pending,
                   Newval => Resolving));
            case Old is
               when Resolved | Failed =>
                  --  Promise has already been completed, this is an error
                  return;

               when Resolving | Failing | Subscribing =>
                  --  Try again
                  null;

               when Pending =>
                  --  OK, we can change the state
                  for Cb of D.Callbacks loop
                     Callback_Access (Cb).On_Next (R);
                     Free (Freeable_Access (Cb));
                  end loop;

                  D.Callbacks.Clear;   --  No longer needed, release them
                  D.Value := new T'(R);
                  D.State := Resolved;  --  Fully resolved now
                  exit;
            end case;
         end loop;
      end Set_Value;

      ---------------
      -- Set_Error --
      ---------------

      procedure Set_Error (Self : in out Promise; Reason : String) is
         D : constant not null access Promise_Data'Class :=
            Promise_Data_Access (Impl.Promise_Pointers.Unchecked_Get (Self));
         Old : Actual_Promise_State;
      begin
         loop
            Old := Actual_Promise_State
               (Sync_Val_Compare_And_Swap_Counter
                  (Ptr    => D.State'Access,
                   Oldval => Pending,
                   Newval => Failing));
            case Old is
               when Resolved | Failed =>
                  --  Promise has already been completed, this is an error
                  return;

               when Resolving | Failing | Subscribing =>
                  --  Try again
                  null;

               when Pending =>
                  --  OK, we can change the state
                  for Cb of D.Callbacks loop
                     Callback_Access (Cb).On_Error (Reason);
                     Free (Freeable_Access (Cb));
                  end loop;

                  D.Callbacks.Clear;   --  No longer needed, release them
                  D.Reason := new String'(Reason);
                  D.State := Failed;  --  Fully failed now
                  exit;
            end case;
         end loop;
      end Set_Error;

      ---------------
      -- Subscribe --
      ---------------

      procedure Subscribe
        (Self : Promise; Cb : not null access Callback'Class)
      is
         D : constant not null access Promise_Data'Class :=
            Promise_Data_Access (Impl.Promise_Pointers.Unchecked_Get (Self));

         --  ??? Unrestricted_Access is temporary, so that user can
         --  use "new Cb" directly in the call to Subscribe.
         C : Callback_Access := Cb.all'Unrestricted_Access;
         Old : Actual_Promise_State;
      begin
         loop
            Old := Actual_Promise_State
               (Sync_Val_Compare_And_Swap_Counter
                  (Ptr    => D.State'Access,
                   Oldval => Pending,
                   Newval => Subscribing));
            case Old is
               when Resolving | Failing | Subscribing =>
                  --  Try again
                  null;

               when Resolved =>
                  --  We don't need to change D, so we leave the state to
                  --  Pending
                  C.On_Next (D.Value.all);
                  Free (Freeable_Access (C));
                  return;

               when Failed =>
                  C.On_Error (D.Reason.all);
                  Free (Freeable_Access (C));
                  return;

               when Pending =>
                  D.Callbacks.Append (Impl.Promise_Callback_Access (C));
                  D.State := Pending;
                  exit;
            end case;
         end loop;
      end Subscribe;

      -----------
      -- "and" --
      -----------

      function "and"
         (Self : Promise; Cb : Callback_List)
         return Promise_Chain is
      begin
         for C of Cb loop
            Self.Subscribe (C);
         end loop;
         return Promise_Chain'(null record);
      end "and";

      -----------
      -- "and" --
      -----------

      function "and"
         (Self  : Promise;
          Cb    : not null access Callback'Class)
         return Promise_Chain is
      begin
         Self.Subscribe (Cb);
         return Promise_Chain'(null record);
      end "and";

      ---------
      -- "&" --
      ---------

      function "&"
        (Cb    : not null access Callback'Class;
         Cb2   : not null access Callback'Class)
        return Callback_List is
      begin
         return (Cb.all'Unrestricted_Access,
                 Cb2.all'Unrestricted_Access);
      end "&";

      ---------
      -- "&" --
      ---------

      function "&"
        (List  : Callback_List;
         Cb2   : not null access Callback'Class)
        return Callback_List is
      begin
         return List & (1 => Cb2.all'Unrestricted_Access);
      end "&";

   end Promises;

   ------------
   -- Chains --
   ------------

   package body Chains is

      -----------
      -- "and" --
      -----------

      function "and"
         (Input : Input_Promises.Promise;
          Cb    : not null access Callback'Class)
         return Output_Promises.Promise is
      begin
         Cb.Promise := Output_Promises.Create;
         Input_Promises.Subscribe (Input, Cb.all'Unrestricted_Access);
         return Cb.Promise;
      end "and";

      -----------
      -- "and" --
      -----------

      function "and"
        (Input : Input_Promises.Promise;
         Cb    : Callback_List)
        return Output_Promises.Promise
      is
         P : constant Output_Promises.Promise := Input and Cb.Cb;
      begin
         for C of Cb.Cb2 loop
            Input_Promises.Subscribe (Input, C);
         end loop;
         return P;
      end "and";

      -------------------
      -- Is_Registered --
      -------------------

      function Is_Registered
         (Self : not null access Callback'Class) return Boolean is
      begin
         return Self.Promise.Is_Created;
      end Is_Registered;

      -------------------
      -- Is_Registered --
      -------------------

      function Is_Registered
         (Self : Callback_List) return Boolean is
      begin
         return Self.Cb.Promise.Is_Created;
      end Is_Registered;

      -------------
      -- On_Next --
      -------------

      overriding procedure On_Next
         (Self : in out Callback; P : Input_Promises.Result_Type) is
      begin
         On_Next (Callback'Class (Self), P, Self.Promise);
      exception
         when E : others =>
            Self.Promise.Set_Error (Exception_Message (E));
      end On_Next;

      --------------
      -- On_Error --
      --------------

      overriding procedure On_Error
         (Self : in out Callback; Reason : String) is
      begin
         --  Propagate the failure
         Self.Promise.Set_Error (Reason);
      end On_Error;

      -----------
      -- "&" --
      -----------

      function "&"
         (Cb   : not null access Callback'Class;
          Cb2  : not null access Input_Promises.Callback'Class)
         return Callback_List is
      begin
         return Callback_List'
            (N   => 1,
             Cb  => Cb.all'Unrestricted_Access,
             Cb2 => (1 => Cb2.all'Unrestricted_Access));
      end "&";

      -----------
      -- "&" --
      -----------

      function "&"
         (List : Callback_List;
          Cb2  : not null access Input_Promises.Callback'Class)
         return Callback_List is
      begin
         return Callback_List'
            (N   => List.N + 1,
             Cb  => List.Cb,
             Cb2 => List.Cb2 & (1 => Cb2.all'Unrestricted_Access));
      end "&";

   end Chains;

end GNATCOLL.Promises;