OSDN Git Service

2006-10-31 Javier Miranda <miranda@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / s-gloloc.adb
1 ------------------------------------------------------------------------------
2 --                                                                          --
3 --                         GNAT COMPILER COMPONENTS                         --
4 --                                                                          --
5 --                  S Y S T E M . G L O B A L _ L O C K S                   --
6 --                                                                          --
7 --                                 B o d y                                  --
8 --                                                                          --
9 --          Copyright (C) 1999-2006, 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 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,  51  Franklin  Street,  Fifth  Floor, --
20 -- Boston, MA 02110-1301, USA.                                              --
21 --                                                                          --
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.                                      --
28 --                                                                          --
29 -- GNAT was originally developed  by the GNAT team at  New York University. --
30 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
31 --                                                                          --
32 ------------------------------------------------------------------------------
33
34 with System.Soft_Links;
35 --  used for Lock_Task, Unlock_Task
36
37 package body System.Global_Locks is
38
39    type String_Access is access String;
40
41    Dir_Separator : Character;
42    pragma Import (C, Dir_Separator, "__gnat_dir_separator");
43
44    type Lock_File_Entry is record
45       Dir  : String_Access;
46       File : String_Access;
47    end record;
48
49    Last_Lock  : Lock_Type := Null_Lock;
50    Lock_Table : array (Lock_Type range 1 .. 15) of Lock_File_Entry;
51
52    procedure Lock_File
53      (Dir     : String;
54       File    : String;
55       Wait    : Duration := 0.1;
56       Retries : Natural  := Natural'Last);
57    --  Create a lock file File in directory Dir. If the file  cannot be
58    --  locked because someone already owns the lock, this procedure
59    --  waits Wait seconds and retries at most Retries times. If the file
60    --  still cannot be locked, Lock_Error is raised. The default is to try
61    --  every second, almost forever (Natural'Last times).
62
63    ------------------
64    -- Acquire_Lock --
65    ------------------
66
67    procedure Acquire_Lock (Lock : in out Lock_Type) is
68    begin
69       Lock_File
70         (Lock_Table (Lock).Dir.all,
71          Lock_Table (Lock).File.all);
72    end Acquire_Lock;
73
74    -----------------
75    -- Create_Lock --
76    -----------------
77
78    procedure Create_Lock (Lock : out Lock_Type; Name : String) is
79       L : Lock_Type;
80
81    begin
82       System.Soft_Links.Lock_Task.all;
83       Last_Lock := Last_Lock + 1;
84       L := Last_Lock;
85       System.Soft_Links.Unlock_Task.all;
86
87       if L > Lock_Table'Last then
88          raise Lock_Error;
89       end if;
90
91       for J in reverse Name'Range loop
92          if Name (J) = Dir_Separator then
93             Lock_Table (L).Dir := new String'(Name (Name'First .. J - 1));
94             Lock_Table (L).File := new String'(Name (J + 1 .. Name'Last));
95             exit;
96          end if;
97       end loop;
98
99       if Lock_Table (L).Dir = null then
100          Lock_Table (L).Dir  := new String'(".");
101          Lock_Table (L).File := new String'(Name);
102       end if;
103
104       Lock := L;
105    end Create_Lock;
106
107    ---------------
108    -- Lock_File --
109    ---------------
110
111    procedure Lock_File
112      (Dir     : String;
113       File    : String;
114       Wait    : Duration := 0.1;
115       Retries : Natural  := Natural'Last)
116    is
117       C_Dir  : aliased String := Dir & ASCII.NUL;
118       C_File : aliased String := File & ASCII.NUL;
119
120       function Try_Lock (Dir, File : System.Address) return Integer;
121       pragma Import (C, Try_Lock, "__gnat_try_lock");
122
123    begin
124       for I in 0 .. Retries loop
125          if Try_Lock (C_Dir'Address, C_File'Address) = 1 then
126             return;
127          end if;
128
129          exit when I = Retries;
130          delay Wait;
131       end loop;
132
133       raise Lock_Error;
134    end Lock_File;
135
136    ------------------
137    -- Release_Lock --
138    ------------------
139
140    procedure Release_Lock (Lock : in out Lock_Type) is
141       S : aliased String :=
142             Lock_Table (Lock).Dir.all & Dir_Separator &
143             Lock_Table (Lock).File.all & ASCII.NUL;
144
145       procedure unlink (A : System.Address);
146       pragma Import (C, unlink, "unlink");
147
148    begin
149       unlink (S'Address);
150    end Release_Lock;
151
152 end System.Global_Locks;