1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- S Y S T E M . S H A R E D _ M E M O R Y --
9 -- Copyright (C) 1998-2002 Free Software Foundation, Inc. --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
20 -- MA 02111-1307, USA. --
22 -- As a special exception, if other files instantiate generics from this --
23 -- unit, or you link this unit with other files to produce an executable, --
24 -- this unit does not by itself cause the resulting executable to be --
25 -- covered by the GNU General Public License. This exception does not --
26 -- however invalidate any other reasons why the executable file might be --
27 -- covered by the GNU Public License. --
29 -- GNAT was originally developed by the GNAT team at New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc. --
32 ------------------------------------------------------------------------------
35 with Ada
.IO_Exceptions
;
37 with Ada
.Streams
.Stream_IO
;
39 with System
.Global_Locks
;
40 with System
.Soft_Links
;
43 with System
.File_Control_Block
;
47 with Unchecked_Deallocation
;
48 with Unchecked_Conversion
;
50 package body System
.Shared_Storage
is
52 package AS
renames Ada
.Streams
;
54 package IOX
renames Ada
.IO_Exceptions
;
56 package FCB
renames System
.File_Control_Block
;
58 package SFI
renames System
.File_IO
;
60 type String_Access
is access String;
61 procedure Free
is new Unchecked_Deallocation
62 (Object
=> String, Name
=> String_Access
);
65 -- Holds the directory
67 ------------------------------------------------
68 -- Variables for Shared Variable Access Files --
69 ------------------------------------------------
71 Max_Shared_Var_Files
: constant := 20;
72 -- Maximum number of lock files that can be open
74 Shared_Var_Files_Open
: Natural := 0;
75 -- Number of shared variable access files currently open
77 type File_Stream_Type
is new AS
.Root_Stream_Type
with record
80 type File_Stream_Access
is access all File_Stream_Type
'Class;
83 (Stream
: in out File_Stream_Type
;
84 Item
: out AS
.Stream_Element_Array
;
85 Last
: out AS
.Stream_Element_Offset
);
88 (Stream
: in out File_Stream_Type
;
89 Item
: in AS
.Stream_Element_Array
);
91 subtype Hash_Header
is Natural range 0 .. 30;
92 -- Number of hash headers, related (for efficiency purposes only)
93 -- to the maximum number of lock files..
95 type Shared_Var_File_Entry
;
96 type Shared_Var_File_Entry_Ptr
is access Shared_Var_File_Entry
;
98 type Shared_Var_File_Entry
is record
100 -- Name of variable, as passed to Read_File/Write_File routines
102 Stream
: File_Stream_Access
;
103 -- Stream_IO file for the shared variable file
105 Next
: Shared_Var_File_Entry_Ptr
;
106 Prev
: Shared_Var_File_Entry_Ptr
;
107 -- Links for LRU chain
110 procedure Free
is new Unchecked_Deallocation
111 (Object
=> Shared_Var_File_Entry
,
112 Name
=> Shared_Var_File_Entry_Ptr
);
114 procedure Free
is new Unchecked_Deallocation
115 (Object
=> File_Stream_Type
'Class,
116 Name
=> File_Stream_Access
);
118 function To_AFCB_Ptr
is
119 new Unchecked_Conversion
(SIO
.File_Type
, FCB
.AFCB_Ptr
);
121 LRU_Head
: Shared_Var_File_Entry_Ptr
;
122 LRU_Tail
: Shared_Var_File_Entry_Ptr
;
123 -- As lock files are opened, they are organized into a least recently
124 -- used chain, which is a doubly linked list using the Next and Prev
125 -- fields of Shared_Var_File_Entry records. The field LRU_Head points
126 -- to the least recently used entry, whose prev pointer is null, and
127 -- LRU_Tail points to the most recently used entry, whose next pointer
128 -- is null. These pointers are null only if the list is empty.
130 function Hash
(F
: String_Access
) return Hash_Header
;
131 function Equal
(F1
, F2
: String_Access
) return Boolean;
132 -- Hash and equality functions for hash table
134 package SFT
is new System
.HTable
.Simple_HTable
135 (Header_Num
=> Hash_Header
,
136 Element
=> Shared_Var_File_Entry_Ptr
,
138 Key
=> String_Access
,
142 --------------------------------
143 -- Variables for Lock Control --
144 --------------------------------
146 Global_Lock
: Global_Locks
.Lock_Type
;
148 Lock_Count
: Natural := 0;
149 -- Counts nesting of lock calls, 0 means lock is not held
151 -----------------------
152 -- Local Subprograms --
153 -----------------------
155 procedure Initialize
;
156 -- Called to initialize data structures for this package.
157 -- Has no effect except on the first call.
159 procedure Enter_SFE
(SFE
: Shared_Var_File_Entry_Ptr
; Fname
: String);
160 -- The first parameter is a pointer to a newly allocated SFE, whose
161 -- File field is already set appropriately. Fname is the name of the
162 -- variable as passed to Shared_Var_RFile/Shared_Var_WFile. Enter_SFE
163 -- completes the SFE value, and enters it into the hash table. If the
164 -- hash table is already full, the least recently used entry is first
165 -- closed and discarded.
167 function Retrieve
(File
: String) return Shared_Var_File_Entry_Ptr
;
168 -- Given a file name, this function searches the hash table to see if
169 -- the file is currently open. If so, then a pointer to the already
170 -- created entry is returned, after first moving it to the head of
171 -- the LRU chain. If not, then null is returned.
177 procedure Enter_SFE
(SFE
: Shared_Var_File_Entry_Ptr
; Fname
: String) is
178 Freed
: Shared_Var_File_Entry_Ptr
;
181 SFE
.Name
:= new String'(Fname);
183 -- Release least recently used entry if we have to
185 if Shared_Var_Files_Open = Max_Shared_Var_Files then
188 if Freed.Next /= null then
189 Freed.Next.Prev := null;
192 LRU_Head := Freed.Next;
193 SFT.Remove (Freed.Name);
194 SIO.Close (Freed.Stream.File);
200 Shared_Var_Files_Open := Shared_Var_Files_Open + 1;
203 -- Add new entry to hash table
205 SFT.Set (SFE.Name, SFE);
207 -- Add new entry at end of LRU chain
209 if LRU_Head = null then
214 SFE.Prev := LRU_Tail;
215 LRU_Tail.Next := SFE;
224 function Equal (F1, F2 : String_Access) return Boolean is
226 return F1.all = F2.all;
233 function Hash (F : String_Access) return Hash_Header is
237 -- Add up characters of name, mod our table size
239 for J in F'Range loop
240 N := (N + Character'Pos (F (J))) mod (Hash_Header'Last + 1);
250 procedure Initialize is
251 procedure Get_Env_Value_Ptr (Name, Length, Ptr : Address);
252 pragma Import (C, Get_Env_Value_Ptr, "__gnat_get_env_value_ptr");
254 procedure Strncpy (Astring_Addr, Cstring : Address; N : Integer);
255 pragma Import (C, Strncpy, "strncpy");
257 Dir_Name : aliased constant String :=
258 "SHARED_MEMORY_DIRECTORY" & ASCII.NUL;
260 Env_Value_Ptr : aliased Address;
261 Env_Value_Length : aliased Integer;
266 (Dir_Name'Address, Env_Value_Length'Address, Env_Value_Ptr'Address);
268 Dir := new String (1 .. Env_Value_Length);
270 if Env_Value_Length > 0 then
271 Strncpy (Dir.all'Address, Env_Value_Ptr, Env_Value_Length);
274 System.Global_Locks.Create_Lock (Global_Lock, Dir.all & "__lock");
283 (Stream : in out File_Stream_Type;
284 Item : out AS.Stream_Element_Array;
285 Last : out AS.Stream_Element_Offset)
288 SIO.Read (Stream.File, Item, Last);
290 exception when others =>
298 function Retrieve (File : String) return Shared_Var_File_Entry_Ptr is
299 SFE : Shared_Var_File_Entry_Ptr;
303 SFE := SFT.Get (File'Unrestricted_Access);
307 -- Move to head of LRU chain
309 if SFE = LRU_Tail then
312 elsif SFE = LRU_Head then
313 LRU_Head := LRU_Head.Next;
314 LRU_Head.Prev := null;
317 SFE.Next.Prev := SFE.Prev;
318 SFE.Prev.Next := SFE.Next;
322 SFE.Prev := LRU_Tail;
323 LRU_Tail.Next := SFE;
330 ----------------------
331 -- Shared_Var_Close --
332 ----------------------
334 procedure Shared_Var_Close (Var : in SIO.Stream_Access) is
335 pragma Warnings (Off, Var);
338 System.Soft_Links.Unlock_Task.all;
339 end Shared_Var_Close;
341 ---------------------
342 -- Shared_Var_Lock --
343 ---------------------
345 procedure Shared_Var_Lock (Var : in String) is
346 pragma Warnings (Off, Var);
349 System.Soft_Links.Lock_Task.all;
352 if Lock_Count /= 0 then
353 Lock_Count := Lock_Count + 1;
354 System.Soft_Links.Unlock_Task.all;
358 System.Soft_Links.Unlock_Task.all;
359 System.Global_Locks.Acquire_Lock (Global_Lock);
364 System.Soft_Links.Unlock_Task.all;
368 ----------------------
369 -- Shared_Var_ROpen --
370 ----------------------
372 function Shared_Var_ROpen (Var : String) return SIO.Stream_Access is
373 SFE : Shared_Var_File_Entry_Ptr;
375 use type Ada.Streams.Stream_IO.File_Mode;
378 System.Soft_Links.Lock_Task.all;
379 SFE := Retrieve (Var);
381 -- Here if file is not already open, try to open it
385 S : aliased constant String := Dir.all & Var;
388 SFE := new Shared_Var_File_Entry;
389 SFE.Stream := new File_Stream_Type;
390 SIO.Open (SFE.Stream.File, SIO.In_File, Name => S);
391 SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File));
393 -- File opened successfully, put new entry in hash table. Note
394 -- that in this case, file is positioned correctly for read.
396 Enter_SFE (SFE, Var);
399 -- If we get an exception, it means that the file does not
400 -- exist, and in this case, we don't need the SFE and we
403 when IOX.Name_Error =>
405 System.Soft_Links.Unlock_Task.all;
409 -- Here if file is already open, set file for reading
412 if SIO.Mode (SFE.Stream.File) /= SIO.In_File then
413 SIO.Set_Mode (SFE.Stream.File, SIO.In_File);
414 SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File));
417 SIO.Set_Index (SFE.Stream.File, 1);
420 return SIO.Stream_Access (SFE.Stream);
424 System.Soft_Links.Unlock_Task.all;
426 end Shared_Var_ROpen;
428 -----------------------
429 -- Shared_Var_Unlock --
430 -----------------------
432 procedure Shared_Var_Unlock (Var : in String) is
433 pragma Warnings (Off, Var);
436 System.Soft_Links.Lock_Task.all;
438 Lock_Count := Lock_Count - 1;
440 if Lock_Count = 0 then
441 System.Global_Locks.Release_Lock (Global_Lock);
443 System.Soft_Links.Unlock_Task.all;
447 System.Soft_Links.Unlock_Task.all;
449 end Shared_Var_Unlock;
451 ---------------------
452 -- Share_Var_WOpen --
453 ---------------------
455 function Shared_Var_WOpen (Var : String) return SIO.Stream_Access is
456 SFE : Shared_Var_File_Entry_Ptr;
458 use type Ada.Streams.Stream_IO.File_Mode;
461 System.Soft_Links.Lock_Task.all;
462 SFE := Retrieve (Var);
466 S : aliased constant String := Dir.all & Var;
469 SFE := new Shared_Var_File_Entry;
470 SFE.Stream := new File_Stream_Type;
471 SIO.Open (SFE.Stream.File, SIO.Out_File, Name => S);
472 SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File));
475 -- If we get an exception, it means that the file does not
476 -- exist, and in this case, we create the file.
478 when IOX.Name_Error =>
481 SIO.Create (SFE.Stream.File, SIO.Out_File, Name => S);
484 -- Error if we cannot create the file
487 Ada.Exceptions.Raise_Exception
488 (Program_Error'Identity,
489 "Cannot create shared variable file for """ &
494 -- Make new hash table entry for opened/created file. Note that
495 -- in both cases, the file is already in write mode at the start
496 -- of the file, ready to be written.
498 Enter_SFE
(SFE
, Var
);
500 -- Here if file is already open, set file for writing
503 if SIO
.Mode
(SFE
.Stream
.File
) /= SIO
.Out_File
then
504 SIO
.Set_Mode
(SFE
.Stream
.File
, SIO
.Out_File
);
505 SFI
.Make_Unbuffered
(To_AFCB_Ptr
(SFE
.Stream
.File
));
508 SIO
.Set_Index
(SFE
.Stream
.File
, 1);
511 return SIO
.Stream_Access
(SFE
.Stream
);
515 System
.Soft_Links
.Unlock_Task
.all;
517 end Shared_Var_WOpen
;
524 (Stream
: in out File_Stream_Type
;
525 Item
: in AS
.Stream_Element_Array
)
528 SIO
.Write
(Stream
.File
, Item
);
531 end System
.Shared_Storage
;