1 ------------------------------------------------------------------------------
3 -- GNAT RUN-TIME COMPONENTS --
5 -- A D A . D I R E C T O R I E S --
9 -- Copyright (C) 2004-2011, 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 Ada
.Calendar
; use Ada
.Calendar
;
33 with Ada
.Calendar
.Formatting
; use Ada
.Calendar
.Formatting
;
34 with Ada
.Directories
.Validity
; use Ada
.Directories
.Validity
;
35 with Ada
.Strings
.Maps
; use Ada
.Strings
.Maps
;
36 with Ada
.Strings
.Fixed
;
37 with Ada
.Strings
.Unbounded
; use Ada
.Strings
.Unbounded
;
38 with Ada
.Unchecked_Conversion
;
39 with Ada
.Unchecked_Deallocation
;
40 with Ada
.Characters
.Handling
; use Ada
.Characters
.Handling
;
42 with System
.CRTL
; use System
.CRTL
;
43 with System
.OS_Constants
; use System
.OS_Constants
;
44 with System
.OS_Lib
; use System
.OS_Lib
;
45 with System
.Regexp
; use System
.Regexp
;
46 with System
.File_IO
; use System
.File_IO
;
47 with System
; use System
;
49 package body Ada
.Directories
is
51 Filename_Max
: constant Integer := 1024;
52 -- 1024 is the value of FILENAME_MAX in stdio.h
54 type Dir_Type_Value
is new Address
;
55 -- This is the low-level address directory structure as returned by the C
58 No_Dir
: constant Dir_Type_Value
:= Dir_Type_Value
(Null_Address
);
60 Dir_Separator
: constant Character;
61 pragma Import
(C
, Dir_Separator
, "__gnat_dir_separator");
62 -- Running system default directory separator
64 Dir_Seps
: constant Character_Set
:= Strings
.Maps
.To_Set
("/\");
65 -- UNIX and DOS style directory separators
68 pragma Import (C, Max_Path, "__gnat_max_path_len
");
69 -- The maximum length of a path
71 type Search_Data is record
72 Is_Valid : Boolean := False;
73 Name : Unbounded_String;
76 Dir : Dir_Type_Value := No_Dir;
77 Entry_Fetched : Boolean := False;
78 Dir_Entry : Directory_Entry_Type;
80 -- The current state of a search
82 Empty_String : constant String := (1 .. 0 => ASCII.NUL);
83 -- Empty string, returned by function Extension when there is no extension
85 procedure Free is new Ada.Unchecked_Deallocation (Search_Data, Search_Ptr);
87 procedure Close (Dir : Dir_Type_Value);
89 function File_Exists (Name : String) return Boolean;
90 -- Returns True if the named file exists
92 procedure Fetch_Next_Entry (Search : Search_Type);
93 -- Get the next entry in a directory, setting Entry_Fetched if successful
94 -- or resetting Is_Valid if not.
100 function Base_Name (Name : String) return String is
101 Simple : constant String := Simple_Name (Name);
102 -- Simple'First is guaranteed to be 1
105 -- Look for the last dot in the file name and return the part of the
106 -- file name preceding this last dot. If the first dot is the first
107 -- character of the file name, the base name is the empty string.
109 for Pos in reverse Simple'Range loop
110 if Simple (Pos) = '.' then
111 return Simple (1 .. Pos - 1);
115 -- If there is no dot, return the complete file name
124 procedure Close (Dir : Dir_Type_Value) is
126 pragma Warnings (Off, Discard);
128 function closedir (directory : DIRs) return Integer;
129 pragma Import (C, closedir, "__gnat_closedir
");
132 Discard := closedir (DIRs (Dir));
140 (Containing_Directory : String := "";
142 Extension : String := "") return String
144 Result : String (1 .. Containing_Directory'Length +
145 Name'Length + Extension'Length + 2);
149 -- First, deal with the invalid cases
151 if Containing_Directory /= ""
152 and then not Is_Valid_Path_Name (Containing_Directory)
154 raise Name_Error with
155 "invalid directory path name
""" & Containing_Directory & '"';
158 Extension'Length = 0 and then (not Is_Valid_Simple_Name (Name))
160 raise Name_Error with
161 "invalid simple name """ & Name & '"';
163 elsif Extension'Length /= 0
164 and then not Is_Valid_Simple_Name (Name & '.' & Extension)
166 raise Name_Error with
167 "invalid file name
""" & Name & '.' & Extension & '"';
169 -- This is not an invalid case so build the path name
172 Last := Containing_Directory'Length;
173 Result (1 .. Last) := Containing_Directory;
175 -- Add a directory separator if needed
177 if Last /= 0 and then not Is_In (Result (Last), Dir_Seps) then
179 Result (Last) := Dir_Separator;
184 Result (Last + 1 .. Last + Name'Length) := Name;
185 Last := Last + Name'Length;
187 -- If extension was specified, add dot followed by this extension
189 if Extension'Length /= 0 then
191 Result (Last) := '.';
192 Result (Last + 1 .. Last + Extension'Length) := Extension;
193 Last := Last + Extension'Length;
196 return Result (1 .. Last);
200 --------------------------
201 -- Containing_Directory --
202 --------------------------
204 function Containing_Directory (Name : String) return String is
206 -- First, the invalid case
208 if not Is_Valid_Path_Name (Name) then
209 raise Name_Error with "invalid path name """ & Name & '"';
213 -- We need to resolve links because of A.16(47), since we must not
214 -- return alternative names for files.
216 Norm : constant String := Normalize_Pathname (Name);
217 Last_DS : constant Natural :=
219 (Name, Dir_Seps, Going => Strings.Backward);
224 -- There is no directory separator, returns current working
227 return Current_Directory;
229 -- If Name indicates a root directory, raise Use_Error, because
230 -- it has no containing directory.
239 and then Norm
(Norm
'Last - 1 .. Norm
'Last) = ":\"
240 and then (Norm (Norm'First) in 'a' .. 'z'
241 or else Norm (Norm'First) in 'A' .. 'Z'))))
244 "directory
""" & Name & """ has no containing directory
";
248 Last : Positive := Last_DS - Name'First + 1;
249 Result : String (1 .. Last);
252 Result := Name (Name'First .. Last_DS);
254 -- Remove any trailing directory separator, except as the
255 -- first character or the first character following a drive
256 -- number on Windows.
262 Result (Last) /= Directory_Separator;
266 and then Result (2) = ':'
268 (Result (1) in 'A' .. 'Z'
270 Result (1) in 'a' .. 'z');
275 -- Special case of current directory, identified by "."
277 if Last = 1 and then Result (1) = '.' then
278 return Current_Directory;
280 -- Special case of "..": the current directory may be a root
283 elsif Last = 2 and then Result (1 .. 2) = ".." then
284 return Containing_Directory (Current_Directory);
287 return Result (1 .. Last);
293 end Containing_Directory;
300 (Source_Name : String;
301 Target_Name : String;
305 Mode : Copy_Mode := Overwrite;
306 Preserve : Attribute := None;
309 -- First, the invalid cases
311 if not Is_Valid_Path_Name (Source_Name) then
312 raise Name_Error with
313 "invalid source path name
""" & Source_Name & '"';
315 elsif not Is_Valid_Path_Name (Target_Name) then
316 raise Name_Error with
317 "invalid target path name """ & Target_Name & '"';
319 elsif not Is_Regular_File (Source_Name) then
320 raise Name_Error with '"' & Source_Name & """ is not a file";
322 elsif Is_Directory (Target_Name) then
323 raise Use_Error with "target """ & Target_Name & """ is a directory";
326 if Form'Length > 0 then
328 Formstr : String (1 .. Form'Length + 1);
332 -- Acquire form string, setting required NUL terminator
334 Formstr (1 .. Form'Length) := Form;
335 Formstr (Formstr'Last) := ASCII.NUL;
337 -- Convert form string to lower case
339 for J in Formstr'Range loop
340 if Formstr (J) in 'A
' .. 'Z
' then
342 Character'Val (Character'Pos (Formstr (J)) + 32);
348 Form_Parameter (Formstr, "mode", V1, V2);
353 elsif Formstr (V1 .. V2) = "copy" then
356 elsif Formstr (V1 .. V2) = "overwrite" then
359 elsif Formstr (V1 .. V2) = "append" then
363 raise Use_Error with "invalid Form";
366 Form_Parameter (Formstr, "preserve", V1, V2);
371 elsif Formstr (V1 .. V2) = "timestamps" then
372 Preserve := Time_Stamps;
374 elsif Formstr (V1 .. V2) = "all_attributes" then
377 elsif Formstr (V1 .. V2) = "no_attributes" then
381 raise Use_Error with "invalid Form";
386 -- Do actual copy using System.OS_Lib.Copy_File
388 Copy_File (Source_Name, Target_Name, Success, Mode, Preserve);
391 raise Use_Error with "copy of """ & Source_Name & """ failed";
396 ----------------------
397 -- Create_Directory --
398 ----------------------
400 procedure Create_Directory
401 (New_Directory : String;
404 pragma Unreferenced (Form);
406 C_Dir_Name : constant String := New_Directory & ASCII.NUL;
408 function mkdir (Dir_Name : String) return Integer;
409 pragma Import (C, mkdir, "__gnat_mkdir");
412 -- First, the invalid case
414 if not Is_Valid_Path_Name (New_Directory) then
415 raise Name_Error with
416 "invalid new directory path name """ & New_Directory & '"';
419 if mkdir (C_Dir_Name) /= 0 then
421 "creation
of new directory
""" & New_Directory & """ failed
";
424 end Create_Directory;
430 procedure Create_Path
431 (New_Directory : String;
434 pragma Unreferenced (Form);
436 New_Dir : String (1 .. New_Directory'Length + 1);
437 Last : Positive := 1;
438 Start : Positive := 1;
441 -- First, the invalid case
443 if not Is_Valid_Path_Name (New_Directory) then
444 raise Name_Error with
445 "invalid
new directory path name
""" & New_Directory & '"';
448 -- Build New_Dir with a directory separator at the end, so that the
449 -- complete path will be found in the loop below.
451 New_Dir (1 .. New_Directory'Length) := New_Directory;
452 New_Dir (New_Dir'Last) := Directory_Separator;
454 -- If host is windows, and the first two characters are directory
455 -- separators, we have an UNC path. Skip it.
457 if Directory_Separator = '\
'
458 and then New_Dir'Length > 2
459 and then Is_In (New_Dir (1), Dir_Seps)
460 and then Is_In (New_Dir (2), Dir_Seps)
465 exit when Start = New_Dir'Last
466 or else Is_In (New_Dir (Start), Dir_Seps);
470 -- Create, if necessary, each directory in the path
472 for J in Start + 1 .. New_Dir'Last loop
474 -- Look for the end of an intermediate directory
476 if not Is_In (New_Dir (J), Dir_Seps) then
479 -- We have found a new intermediate directory each time we find
480 -- a first directory separator.
482 elsif not Is_In (New_Dir (J - 1), Dir_Seps) then
484 -- No need to create the directory if it already exists
486 if Is_Directory (New_Dir (1 .. Last)) then
489 -- It is an error if a file with such a name already exists
491 elsif Is_Regular_File (New_Dir (1 .. Last)) then
493 "file """ & New_Dir (1 .. Last) & """ already exists";
496 Create_Directory (New_Directory => New_Dir (1 .. Last));
503 -----------------------
504 -- Current_Directory --
505 -----------------------
507 function Current_Directory return String is
508 Path_Len : Natural := Max_Path;
509 Buffer : String (1 .. 1 + Max_Path + 1);
511 procedure Local_Get_Current_Dir (Dir : Address; Length : Address);
512 pragma Import (C, Local_Get_Current_Dir, "__gnat_get_current_dir");
515 Local_Get_Current_Dir (Buffer'Address, Path_Len'Address);
518 -- We need to resolve links because of A.16(47), since we must not
519 -- return alternative names for files
520 Cur : constant String := Normalize_Pathname (Buffer (1 .. Path_Len));
523 if Cur'Length > 1 and then Cur (Cur'Last) = Dir_Separator then
524 return Cur (1 .. Cur'Last - 1);
529 end Current_Directory;
531 ----------------------
532 -- Delete_Directory --
533 ----------------------
535 procedure Delete_Directory (Directory : String) is
537 -- First, the invalid cases
539 if not Is_Valid_Path_Name (Directory) then
540 raise Name_Error with
541 "invalid directory path name """ & Directory & '"';
543 elsif not Is_Directory (Directory) then
544 raise Name_Error with '"' & Directory & """ not a directory";
548 C_Dir_Name : constant String := Directory & ASCII.NUL;
551 if rmdir (C_Dir_Name) /= 0 then
553 "deletion of directory """ & Directory & """ failed";
557 end Delete_Directory;
563 procedure Delete_File (Name : String) is
567 -- First, the invalid cases
569 if not Is_Valid_Path_Name (Name) then
570 raise Name_Error with "invalid path name """ & Name & '"';
572 elsif not Is_Regular_File (Name) then
573 raise Name_Error with "file
""" & Name & """ does
not exist
";
576 -- Do actual deletion using System.OS_Lib.Delete_File
578 Delete_File (Name, Success);
581 raise Use_Error with "file
""" & Name & """ could
not be deleted
";
590 procedure Delete_Tree (Directory : String) is
591 Current_Dir : constant String := Current_Directory;
592 Search : Search_Type;
593 Dir_Ent : Directory_Entry_Type;
595 -- First, the invalid cases
597 if not Is_Valid_Path_Name (Directory) then
598 raise Name_Error with
599 "invalid directory path name
""" & Directory & '"';
601 elsif not Is_Directory (Directory) then
602 raise Name_Error with '"' & Directory & """ not a directory
";
605 Set_Directory (Directory);
606 Start_Search (Search, Directory => ".", Pattern => "");
608 while More_Entries (Search) loop
609 Get_Next_Entry (Search, Dir_Ent);
612 File_Name : constant String := Simple_Name (Dir_Ent);
615 if OS_Lib.Is_Directory (File_Name) then
616 if File_Name /= "." and then File_Name /= ".." then
617 Delete_Tree (File_Name);
621 Delete_File (File_Name);
626 Set_Directory (Current_Dir);
630 C_Dir_Name : constant String := Directory & ASCII.NUL;
633 if rmdir (C_Dir_Name) /= 0 then
635 "directory tree rooted
at """ &
636 Directory & """ could
not be deleted
";
646 function Exists (Name : String) return Boolean is
648 -- First, the invalid case
650 if not Is_Valid_Path_Name (Name) then
651 raise Name_Error with "invalid path name
""" & Name & '"';
654 -- The implementation is in File_Exists
656 return File_Exists (Name);
664 function Extension (Name : String) return String is
666 -- First, the invalid case
668 if not Is_Valid_Path_Name (Name) then
669 raise Name_Error with "invalid path name """ & Name & '"';
672 -- Look for first dot that is not followed by a directory separator
674 for Pos in reverse Name'Range loop
676 -- If a directory separator is found before a dot, there is no
679 if Is_In (Name (Pos), Dir_Seps) then
682 elsif Name (Pos) = '.' then
684 -- We found a dot, build the return value with lower bound 1
687 subtype Result_Type is String (1 .. Name'Last - Pos);
689 return Result_Type (Name (Pos + 1 .. Name'Last));
694 -- No dot were found, there is no extension
700 ----------------------
701 -- Fetch_Next_Entry --
702 ----------------------
704 procedure Fetch_Next_Entry (Search : Search_Type) is
705 Name : String (1 .. 255);
708 Kind : File_Kind := Ordinary_File;
709 -- Initialized to avoid a compilation warning
711 Filename_Addr : Address;
712 Filename_Len : aliased Integer;
714 Buffer : array (0 .. Filename_Max + 12) of Character;
715 -- 12 is the size of the dirent structure (see dirent.h), without the
716 -- field for the filename.
718 function readdir_gnat
719 (Directory : Address;
721 Last : not null access Integer) return Address;
722 pragma Import (C, readdir_gnat, "__gnat_readdir
");
725 -- Search.Value.Is_Valid is always True when Fetch_Next_Entry is called
730 (Address (Search.Value.Dir),
732 Filename_Len'Access);
734 -- If no matching entry is found, set Is_Valid to False
736 if Filename_Addr = Null_Address then
737 Search.Value.Is_Valid := False;
742 subtype Path_String is String (1 .. Filename_Len);
743 type Path_String_Access is access Path_String;
745 function Address_To_Access is new
746 Ada.Unchecked_Conversion
748 Target => Path_String_Access);
750 Path_Access : constant Path_String_Access :=
751 Address_To_Access (Filename_Addr);
754 Last := Filename_Len;
755 Name (1 .. Last) := Path_Access.all;
758 -- Check if the entry matches the pattern
760 if Match (Name (1 .. Last), Search.Value.Pattern) then
762 Full_Name : constant String :=
765 (Search.Value.Name), Name (1 .. Last));
766 Found : Boolean := False;
769 if File_Exists (Full_Name) then
771 -- Now check if the file kind matches the filter
773 if Is_Regular_File (Full_Name) then
774 if Search.Value.Filter (Ordinary_File) then
775 Kind := Ordinary_File;
779 elsif Is_Directory (Full_Name) then
780 if Search.Value.Filter (Directory) then
785 elsif Search.Value.Filter (Special_File) then
786 Kind := Special_File;
790 -- If it does, update Search and return
793 Search.Value.Entry_Fetched := True;
794 Search.Value.Dir_Entry :=
796 Simple => To_Unbounded_String (Name (1 .. Last)),
797 Full => To_Unbounded_String (Full_Name),
805 end Fetch_Next_Entry;
811 function File_Exists (Name : String) return Boolean is
812 function C_File_Exists (A : Address) return Integer;
813 pragma Import (C, C_File_Exists, "__gnat_file_exists
");
815 C_Name : String (1 .. Name'Length + 1);
818 C_Name (1 .. Name'Length) := Name;
819 C_Name (C_Name'Last) := ASCII.NUL;
820 return C_File_Exists (C_Name (1)'Address) = 1;
827 procedure Finalize (Search : in out Search_Type) is
829 if Search.Value /= null then
831 -- Close the directory, if one is open
833 if Search.Value.Dir /= No_Dir then
834 Close (Search.Value.Dir);
845 function Full_Name (Name : String) return String is
847 -- First, the invalid case
849 if not Is_Valid_Path_Name (Name) then
850 raise Name_Error with "invalid path name
""" & Name & '"';
853 -- Build the return value with lower bound 1
855 -- Use System.OS_Lib.Normalize_Pathname
858 -- We need to resolve links because of A.16(47), since we must not
859 -- return alternative names for files.
861 Value : constant String := Normalize_Pathname (Name);
862 subtype Result is String (1 .. Value'Length);
865 return Result (Value);
870 function Full_Name (Directory_Entry : Directory_Entry_Type) return String is
872 -- First, the invalid case
874 if not Directory_Entry.Is_Valid then
875 raise Status_Error with "invalid directory entry";
878 -- The value to return has already been computed
880 return To_String (Directory_Entry.Full);
888 procedure Get_Next_Entry
889 (Search : in out Search_Type;
890 Directory_Entry : out Directory_Entry_Type)
893 -- First, the invalid case
895 if Search.Value = null or else not Search.Value.Is_Valid then
896 raise Status_Error with "invalid search";
899 -- Fetch the next entry, if needed
901 if not Search.Value.Entry_Fetched then
902 Fetch_Next_Entry (Search);
905 -- It is an error if no valid entry is found
907 if not Search.Value.Is_Valid then
908 raise Status_Error with "no next entry";
911 -- Reset Entry_Fetched and return the entry
913 Search.Value.Entry_Fetched := False;
914 Directory_Entry := Search.Value.Dir_Entry;
922 function Kind (Name : String) return File_Kind is
924 -- First, the invalid case
926 if not File_Exists (Name) then
927 raise Name_Error with "file """ & Name & """ does not exist";
929 elsif Is_Regular_File (Name) then
930 return Ordinary_File;
932 elsif Is_Directory (Name) then
940 function Kind (Directory_Entry : Directory_Entry_Type) return File_Kind is
942 -- First, the invalid case
944 if not Directory_Entry.Is_Valid then
945 raise Status_Error with "invalid directory entry";
948 -- The value to return has already be computed
950 return Directory_Entry.Kind;
954 -----------------------
955 -- Modification_Time --
956 -----------------------
958 function Modification_Time (Name : String) return Time is
964 Minute : Minute_Type;
965 Second : Second_Type;
969 -- First, the invalid cases
971 if not (Is_Regular_File (Name) or else Is_Directory (Name)) then
972 raise Name_Error with '"' & Name & """ not a file
or directory
";
975 Date := File_Time_Stamp (Name);
977 -- Break down the time stamp into its constituents relative to GMT.
978 -- This version of Split does not recognize leap seconds or buffer
979 -- space for time zone processing.
981 GM_Split (Date, Year, Month, Day, Hour, Minute, Second);
983 -- On OpenVMS, the resulting time value must be in the local time
984 -- zone. Ada.Calendar.Time_Of is exactly what we need. Note that
985 -- in both cases, the sub seconds are set to zero (0.0) because the
986 -- time stamp does not store them in its value.
991 (Year, Month, Day, Seconds_Of (Hour, Minute, Second, 0.0));
993 -- On Unix and Windows, the result must be in GMT. Ada.Calendar.
994 -- Formatting.Time_Of with default time zone of zero (0) is the
995 -- routine of choice.
998 Result := Time_Of (Year, Month, Day, Hour, Minute, Second, 0.0);
1003 end Modification_Time;
1005 function Modification_Time
1006 (Directory_Entry : Directory_Entry_Type) return Ada.Calendar.Time
1009 -- First, the invalid case
1011 if not Directory_Entry.Is_Valid then
1012 raise Status_Error with "invalid directory
entry";
1015 -- The value to return has already be computed
1017 return Modification_Time (To_String (Directory_Entry.Full));
1019 end Modification_Time;
1025 function More_Entries (Search : Search_Type) return Boolean is
1027 if Search.Value = null then
1030 elsif Search.Value.Is_Valid then
1032 -- Fetch the next entry, if needed
1034 if not Search.Value.Entry_Fetched then
1035 Fetch_Next_Entry (Search);
1039 return Search.Value.Is_Valid;
1046 procedure Rename (Old_Name, New_Name : String) is
1050 -- First, the invalid cases
1052 if not Is_Valid_Path_Name (Old_Name) then
1053 raise Name_Error with "invalid old path name
""" & Old_Name & '"';
1055 elsif not Is_Valid_Path_Name (New_Name) then
1056 raise Name_Error with "invalid new path name """ & New_Name & '"';
1058 elsif not Is_Regular_File (Old_Name)
1059 and then not Is_Directory (Old_Name)
1061 raise Name_Error with "old file
""" & Old_Name & """ does
not exist
";
1063 elsif Is_Regular_File (New_Name) or else Is_Directory (New_Name) then
1064 raise Use_Error with
1065 "new name
""" & New_Name
1066 & """ designates a file that already exists
";
1069 -- Do actual rename using System.OS_Lib.Rename_File
1071 Rename_File (Old_Name, New_Name, Success);
1075 -- AI05-0231-1: Name_Error should be raised in case a directory
1076 -- component of New_Name does not exist (as in New_Name =>
1077 -- "/no
-such
-dir
/new-filename
"). ENOENT indicates that. ENOENT
1078 -- also indicate that the Old_Name does not exist, but we already
1079 -- checked for that above. All other errors are Use_Error.
1081 if Errno = ENOENT then
1082 raise Name_Error with
1083 "file
""" & Containing_Directory (New_Name) & """ not found
";
1086 raise Use_Error with
1087 "file
""" & Old_Name & """ could
not be renamed
";
1098 (Directory : String;
1100 Filter : Filter_Type := (others => True);
1101 Process : not null access procedure
1102 (Directory_Entry : Directory_Entry_Type))
1105 Directory_Entry : Directory_Entry_Type;
1108 Start_Search (Srch, Directory, Pattern, Filter);
1110 while More_Entries (Srch) loop
1111 Get_Next_Entry (Srch, Directory_Entry);
1112 Process (Directory_Entry);
1122 procedure Set_Directory (Directory : String) is
1123 C_Dir_Name : constant String := Directory & ASCII.NUL;
1125 if not Is_Valid_Path_Name (Directory) then
1126 raise Name_Error with
1127 "invalid directory path name
& """ & Directory & '"';
1129 elsif not Is_Directory (Directory) then
1130 raise Name_Error with
1131 "directory """ & Directory & """ does not exist";
1133 elsif chdir (C_Dir_Name) /= 0 then
1134 raise Name_Error with
1135 "could not set to designated directory """ & Directory & '"';
1143 function Simple_Name (Name : String) return String is
1145 function Simple_Name_Internal (Path : String) return String;
1146 -- This function does the job
1148 --------------------------
1149 -- Simple_Name_Internal --
1150 --------------------------
1152 function Simple_Name_Internal (Path : String) return String is
1153 Cut_Start : Natural :=
1155 (Path, Dir_Seps, Going => Strings.Backward);
1159 -- Cut_Start pointS to the first simple name character
1161 Cut_Start := (if Cut_Start = 0 then Path'First else Cut_Start + 1);
1163 -- Cut_End point to the last simple name character
1165 Cut_End := Path'Last;
1167 Check_For_Standard_Dirs : declare
1168 BN : constant String := Path (Cut_Start .. Cut_End);
1170 Has_Drive_Letter : constant Boolean :=
1171 OS_Lib.Path_Separator /= ':';
1172 -- If Path separator is not ':' then we are on a DOS based OS
1173 -- where this character is used as a drive letter separator.
1176 if BN = "." or else BN = ".." then
1179 elsif Has_Drive_Letter
1180 and then BN'Length > 2
1181 and then Characters.Handling.Is_Letter (BN (BN'First))
1182 and then BN (BN'First + 1) = ':'
1184 -- We have a DOS drive letter prefix, remove it
1186 return BN (BN'First + 2 .. BN'Last);
1191 end Check_For_Standard_Dirs;
1192 end Simple_Name_Internal;
1194 -- Start of processing for Simple_Name
1197 -- First, the invalid case
1199 if not Is_Valid_Path_Name (Name) then
1200 raise Name_Error with "invalid path name
""" & Name & '"';
1203 -- Build the value to return with lower bound 1
1206 Value : constant String := Simple_Name_Internal (Name);
1207 subtype Result is String (1 .. Value'Length);
1209 return Result (Value);
1214 function Simple_Name
1215 (Directory_Entry : Directory_Entry_Type) return String is
1217 -- First, the invalid case
1219 if not Directory_Entry.Is_Valid then
1220 raise Status_Error with "invalid directory entry";
1223 -- The value to return has already be computed
1225 return To_String (Directory_Entry.Simple);
1233 function Size (Name : String) return File_Size is
1234 C_Name : String (1 .. Name'Length + 1);
1236 function C_Size (Name : Address) return Long_Integer;
1237 pragma Import (C, C_Size, "__gnat_named_file_length");
1240 -- First, the invalid case
1242 if not Is_Regular_File (Name) then
1243 raise Name_Error with "file """ & Name & """ does not exist";
1246 C_Name (1 .. Name'Length) := Name;
1247 C_Name (C_Name'Last) := ASCII.NUL;
1248 return File_Size (C_Size (C_Name'Address));
1252 function Size (Directory_Entry : Directory_Entry_Type) return File_Size is
1254 -- First, the invalid case
1256 if not Directory_Entry.Is_Valid then
1257 raise Status_Error with "invalid directory entry";
1260 -- The value to return has already be computed
1262 return Size (To_String (Directory_Entry.Full));
1270 procedure Start_Search
1271 (Search : in out Search_Type;
1274 Filter : Filter_Type := (others => True))
1276 function opendir (file_name : String) return DIRs;
1277 pragma Import (C, opendir, "__gnat_opendir");
1279 C_File_Name : constant String := Directory & ASCII.NUL;
1281 Dir : Dir_Type_Value;
1284 -- First, the invalid case Name_Error
1286 if not Is_Directory (Directory) then
1287 raise Name_Error with
1288 "unknown directory """ & Simple_Name (Directory) & '"';
1291 -- Check the pattern
1297 Case_Sensitive => Is_Path_Name_Case_Sensitive);
1299 when Error_In_Regexp =>
1300 Free (Search.Value);
1301 raise Name_Error with "invalid pattern
""" & Pattern & '"';
1304 Dir := Dir_Type_Value (opendir (C_File_Name));
1306 if Dir = No_Dir then
1307 raise Use_Error with
1308 "unreadable directory """ & Simple_Name (Directory) & '"';
1311 -- If needed, finalize Search
1315 -- Allocate the default data
1317 Search.Value := new Search_Data;
1319 -- Initialize some Search components
1321 Search.Value.Filter := Filter;
1322 Search.Value.Name := To_Unbounded_String (Full_Name (Directory));
1323 Search.Value.Pattern := Pat;
1324 Search.Value.Dir := Dir;
1325 Search.Value.Is_Valid := True;
1328 end Ada.Directories;