1 ------------------------------------------------------------------------------
3 -- GNAT COMPILER COMPONENTS --
5 -- G N A T . L O C K _ F I L E S --
10 -- Copyright (C) 1998-2001 Free Software Foundation, Inc. --
12 -- GNAT is free software; you can redistribute it and/or modify it under --
13 -- terms of the GNU General Public License as published by the Free Soft- --
14 -- ware Foundation; either version 2, or (at your option) any later ver- --
15 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
16 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
17 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
18 -- for more details. You should have received a copy of the GNU General --
19 -- Public License distributed with GNAT; see file COPYING. If not, write --
20 -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
21 -- MA 02111-1307, USA. --
23 -- As a special exception, if other files instantiate generics from this --
24 -- unit, or you link this unit with other files to produce an executable, --
25 -- this unit does not by itself cause the resulting executable to be --
26 -- covered by the GNU General Public License. This exception does not --
27 -- however invalidate any other reasons why the executable file might be --
28 -- covered by the GNU Public License. --
30 -- GNAT is maintained by Ada Core Technologies Inc (http://www.gnat.com). --
32 ------------------------------------------------------------------------------
36 package body GNAT
.Lock_Files
is
38 Dir_Separator
: Character;
39 pragma Import
(C
, Dir_Separator
, "__gnat_dir_separator");
46 (Directory
: Path_Name
;
47 Lock_File_Name
: Path_Name
;
48 Wait
: Duration := 1.0;
49 Retries
: Natural := Natural'Last)
51 Dir
: aliased String := Directory
& ASCII
.NUL
;
52 File
: aliased String := Lock_File_Name
& ASCII
.NUL
;
54 function Try_Lock
(Dir
, File
: System
.Address
) return Integer;
55 pragma Import
(C
, Try_Lock
, "__gnat_try_lock");
58 -- If a directory separator was provided, just remove the one we have
61 if Directory
(Directory
'Last) = Dir_Separator
62 or else Directory
(Directory
'Last) = '/'
64 Dir
(Dir
'Last - 1) := ASCII
.Nul
;
67 -- Try to lock the file Retries times
69 for I
in 0 .. Retries
loop
70 if Try_Lock
(Dir
'Address, File
'Address) = 1 then
74 exit when I
= Retries
;
86 (Lock_File_Name
: Path_Name
;
87 Wait
: Duration := 1.0;
88 Retries
: Natural := Natural'Last)
91 for J
in reverse Lock_File_Name
'Range loop
92 if Lock_File_Name
(J
) = Dir_Separator
93 or else Lock_File_Name
(J
) = '/'
96 (Lock_File_Name
(Lock_File_Name
'First .. J
- 1),
97 Lock_File_Name
(J
+ 1 .. Lock_File_Name
'Last),
104 Lock_File
(".", Lock_File_Name
, Wait
, Retries
);
111 procedure Unlock_File
(Lock_File_Name
: Path_Name
) is
112 S
: aliased String := Lock_File_Name
& ASCII
.NUL
;
114 procedure unlink
(A
: System
.Address
);
115 pragma Import
(C
, unlink
, "unlink");
125 procedure Unlock_File
(Directory
: Path_Name
; Lock_File_Name
: Path_Name
) is
127 if Directory
(Directory
'Last) = Dir_Separator
128 or else Directory
(Directory
'Last) = '/'
130 Unlock_File
(Directory
& Lock_File_Name
);
132 Unlock_File
(Directory
& Dir_Separator
& Lock_File_Name
);