keystoreada_1.4.1_36696f68/src/keystore-io-refs.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
-----------------------------------------------------------------------
--  keystore-io-refs -- IO stream reference holder
--  Copyright (C) 2019, 2020 Stephane Carrez
--  Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--  SPDX-License-Identifier: Apache-2.0
-----------------------------------------------------------------------

private with Util.Concurrent.Counters;
private with Ada.Finalization;
package Keystore.IO.Refs is

   type Stream_Ref is tagged private;

   function Create (Stream : in Wallet_Stream_Access) return Stream_Ref;

   function Value (Object : in Stream_Ref) return Wallet_Stream_Access;

   Null_Ref : constant Stream_Ref;

private

   type Stream_Ref is new Ada.Finalization.Controlled with record
      Stream  : Wallet_Stream_Access;
      Counter : Util.Concurrent.Counters.Counter_Access;
   end record;

   overriding
   procedure Finalize (Object : in out Stream_Ref);

   overriding
   procedure Adjust (Object : in out Stream_Ref);

   Null_Ref : constant Stream_Ref := Stream_Ref '(Ada.Finalization.Controlled with
                                                  Stream => null, Counter => null);

end Keystore.IO.Refs;