1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- S Y S T E M . G L O B A L _ L O C K S --
9 -- Copyright (C) 1999-2009, 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 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. --
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. --
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/>. --
27 -- GNAT was originally developed by the GNAT team at New York University. --
28 -- Extensive contributions were provided by Ada Core Technologies Inc. --
30 ------------------------------------------------------------------------------
32 with System
.Soft_Links
;
34 package body System
.Global_Locks
is
36 type String_Access
is access String;
38 Dir_Separator
: Character;
39 pragma Import
(C
, Dir_Separator
, "__gnat_dir_separator");
41 type Lock_File_Entry
is record
46 Last_Lock
: Lock_Type
:= Null_Lock
;
47 Lock_Table
: array (Lock_Type
range 1 .. 15) of Lock_File_Entry
;
52 Wait
: Duration := 0.1;
53 Retries
: Natural := Natural'Last);
54 -- Create a lock file File in directory Dir. If the file cannot be
55 -- locked because someone already owns the lock, this procedure
56 -- waits Wait seconds and retries at most Retries times. If the file
57 -- still cannot be locked, Lock_Error is raised. The default is to try
58 -- every second, almost forever (Natural'Last times).
64 procedure Acquire_Lock
(Lock
: in out Lock_Type
) is
67 (Lock_Table
(Lock
).Dir
.all,
68 Lock_Table
(Lock
).File
.all);
75 procedure Create_Lock
(Lock
: out Lock_Type
; Name
: String) is
79 System
.Soft_Links
.Lock_Task
.all;
80 Last_Lock
:= Last_Lock
+ 1;
82 System
.Soft_Links
.Unlock_Task
.all;
84 if L
> Lock_Table
'Last then
88 for J
in reverse Name
'Range loop
89 if Name
(J
) = Dir_Separator
then
90 Lock_Table
(L
).Dir
:= new String'(Name (Name'First .. J - 1));
91 Lock_Table (L).File := new String'(Name
(J
+ 1 .. Name
'Last));
96 if Lock_Table
(L
).Dir
= null then
97 Lock_Table
(L
).Dir
:= new String'(".");
98 Lock_Table (L).File := new String'(Name
);
111 Wait
: Duration := 0.1;
112 Retries
: Natural := Natural'Last)
114 C_Dir
: aliased String := Dir
& ASCII
.NUL
;
115 C_File
: aliased String := File
& ASCII
.NUL
;
117 function Try_Lock
(Dir
, File
: System
.Address
) return Integer;
118 pragma Import
(C
, Try_Lock
, "__gnat_try_lock");
121 for I
in 0 .. Retries
loop
122 if Try_Lock
(C_Dir
'Address, C_File
'Address) = 1 then
126 exit when I
= Retries
;
137 procedure Release_Lock
(Lock
: in out Lock_Type
) is
138 S
: aliased String :=
139 Lock_Table
(Lock
).Dir
.all & Dir_Separator
&
140 Lock_Table
(Lock
).File
.all & ASCII
.NUL
;
142 procedure unlink
(A
: System
.Address
);
143 pragma Import
(C
, unlink
, "unlink");
149 end System
.Global_Locks
;