* tree-vect-loop-manip.c (vect_do_peeling): Do not use
[official-gcc.git] / gcc / ada / libgnat / s-shasto.adb
blob9395e3f6e10d9bf5c9b49aea0e7a4c01d3345b19
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S Y S T E M . S H A R E D _ M E M O R Y --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 1998-2017, Free Software Foundation, Inc. --
10 -- --
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 3, 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. --
17 -- --
18 -- As a special exception under Section 7 of GPL version 3, you are granted --
19 -- additional permissions described in the GCC Runtime Library Exception, --
20 -- version 3.1, as published by the Free Software Foundation. --
21 -- --
22 -- You should have received a copy of the GNU General Public License and --
23 -- a copy of the GCC Runtime Library Exception along with this program; --
24 -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
25 -- <http://www.gnu.org/licenses/>. --
26 -- --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
29 -- --
30 ------------------------------------------------------------------------------
32 with Ada.IO_Exceptions;
33 with Ada.Streams;
34 with Ada.Streams.Stream_IO;
36 with System.Global_Locks;
37 with System.Soft_Links;
39 with System;
40 with System.CRTL;
41 with System.File_Control_Block;
42 with System.File_IO;
43 with System.HTable;
45 with Ada.Unchecked_Deallocation;
46 with Ada.Unchecked_Conversion;
48 package body System.Shared_Storage is
50 package AS renames Ada.Streams;
52 package IOX renames Ada.IO_Exceptions;
54 package FCB renames System.File_Control_Block;
56 package SFI renames System.File_IO;
58 package SIO renames Ada.Streams.Stream_IO;
60 type String_Access is access String;
61 procedure Free is new Ada.Unchecked_Deallocation
62 (Object => String, Name => String_Access);
64 Dir : 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
78 File : SIO.File_Type;
79 end record;
80 type File_Stream_Access is access all File_Stream_Type'Class;
82 procedure Read
83 (Stream : in out File_Stream_Type;
84 Item : out AS.Stream_Element_Array;
85 Last : out AS.Stream_Element_Offset);
87 procedure Write
88 (Stream : in out File_Stream_Type;
89 Item : AS.Stream_Element_Array);
91 subtype Hash_Header is Natural range 0 .. 30;
92 -- Number of hash headers, related (for efficiency purposes only) to the
93 -- 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
99 Name : String_Access;
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
108 end record;
110 procedure Free is new Ada.Unchecked_Deallocation
111 (Object => Shared_Var_File_Entry,
112 Name => Shared_Var_File_Entry_Ptr);
114 procedure Free is new Ada.Unchecked_Deallocation
115 (Object => File_Stream_Type'Class,
116 Name => File_Stream_Access);
118 function To_AFCB_Ptr is
119 new Ada.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,
137 No_Element => null,
138 Key => String_Access,
139 Hash => Hash,
140 Equal => Equal);
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.
173 function Shared_Var_ROpen (Var : String) return SIO.Stream_Access;
174 -- As described above, this routine returns null if the
175 -- corresponding shared storage does not exist, and otherwise, if
176 -- the storage does exist, a Stream_Access value that references
177 -- the shared storage, ready to read the current value.
179 function Shared_Var_WOpen (Var : String) return SIO.Stream_Access;
180 -- As described above, this routine returns a Stream_Access value
181 -- that references the shared storage, ready to write the new
182 -- value. The storage is created by this call if it does not
183 -- already exist.
185 procedure Shared_Var_Close (Var : SIO.Stream_Access);
186 -- This routine signals the end of a read/assign operation. It can
187 -- be useful to embrace a read/write operation between a call to
188 -- open and a call to close which protect the whole operation.
189 -- Otherwise, two simultaneous operations can result in the
190 -- raising of exception Data_Error by setting the access mode of
191 -- the variable in an incorrect mode.
193 ---------------
194 -- Enter_SFE --
195 ---------------
197 procedure Enter_SFE (SFE : Shared_Var_File_Entry_Ptr; Fname : String) is
198 Freed : Shared_Var_File_Entry_Ptr;
200 begin
201 SFE.Name := new String'(Fname);
203 -- Release least recently used entry if we have to
205 if Shared_Var_Files_Open = Max_Shared_Var_Files then
206 Freed := LRU_Head;
208 if Freed.Next /= null then
209 Freed.Next.Prev := null;
210 end if;
212 LRU_Head := Freed.Next;
213 SFT.Remove (Freed.Name);
214 SIO.Close (Freed.Stream.File);
215 Free (Freed.Name);
216 Free (Freed.Stream);
217 Free (Freed);
219 else
220 Shared_Var_Files_Open := Shared_Var_Files_Open + 1;
221 end if;
223 -- Add new entry to hash table
225 SFT.Set (SFE.Name, SFE);
227 -- Add new entry at end of LRU chain
229 if LRU_Head = null then
230 LRU_Head := SFE;
231 LRU_Tail := SFE;
233 else
234 SFE.Prev := LRU_Tail;
235 LRU_Tail.Next := SFE;
236 LRU_Tail := SFE;
237 end if;
238 end Enter_SFE;
240 -----------
241 -- Equal --
242 -----------
244 function Equal (F1, F2 : String_Access) return Boolean is
245 begin
246 return F1.all = F2.all;
247 end Equal;
249 ----------
250 -- Hash --
251 ----------
253 function Hash (F : String_Access) return Hash_Header is
254 N : Natural := 0;
256 begin
257 -- Add up characters of name, mod our table size
259 for J in F'Range loop
260 N := (N + Character'Pos (F (J))) mod (Hash_Header'Last + 1);
261 end loop;
263 return N;
264 end Hash;
266 ----------------
267 -- Initialize --
268 ----------------
270 procedure Initialize is
271 procedure Get_Env_Value_Ptr (Name, Length, Ptr : Address);
272 pragma Import (C, Get_Env_Value_Ptr, "__gnat_getenv");
274 subtype size_t is CRTL.size_t;
276 procedure Strncpy (dest, src : System.Address; n : size_t)
277 renames CRTL.strncpy;
279 Dir_Name : aliased constant String :=
280 "SHARED_MEMORY_DIRECTORY" & ASCII.NUL;
282 Env_Value_Ptr : aliased Address;
283 Env_Value_Len : aliased Integer;
285 begin
286 if Dir = null then
287 Get_Env_Value_Ptr
288 (Dir_Name'Address, Env_Value_Len'Address, Env_Value_Ptr'Address);
290 Dir := new String (1 .. Env_Value_Len);
292 if Env_Value_Len > 0 then
293 Strncpy (Dir.all'Address, Env_Value_Ptr, size_t (Env_Value_Len));
294 end if;
296 System.Global_Locks.Create_Lock (Global_Lock, Dir.all & "__lock");
297 end if;
298 end Initialize;
300 ----------
301 -- Read --
302 ----------
304 procedure Read
305 (Stream : in out File_Stream_Type;
306 Item : out AS.Stream_Element_Array;
307 Last : out AS.Stream_Element_Offset)
309 begin
310 SIO.Read (Stream.File, Item, Last);
312 exception when others =>
313 Last := Item'Last;
314 end Read;
316 --------------
317 -- Retrieve --
318 --------------
320 function Retrieve (File : String) return Shared_Var_File_Entry_Ptr is
321 SFE : Shared_Var_File_Entry_Ptr;
323 begin
324 Initialize;
325 SFE := SFT.Get (File'Unrestricted_Access);
327 if SFE /= null then
329 -- Move to head of LRU chain
331 if SFE = LRU_Tail then
332 null;
334 elsif SFE = LRU_Head then
335 LRU_Head := LRU_Head.Next;
336 LRU_Head.Prev := null;
338 else
339 SFE.Next.Prev := SFE.Prev;
340 SFE.Prev.Next := SFE.Next;
341 end if;
343 SFE.Next := null;
344 SFE.Prev := LRU_Tail;
345 LRU_Tail.Next := SFE;
346 LRU_Tail := SFE;
347 end if;
349 return SFE;
350 end Retrieve;
352 ----------------------
353 -- Shared_Var_Close --
354 ----------------------
356 procedure Shared_Var_Close (Var : SIO.Stream_Access) is
357 pragma Warnings (Off, Var);
359 begin
360 System.Soft_Links.Unlock_Task.all;
361 end Shared_Var_Close;
363 ---------------------
364 -- Shared_Var_Lock --
365 ---------------------
367 procedure Shared_Var_Lock (Var : String) is
368 pragma Warnings (Off, Var);
370 begin
371 System.Soft_Links.Lock_Task.all;
372 Initialize;
374 if Lock_Count /= 0 then
375 Lock_Count := Lock_Count + 1;
376 System.Soft_Links.Unlock_Task.all;
378 else
379 Lock_Count := 1;
380 System.Soft_Links.Unlock_Task.all;
381 System.Global_Locks.Acquire_Lock (Global_Lock);
382 end if;
384 exception
385 when others =>
386 System.Soft_Links.Unlock_Task.all;
387 raise;
388 end Shared_Var_Lock;
390 ----------------------
391 -- Shared_Var_Procs --
392 ----------------------
394 package body Shared_Var_Procs is
396 use type SIO.Stream_Access;
398 ----------
399 -- Read --
400 ----------
402 procedure Read is
403 S : SIO.Stream_Access := null;
404 begin
405 S := Shared_Var_ROpen (Full_Name);
406 if S /= null then
407 Typ'Read (S, V);
408 Shared_Var_Close (S);
409 end if;
410 end Read;
412 ------------
413 -- Write --
414 ------------
416 procedure Write is
417 S : SIO.Stream_Access := null;
418 begin
419 S := Shared_Var_WOpen (Full_Name);
420 Typ'Write (S, V);
421 Shared_Var_Close (S);
422 return;
423 end Write;
425 end Shared_Var_Procs;
427 ----------------------
428 -- Shared_Var_ROpen --
429 ----------------------
431 function Shared_Var_ROpen (Var : String) return SIO.Stream_Access is
432 SFE : Shared_Var_File_Entry_Ptr;
434 use type Ada.Streams.Stream_IO.File_Mode;
436 begin
437 System.Soft_Links.Lock_Task.all;
438 SFE := Retrieve (Var);
440 -- Here if file is not already open, try to open it
442 if SFE = null then
443 declare
444 S : aliased constant String := Dir.all & Var;
446 begin
447 SFE := new Shared_Var_File_Entry;
448 SFE.Stream := new File_Stream_Type;
449 SIO.Open (SFE.Stream.File, SIO.In_File, Name => S);
450 SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File));
452 -- File opened successfully, put new entry in hash table. Note
453 -- that in this case, file is positioned correctly for read.
455 Enter_SFE (SFE, Var);
457 exception
458 -- If we get an exception, it means that the file does not
459 -- exist, and in this case, we don't need the SFE and we
460 -- return null;
462 when IOX.Name_Error =>
463 Free (SFE);
464 System.Soft_Links.Unlock_Task.all;
465 return null;
466 end;
468 -- Here if file is already open, set file for reading
470 else
471 if SIO.Mode (SFE.Stream.File) /= SIO.In_File then
472 SIO.Set_Mode (SFE.Stream.File, SIO.In_File);
473 SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File));
474 end if;
476 SIO.Set_Index (SFE.Stream.File, 1);
477 end if;
479 return SIO.Stream_Access (SFE.Stream);
481 exception
482 when others =>
483 System.Soft_Links.Unlock_Task.all;
484 raise;
485 end Shared_Var_ROpen;
487 -----------------------
488 -- Shared_Var_Unlock --
489 -----------------------
491 procedure Shared_Var_Unlock (Var : String) is
492 pragma Warnings (Off, Var);
494 begin
495 System.Soft_Links.Lock_Task.all;
496 Initialize;
497 Lock_Count := Lock_Count - 1;
499 if Lock_Count = 0 then
500 System.Global_Locks.Release_Lock (Global_Lock);
501 end if;
502 System.Soft_Links.Unlock_Task.all;
504 exception
505 when others =>
506 System.Soft_Links.Unlock_Task.all;
507 raise;
508 end Shared_Var_Unlock;
510 ---------------------
511 -- Share_Var_WOpen --
512 ---------------------
514 function Shared_Var_WOpen (Var : String) return SIO.Stream_Access is
515 SFE : Shared_Var_File_Entry_Ptr;
517 use type Ada.Streams.Stream_IO.File_Mode;
519 begin
520 System.Soft_Links.Lock_Task.all;
521 SFE := Retrieve (Var);
523 if SFE = null then
524 declare
525 S : aliased constant String := Dir.all & Var;
527 begin
528 SFE := new Shared_Var_File_Entry;
529 SFE.Stream := new File_Stream_Type;
530 SIO.Open (SFE.Stream.File, SIO.Out_File, Name => S);
531 SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File));
533 exception
534 -- If we get an exception, it means that the file does not
535 -- exist, and in this case, we create the file.
537 when IOX.Name_Error =>
539 begin
540 SIO.Create (SFE.Stream.File, SIO.Out_File, Name => S);
542 exception
543 -- Error if we cannot create the file
545 when others =>
546 raise Program_Error with
547 "cannot create shared variable file for """ & S & '"';
548 end;
549 end;
551 -- Make new hash table entry for opened/created file. Note that
552 -- in both cases, the file is already in write mode at the start
553 -- of the file, ready to be written.
555 Enter_SFE (SFE, Var);
557 -- Here if file is already open, set file for writing
559 else
560 if SIO.Mode (SFE.Stream.File) /= SIO.Out_File then
561 SIO.Set_Mode (SFE.Stream.File, SIO.Out_File);
562 SFI.Make_Unbuffered (To_AFCB_Ptr (SFE.Stream.File));
563 end if;
565 SIO.Set_Index (SFE.Stream.File, 1);
566 end if;
568 return SIO.Stream_Access (SFE.Stream);
570 exception
571 when others =>
572 System.Soft_Links.Unlock_Task.all;
573 raise;
574 end Shared_Var_WOpen;
576 -----------
577 -- Write --
578 -----------
580 procedure Write
581 (Stream : in out File_Stream_Type;
582 Item : AS.Stream_Element_Array)
584 begin
585 SIO.Write (Stream.File, Item);
586 end Write;
588 end System.Shared_Storage;