a-direct.adb 45.1 KB
Newer Older
Arnaud Charlet committed
1 2 3 4 5 6 7 8
------------------------------------------------------------------------------
--                                                                          --
--                         GNAT RUN-TIME COMPONENTS                         --
--                                                                          --
--                      A D A . D I R E C T O R I E S                       --
--                                                                          --
--                                 B o d y                                  --
--                                                                          --
9
--          Copyright (C) 2004-2019, Free Software Foundation, Inc.         --
Arnaud Charlet committed
10 11 12
--                                                                          --
-- GNAT is free software;  you can  redistribute it  and/or modify it under --
-- 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- --
Arnaud Charlet committed
14 15
-- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
16 17 18 19 20 21 22 23 24 25
-- or FITNESS FOR A PARTICULAR PURPOSE.                                     --
--                                                                          --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception,   --
-- version 3.1, as published by the Free Software Foundation.               --
--                                                                          --
-- You should have received a copy of the GNU General Public License and    --
-- a copy of the GCC Runtime Library Exception along with this program;     --
-- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
-- <http://www.gnu.org/licenses/>.                                          --
Arnaud Charlet committed
26 27 28 29 30 31
--                                                                          --
-- GNAT was originally developed  by the GNAT team at  New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc.      --
--                                                                          --
------------------------------------------------------------------------------

32 33
with Ada.Calendar;               use Ada.Calendar;
with Ada.Calendar.Formatting;    use Ada.Calendar.Formatting;
Arnaud Charlet committed
34
with Ada.Characters.Handling;    use Ada.Characters.Handling;
35
with Ada.Directories.Validity;   use Ada.Directories.Validity;
36 37
with Ada.Directories.Hierarchical_File_Names;
use Ada.Directories.Hierarchical_File_Names;
38
with Ada.Strings.Fixed;
Arnaud Charlet committed
39
with Ada.Strings.Maps;           use Ada.Strings.Maps;
40
with Ada.Strings.Unbounded;      use Ada.Strings.Unbounded;
Arnaud Charlet committed
41 42
with Ada.Unchecked_Deallocation;

43 44
with Interfaces.C;

Arnaud Charlet committed
45 46 47 48 49 50 51
with System;                 use System;
with System.CRTL;            use System.CRTL;
with System.File_Attributes; use System.File_Attributes;
with System.File_IO;         use System.File_IO;
with System.OS_Constants;    use System.OS_Constants;
with System.OS_Lib;          use System.OS_Lib;
with System.Regexp;          use System.Regexp;
Arnaud Charlet committed
52 53 54

package body Ada.Directories is

Arnaud Charlet committed
55
   type Dir_Type_Value is new Address;
56 57 58
   --  This is the low-level address directory structure as returned by the C
   --  opendir routine.

Arnaud Charlet committed
59
   No_Dir : constant Dir_Type_Value := Dir_Type_Value (Null_Address);
Arnaud Charlet committed
60
   --  Null directory value
61 62 63 64 65

   Dir_Separator : constant Character;
   pragma Import (C, Dir_Separator, "__gnat_dir_separator");
   --  Running system default directory separator

Arnaud Charlet committed
66
   Dir_Seps : constant Character_Set := Strings.Maps.To_Set ("/\");
67 68 69 70 71 72
   --  UNIX and DOS style directory separators

   Max_Path : Integer;
   pragma Import (C, Max_Path, "__gnat_max_path_len");
   --  The maximum length of a path

Arnaud Charlet committed
73
   type Search_Data is record
Arnaud Charlet committed
74
      Is_Valid      : Boolean := False;
75
      Name          : Unbounded_String;
Arnaud Charlet committed
76 77
      Pattern       : Regexp;
      Filter        : Filter_Type;
78
      Dir           : Dir_Type_Value := No_Dir;
Arnaud Charlet committed
79 80 81
      Entry_Fetched : Boolean := False;
      Dir_Entry     : Directory_Entry_Type;
   end record;
82
   --  The current state of a search
Arnaud Charlet committed
83 84

   Empty_String : constant String := (1 .. 0 => ASCII.NUL);
85
   --  Empty string, returned by function Extension when there is no extension
Arnaud Charlet committed
86 87 88

   procedure Free is new Ada.Unchecked_Deallocation (Search_Data, Search_Ptr);

89 90
   procedure Close (Dir : Dir_Type_Value);

Arnaud Charlet committed
91
   function File_Exists (Name : String) return Boolean;
92
   --  Returns True if the named file exists
Arnaud Charlet committed
93 94 95 96 97

   procedure Fetch_Next_Entry (Search : Search_Type);
   --  Get the next entry in a directory, setting Entry_Fetched if successful
   --  or resetting Is_Valid if not.

98 99 100 101 102 103 104 105 106 107
   procedure Start_Search_Internal
     (Search                 : in out Search_Type;
      Directory              : String;
      Pattern                : String;
      Filter                 : Filter_Type := (others => True);
      Force_Case_Insensitive : Boolean);
   --  Similar to Start_Search except we can force a search to be
   --  case-insensitive, which is important for detecting the name-case
   --  equivalence for a given directory.

Arnaud Charlet committed
108 109 110 111 112
   ---------------
   -- Base_Name --
   ---------------

   function Base_Name (Name : String) return String is
Arnaud Charlet committed
113
      Simple : constant String := Simple_Name (Name);
Arnaud Charlet committed
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
      --  Simple'First is guaranteed to be 1

   begin
      --  Look for the last dot in the file name and return the part of the
      --  file name preceding this last dot. If the first dot is the first
      --  character of the file name, the base name is the empty string.

      for Pos in reverse Simple'Range loop
         if Simple (Pos) = '.' then
            return Simple (1 .. Pos - 1);
         end if;
      end loop;

      --  If there is no dot, return the complete file name

      return Simple;
   end Base_Name;

132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
   -----------
   -- Close --
   -----------

   procedure Close (Dir : Dir_Type_Value) is
      Discard : Integer;
      pragma Warnings (Off, Discard);

      function closedir (directory : DIRs) return Integer;
      pragma Import (C, closedir, "__gnat_closedir");

   begin
      Discard := closedir (DIRs (Dir));
   end Close;

Arnaud Charlet committed
147 148 149 150 151 152 153 154 155
   -------------
   -- Compose --
   -------------

   function Compose
     (Containing_Directory : String := "";
      Name                 : String;
      Extension            : String := "") return String
   is
Arnaud Charlet committed
156 157
      Result : String (1 .. Containing_Directory'Length +
                              Name'Length + Extension'Length + 2);
Arnaud Charlet committed
158 159 160 161 162
      Last   : Natural;

   begin
      --  First, deal with the invalid cases

163 164 165
      if Containing_Directory /= ""
        and then not Is_Valid_Path_Name (Containing_Directory)
      then
166 167
         raise Name_Error with
           "invalid directory path name """ & Containing_Directory & '"';
Arnaud Charlet committed
168 169 170 171

      elsif
        Extension'Length = 0 and then (not Is_Valid_Simple_Name (Name))
      then
172 173
         raise Name_Error with
           "invalid simple name """ & Name & '"';
Arnaud Charlet committed
174

175 176
      elsif Extension'Length /= 0
        and then not Is_Valid_Simple_Name (Name & '.' & Extension)
Arnaud Charlet committed
177
      then
178 179
         raise Name_Error with
           "invalid file name """ & Name & '.' & Extension & '"';
Arnaud Charlet committed
180

181
      --  This is not an invalid case so build the path name
Arnaud Charlet committed
182 183 184 185 186 187 188

      else
         Last := Containing_Directory'Length;
         Result (1 .. Last) := Containing_Directory;

         --  Add a directory separator if needed

Arnaud Charlet committed
189
         if Last /= 0 and then not Is_In (Result (Last), Dir_Seps) then
Arnaud Charlet committed
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
            Last := Last + 1;
            Result (Last) := Dir_Separator;
         end if;

         --  Add the file name

         Result (Last + 1 .. Last + Name'Length) := Name;
         Last := Last + Name'Length;

         --  If extension was specified, add dot followed by this extension

         if Extension'Length /= 0 then
            Last := Last + 1;
            Result (Last) := '.';
            Result (Last + 1 .. Last + Extension'Length) := Extension;
            Last := Last + Extension'Length;
         end if;

         return Result (1 .. Last);
      end if;
   end Compose;

   --------------------------
   -- Containing_Directory --
   --------------------------

   function Containing_Directory (Name : String) return String is
   begin
      --  First, the invalid case

      if not Is_Valid_Path_Name (Name) then
221
         raise Name_Error with "invalid path name """ & Name & '"';
Arnaud Charlet committed
222 223 224

      else
         declare
225
            Last_DS : constant Natural :=
226
              Strings.Fixed.Index (Name, Dir_Seps, Going => Strings.Backward);
Arnaud Charlet committed
227 228

         begin
229 230 231
            --  If Name indicates a root directory, raise Use_Error, because
            --  it has no containing directory.

232 233 234
            if Is_Parent_Directory_Name (Name)
              or else Is_Current_Directory_Name (Name)
              or else Is_Root_Directory_Name (Name)
235
            then
236 237
               raise Use_Error with
                 "directory """ & Name & """ has no containing directory";
238

239 240 241 242 243 244
            elsif Last_DS = 0 then
               --  There is no directory separator, so return ".", representing
               --  the current working directory.

               return ".";

245 246 247 248
            else
               declare
                  Last   : Positive := Last_DS - Name'First + 1;
                  Result : String (1 .. Last);
Arnaud Charlet committed
249

250 251
               begin
                  Result := Name (Name'First .. Last_DS);
Arnaud Charlet committed
252

253 254 255
                  --  Remove any trailing directory separator, except as the
                  --  first character or the first character following a drive
                  --  number on Windows.
Arnaud Charlet committed
256

257
                  while Last > 1 loop
258 259 260
                     exit when Is_Root_Directory_Name (Result (1 .. Last))
                                 or else (Result (Last) /= Directory_Separator
                                           and then Result (Last) /= '/');
Arnaud Charlet committed
261

262 263 264
                     Last := Last - 1;
                  end loop;

265
                  return Result (1 .. Last);
266
               end;
Arnaud Charlet committed
267 268 269 270 271 272 273 274 275 276
            end if;
         end;
      end if;
   end Containing_Directory;

   ---------------
   -- Copy_File --
   ---------------

   procedure Copy_File
277 278 279
     (Source_Name : String;
      Target_Name : String;
      Form        : String := "")
Arnaud Charlet committed
280
   is
Arnaud Charlet committed
281
      Success  : Boolean;
Arnaud Charlet committed
282 283 284
      Mode     : Copy_Mode := Overwrite;
      Preserve : Attribute := None;

Arnaud Charlet committed
285 286 287
   begin
      --  First, the invalid cases

288 289 290 291 292 293 294 295 296 297
      if not Is_Valid_Path_Name (Source_Name) then
         raise Name_Error with
           "invalid source path name """ & Source_Name & '"';

      elsif not Is_Valid_Path_Name (Target_Name) then
         raise Name_Error with
           "invalid target path name """ & Target_Name & '"';

      elsif not Is_Regular_File (Source_Name) then
         raise Name_Error with '"' & Source_Name & """ is not a file";
Arnaud Charlet committed
298 299

      elsif Is_Directory (Target_Name) then
300
         raise Use_Error with "target """ & Target_Name & """ is a directory";
Arnaud Charlet committed
301 302

      else
Arnaud Charlet committed
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
         if Form'Length > 0 then
            declare
               Formstr : String (1 .. Form'Length + 1);
               V1, V2  : Natural;

            begin
               --  Acquire form string, setting required NUL terminator

               Formstr (1 .. Form'Length) := Form;
               Formstr (Formstr'Last) := ASCII.NUL;

               --  Convert form string to lower case

               for J in Formstr'Range loop
                  if Formstr (J) in 'A' .. 'Z' then
                     Formstr (J) :=
                       Character'Val (Character'Pos (Formstr (J)) + 32);
                  end if;
               end loop;

               --  Check Form

               Form_Parameter (Formstr, "mode", V1, V2);

               if V1 = 0 then
                  Mode := Overwrite;
               elsif Formstr (V1 .. V2) = "copy" then
                  Mode := Copy;
               elsif Formstr (V1 .. V2) = "overwrite" then
                  Mode := Overwrite;
               elsif Formstr (V1 .. V2) = "append" then
                  Mode := Append;
               else
                  raise Use_Error with "invalid Form";
               end if;

               Form_Parameter (Formstr, "preserve", V1, V2);

               if V1 = 0 then
                  Preserve := None;
               elsif Formstr (V1 .. V2) = "timestamps" then
                  Preserve := Time_Stamps;
               elsif Formstr (V1 .. V2) = "all_attributes" then
                  Preserve := Full;
               elsif Formstr (V1 .. V2) = "no_attributes" then
                  Preserve := None;
               else
                  raise Use_Error with "invalid Form";
               end if;
            end;
         end if;

Arnaud Charlet committed
355
         --  Do actual copy using System.OS_Lib.Copy_File
Arnaud Charlet committed
356

Arnaud Charlet committed
357
         Copy_File (Source_Name, Target_Name, Success, Mode, Preserve);
Arnaud Charlet committed
358 359

         if not Success then
360
            raise Use_Error with "copy of """ & Source_Name & """ failed";
Arnaud Charlet committed
361 362 363 364 365 366 367 368 369 370 371 372
         end if;
      end if;
   end Copy_File;

   ----------------------
   -- Create_Directory --
   ----------------------

   procedure Create_Directory
     (New_Directory : String;
      Form          : String := "")
   is
373 374
      C_Dir_Name : constant String := New_Directory & ASCII.NUL;

Arnaud Charlet committed
375 376 377 378
   begin
      --  First, the invalid case

      if not Is_Valid_Path_Name (New_Directory) then
379 380
         raise Name_Error with
           "invalid new directory path name """ & New_Directory & '"';
Arnaud Charlet committed
381 382

      else
383 384 385
         --  Acquire setting of encoding parameter

         declare
Arnaud Charlet committed
386
            Formstr : constant String := To_Lower (Form);
387 388 389 390

            Encoding : CRTL.Filename_Encoding;
            --  Filename encoding specified into the form parameter

Arnaud Charlet committed
391
            V1, V2 : Natural;
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410

         begin
            Form_Parameter (Formstr, "encoding", V1, V2);

            if V1 = 0 then
               Encoding := CRTL.Unspecified;
            elsif Formstr (V1 .. V2) = "utf8" then
               Encoding := CRTL.UTF8;
            elsif Formstr (V1 .. V2) = "8bits" then
               Encoding := CRTL.ASCII_8bits;
            else
               raise Use_Error with "invalid Form";
            end if;

            if CRTL.mkdir (C_Dir_Name, Encoding) /= 0 then
               raise Use_Error with
                 "creation of new directory """ & New_Directory & """ failed";
            end if;
         end;
Arnaud Charlet committed
411 412 413 414 415 416 417 418 419 420 421 422 423
      end if;
   end Create_Directory;

   -----------------
   -- Create_Path --
   -----------------

   procedure Create_Path
     (New_Directory : String;
      Form          : String := "")
   is
      New_Dir : String (1 .. New_Directory'Length + 1);
      Last    : Positive := 1;
Arnaud Charlet committed
424
      Start   : Positive := 1;
Arnaud Charlet committed
425 426 427 428 429

   begin
      --  First, the invalid case

      if not Is_Valid_Path_Name (New_Directory) then
430 431
         raise Name_Error with
           "invalid new directory path name """ & New_Directory & '"';
Arnaud Charlet committed
432 433 434 435 436 437 438 439

      else
         --  Build New_Dir with a directory separator at the end, so that the
         --  complete path will be found in the loop below.

         New_Dir (1 .. New_Directory'Length) := New_Directory;
         New_Dir (New_Dir'Last) := Directory_Separator;

Arnaud Charlet committed
440 441 442
         --  If host is windows, and the first two characters are directory
         --  separators, we have an UNC path. Skip it.

Arnaud Charlet committed
443 444 445 446 447 448 449 450 451 452 453 454 455
         if Directory_Separator = '\'
           and then New_Dir'Length > 2
           and then Is_In (New_Dir (1), Dir_Seps)
           and then Is_In (New_Dir (2), Dir_Seps)
         then
            Start := 2;
            loop
               Start := Start + 1;
               exit when Start = New_Dir'Last
                 or else Is_In (New_Dir (Start), Dir_Seps);
            end loop;
         end if;

Arnaud Charlet committed
456 457
         --  Create, if necessary, each directory in the path

Arnaud Charlet committed
458
         for J in Start + 1 .. New_Dir'Last loop
Arnaud Charlet committed
459 460 461

            --  Look for the end of an intermediate directory

Arnaud Charlet committed
462
            if not Is_In (New_Dir (J), Dir_Seps) then
Arnaud Charlet committed
463 464 465 466 467
               Last := J;

            --  We have found a new intermediate directory each time we find
            --  a first directory separator.

Arnaud Charlet committed
468
            elsif not Is_In (New_Dir (J - 1), Dir_Seps) then
Arnaud Charlet committed
469 470 471

               --  No need to create the directory if it already exists

Arnaud Charlet committed
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
               if not Is_Directory (New_Dir (1 .. Last)) then
                  begin
                     Create_Directory
                       (New_Directory => New_Dir (1 .. Last), Form => Form);

                  exception
                     when Use_Error =>
                        if File_Exists (New_Dir (1 .. Last)) then

                           --  A file with such a name already exists. If it is
                           --  a directory, then it was apparently just created
                           --  by another process or thread, and all is well.
                           --  If it is of some other kind, report an error.

                           if not Is_Directory (New_Dir (1 .. Last)) then
                              raise Use_Error with
                                "file """ & New_Dir (1 .. Last) &
                                  """ already exists and is not a directory";
                           end if;

                        else
                           --  Create_Directory failed for some other reason:
                           --  propagate the exception.

                           raise;
                        end if;
                  end;
Arnaud Charlet committed
499 500 501 502 503 504 505 506 507 508 509
               end if;
            end if;
         end loop;
      end if;
   end Create_Path;

   -----------------------
   -- Current_Directory --
   -----------------------

   function Current_Directory return String is
510 511
      Path_Len : Natural := Max_Path;
      Buffer   : String (1 .. 1 + Max_Path + 1);
Arnaud Charlet committed
512

Arnaud Charlet committed
513
      procedure Local_Get_Current_Dir (Dir : Address; Length : Address);
514
      pragma Import (C, Local_Get_Current_Dir, "__gnat_get_current_dir");
Arnaud Charlet committed
515 516

   begin
517
      Local_Get_Current_Dir (Buffer'Address, Path_Len'Address);
518

Arnaud Charlet committed
519 520 521 522
      if Path_Len = 0 then
         raise Use_Error with "current directory does not exist";
      end if;

Arnaud Charlet committed
523 524
      --  We need to resolve links because of RM A.16(47), which requires
      --  that we not return alternative names for files.
525

Arnaud Charlet committed
526
      return Normalize_Pathname (Buffer (1 .. Path_Len));
Arnaud Charlet committed
527 528 529 530 531 532 533 534
   end Current_Directory;

   ----------------------
   -- Delete_Directory --
   ----------------------

   procedure Delete_Directory (Directory : String) is
   begin
Arnaud Charlet committed
535
      --  First, the invalid cases
Arnaud Charlet committed
536 537

      if not Is_Valid_Path_Name (Directory) then
538 539
         raise Name_Error with
           "invalid directory path name """ & Directory & '"';
Arnaud Charlet committed
540

Arnaud Charlet committed
541
      elsif not Is_Directory (Directory) then
542
         raise Name_Error with '"' & Directory & """ not a directory";
Arnaud Charlet committed
543

Arnaud Charlet committed
544 545
      --  Do the deletion, checking for error

Arnaud Charlet committed
546
      else
547 548
         declare
            C_Dir_Name : constant String := Directory & ASCII.NUL;
Arnaud Charlet committed
549
         begin
550
            if rmdir (C_Dir_Name) /= 0 then
551 552
               raise Use_Error with
                 "deletion of directory """ & Directory & """ failed";
553
            end if;
Arnaud Charlet committed
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
         end;
      end if;
   end Delete_Directory;

   -----------------
   -- Delete_File --
   -----------------

   procedure Delete_File (Name : String) is
      Success : Boolean;

   begin
      --  First, the invalid cases

      if not Is_Valid_Path_Name (Name) then
569
         raise Name_Error with "invalid path name """ & Name & '"';
Arnaud Charlet committed
570

Arnaud Charlet committed
571 572 573
      elsif not Is_Regular_File (Name)
        and then not Is_Symbolic_Link (Name)
      then
574
         raise Name_Error with "file """ & Name & """ does not exist";
Arnaud Charlet committed
575 576

      else
Arnaud Charlet committed
577
         --  Do actual deletion using System.OS_Lib.Delete_File
Arnaud Charlet committed
578 579 580 581

         Delete_File (Name, Success);

         if not Success then
582
            raise Use_Error with "file """ & Name & """ could not be deleted";
Arnaud Charlet committed
583 584 585 586 587 588 589 590 591
         end if;
      end if;
   end Delete_File;

   -----------------
   -- Delete_Tree --
   -----------------

   procedure Delete_Tree (Directory : String) is
592 593
      Search      : Search_Type;
      Dir_Ent     : Directory_Entry_Type;
Arnaud Charlet committed
594
   begin
Arnaud Charlet committed
595
      --  First, the invalid cases
Arnaud Charlet committed
596 597

      if not Is_Valid_Path_Name (Directory) then
598 599
         raise Name_Error with
           "invalid directory path name """ & Directory & '"';
Arnaud Charlet committed
600

Arnaud Charlet committed
601
      elsif not Is_Directory (Directory) then
602
         raise Name_Error with '"' & Directory & """ not a directory";
Arnaud Charlet committed
603

Arnaud Charlet committed
604
      else
605

Arnaud Charlet committed
606 607 608 609 610 611 612 613
         --  We used to change the current directory to Directory here,
         --  allowing the use of a local Simple_Name for all references. This
         --  turned out unfriendly to multitasking programs, where tasks
         --  running in parallel of this Delete_Tree could see their current
         --  directory change unpredictably. We now resort to Full_Name
         --  computations to reach files and subdirs instead.

         Start_Search (Search, Directory => Directory, Pattern => "");
614 615 616 617
         while More_Entries (Search) loop
            Get_Next_Entry (Search, Dir_Ent);

            declare
Arnaud Charlet committed
618
               Fname : constant String := Full_Name   (Dir_Ent);
Arnaud Charlet committed
619
               Sname : constant String := Simple_Name (Dir_Ent);
Arnaud Charlet committed
620

621
            begin
Arnaud Charlet committed
622 623 624
               if OS_Lib.Is_Directory (Fname) then
                  if Sname /= "." and then Sname /= ".." then
                     Delete_Tree (Fname);
625 626
                  end if;
               else
Arnaud Charlet committed
627
                  Delete_File (Fname);
628 629 630 631 632 633 634 635
               end if;
            end;
         end loop;

         End_Search (Search);

         declare
            C_Dir_Name : constant String := Directory & ASCII.NUL;
Arnaud Charlet committed
636 637

         begin
638
            if rmdir (C_Dir_Name) /= 0 then
639 640 641
               raise Use_Error with
                 "directory tree rooted at """ &
                   Directory & """ could not be deleted";
642
            end if;
Arnaud Charlet committed
643 644 645 646 647 648 649 650 651 652 653 654 655
         end;
      end if;
   end Delete_Tree;

   ------------
   -- Exists --
   ------------

   function Exists (Name : String) return Boolean is
   begin
      --  First, the invalid case

      if not Is_Valid_Path_Name (Name) then
656
         raise Name_Error with "invalid path name """ & Name & '"';
Arnaud Charlet committed
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673

      else
         --  The implementation is in File_Exists

         return File_Exists (Name);
      end if;
   end Exists;

   ---------------
   -- Extension --
   ---------------

   function Extension (Name : String) return String is
   begin
      --  First, the invalid case

      if not Is_Valid_Path_Name (Name) then
674
         raise Name_Error with "invalid path name """ & Name & '"';
Arnaud Charlet committed
675 676

      else
Arnaud Charlet committed
677
         --  Look for first dot that is not followed by a directory separator
Arnaud Charlet committed
678 679 680

         for Pos in reverse Name'Range loop

681 682
            --  If a directory separator is found before a dot, there is no
            --  extension.
Arnaud Charlet committed
683

Arnaud Charlet committed
684
            if Is_In (Name (Pos), Dir_Seps) then
Arnaud Charlet committed
685 686 687 688 689 690 691
               return Empty_String;

            elsif Name (Pos) = '.' then

               --  We found a dot, build the return value with lower bound 1

               declare
692
                  subtype Result_Type is String (1 .. Name'Last - Pos);
Arnaud Charlet committed
693
               begin
694
                  return Result_Type (Name (Pos + 1 .. Name'Last));
Arnaud Charlet committed
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
               end;
            end if;
         end loop;

         --  No dot were found, there is no extension

         return Empty_String;
      end if;
   end Extension;

   ----------------------
   -- Fetch_Next_Entry --
   ----------------------

   procedure Fetch_Next_Entry (Search : Search_Type) is
Arnaud Charlet committed
710
      Name : String (1 .. NAME_MAX);
Arnaud Charlet committed
711
      Last : Natural;
Arnaud Charlet committed
712 713 714

      Kind : File_Kind := Ordinary_File;
      --  Initialized to avoid a compilation warning
Arnaud Charlet committed
715

Arnaud Charlet committed
716
      Filename_Addr : Address;
717 718
      Filename_Len  : aliased Integer;

Arnaud Charlet committed
719
      Buffer : array (1 .. SIZEOF_struct_dirent_alloc) of Character;
720 721

      function readdir_gnat
Arnaud Charlet committed
722 723 724
        (Directory : Address;
         Buffer    : Address;
         Last      : not null access Integer) return Address;
725 726
      pragma Import (C, readdir_gnat, "__gnat_readdir");

Arnaud Charlet committed
727 728 729 730
   begin
      --  Search.Value.Is_Valid is always True when Fetch_Next_Entry is called

      loop
731 732
         Filename_Addr :=
           readdir_gnat
Arnaud Charlet committed
733
             (Address (Search.Value.Dir),
734 735
              Buffer'Address,
              Filename_Len'Access);
Arnaud Charlet committed
736 737 738

         --  If no matching entry is found, set Is_Valid to False

Arnaud Charlet committed
739
         if Filename_Addr = Null_Address then
Arnaud Charlet committed
740 741 742 743
            Search.Value.Is_Valid := False;
            exit;
         end if;

Arnaud Charlet committed
744 745 746
         if Filename_Len > Name'Length then
            raise Use_Error with "file name too long";
         end if;
747

Arnaud Charlet committed
748 749 750 751 752
         declare
            subtype Name_String is String (1 .. Filename_Len);
            Dent_Name : Name_String;
            for Dent_Name'Address use Filename_Addr;
            pragma Import (Ada, Dent_Name);
753 754 755

         begin
            Last := Filename_Len;
Arnaud Charlet committed
756
            Name (1 .. Last) := Dent_Name;
757 758
         end;

Arnaud Charlet committed
759 760 761 762
         --  Check if the entry matches the pattern

         if Match (Name (1 .. Last), Search.Value.Pattern) then
            declare
Arnaud Charlet committed
763
               C_Full_Name : constant String :=
Arnaud Charlet committed
764 765 766 767 768
                               Compose (To_String (Search.Value.Name),
                                        Name (1 .. Last)) & ASCII.NUL;
               Full_Name   : String renames
                               C_Full_Name
                                 (C_Full_Name'First .. C_Full_Name'Last - 1);
Arnaud Charlet committed
769 770 771 772
               Found       : Boolean := False;
               Attr        : aliased File_Attributes;
               Exists      : Integer;
               Error       : Integer;
Arnaud Charlet committed
773 774

            begin
Arnaud Charlet committed
775 776 777 778 779 780 781 782 783 784
               Reset_Attributes (Attr'Access);
               Exists := File_Exists_Attr (C_Full_Name'Address, Attr'Access);
               Error  := Error_Attributes (Attr'Access);

               if Error /= 0 then
                  raise Use_Error
                    with Full_Name & ": " & Errno_Message (Err => Error);
               end if;

               if Exists = 1 then
785 786 787 788 789 790 791 792 793 794 795 796 797 798
                  --  Ignore special directories "." and ".."

                  if (Full_Name'Length > 1
                       and then
                         Full_Name
                            (Full_Name'Last - 1 .. Full_Name'Last) = "\.")
                    or else
                     (Full_Name'Length > 2
                        and then
                          Full_Name
                            (Full_Name'Last - 2 .. Full_Name'Last) = "\..")
                  then
                     Exists := 0;
                  end if;
Arnaud Charlet committed
799 800 801

                  --  Now check if the file kind matches the filter

Arnaud Charlet committed
802 803 804
                  if Is_Regular_File_Attr
                       (C_Full_Name'Address, Attr'Access) = 1
                  then
Arnaud Charlet committed
805 806 807 808 809
                     if Search.Value.Filter (Ordinary_File) then
                        Kind := Ordinary_File;
                        Found := True;
                     end if;

Arnaud Charlet committed
810 811 812
                  elsif Is_Directory_Attr
                          (C_Full_Name'Address, Attr'Access) = 1
                  then
Arnaud Charlet committed
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
                     if Search.Value.Filter (Directory) then
                        Kind := Directory;
                        Found := True;
                     end if;

                  elsif Search.Value.Filter (Special_File) then
                     Kind := Special_File;
                     Found := True;
                  end if;

                  --  If it does, update Search and return

                  if Found then
                     Search.Value.Entry_Fetched := True;
                     Search.Value.Dir_Entry :=
                       (Is_Valid => True,
                        Simple   => To_Unbounded_String (Name (1 .. Last)),
                        Full     => To_Unbounded_String (Full_Name),
                        Kind     => Kind);
                     exit;
                  end if;
               end if;
            end;
         end if;
      end loop;
   end Fetch_Next_Entry;

   -----------------
   -- File_Exists --
   -----------------

   function File_Exists (Name : String) return Boolean is
Arnaud Charlet committed
845
      function C_File_Exists (A : Address) return Integer;
Arnaud Charlet committed
846 847 848 849 850 851 852
      pragma Import (C, C_File_Exists, "__gnat_file_exists");

      C_Name : String (1 .. Name'Length + 1);

   begin
      C_Name (1 .. Name'Length) := Name;
      C_Name (C_Name'Last) := ASCII.NUL;
Arnaud Charlet committed
853
      return C_File_Exists (C_Name'Address) = 1;
Arnaud Charlet committed
854 855 856 857 858 859 860 861 862 863 864 865
   end File_Exists;

   --------------
   -- Finalize --
   --------------

   procedure Finalize (Search : in out Search_Type) is
   begin
      if Search.Value /= null then

         --  Close the directory, if one is open

866
         if Search.Value.Dir /= No_Dir then
Arnaud Charlet committed
867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
            Close (Search.Value.Dir);
         end if;

         Free (Search.Value);
      end if;
   end Finalize;

   ---------------
   -- Full_Name --
   ---------------

   function Full_Name (Name : String) return String is
   begin
      --  First, the invalid case

      if not Is_Valid_Path_Name (Name) then
883
         raise Name_Error with "invalid path name """ & Name & '"';
Arnaud Charlet committed
884 885

      else
Arnaud Charlet committed
886 887
         --  Build the return value with lower bound 1

888
         --  Use System.OS_Lib.Normalize_Pathname
Arnaud Charlet committed
889 890

         declare
Arnaud Charlet committed
891 892
            --  We need to resolve links because of (RM A.16(47)), which says
            --  we must not return alternative names for files.
Arnaud Charlet committed
893

Arnaud Charlet committed
894
            Value : constant String := Normalize_Pathname (Name);
895
            subtype Result is String (1 .. Value'Length);
Arnaud Charlet committed
896

Arnaud Charlet committed
897
         begin
898
            return Result (Value);
Arnaud Charlet committed
899 900 901 902 903 904 905 906 907
         end;
      end if;
   end Full_Name;

   function Full_Name (Directory_Entry : Directory_Entry_Type) return String is
   begin
      --  First, the invalid case

      if not Directory_Entry.Is_Valid then
908
         raise Status_Error with "invalid directory entry";
Arnaud Charlet committed
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928

      else
         --  The value to return has already been computed

         return To_String (Directory_Entry.Full);
      end if;
   end Full_Name;

   --------------------
   -- Get_Next_Entry --
   --------------------

   procedure Get_Next_Entry
     (Search          : in out Search_Type;
      Directory_Entry : out Directory_Entry_Type)
   is
   begin
      --  First, the invalid case

      if Search.Value = null or else not Search.Value.Is_Valid then
929
         raise Status_Error with "invalid search";
Arnaud Charlet committed
930 931 932 933 934 935 936 937 938 939 940
      end if;

      --  Fetch the next entry, if needed

      if not Search.Value.Entry_Fetched then
         Fetch_Next_Entry (Search);
      end if;

      --  It is an error if no valid entry is found

      if not Search.Value.Is_Valid then
941
         raise Status_Error with "no next entry";
Arnaud Charlet committed
942 943

      else
944
         --  Reset Entry_Fetched and return the entry
Arnaud Charlet committed
945 946 947 948 949 950 951 952 953 954 955 956 957 958 959

         Search.Value.Entry_Fetched := False;
         Directory_Entry := Search.Value.Dir_Entry;
      end if;
   end Get_Next_Entry;

   ----------
   -- Kind --
   ----------

   function Kind (Name : String) return File_Kind is
   begin
      --  First, the invalid case

      if not File_Exists (Name) then
960
         raise Name_Error with "file """ & Name & """ does not exist";
Arnaud Charlet committed
961

Arnaud Charlet committed
962 963
      --  If OK, return appropriate kind

Arnaud Charlet committed
964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
      elsif Is_Regular_File (Name) then
         return Ordinary_File;

      elsif Is_Directory (Name) then
         return Directory;

      else
         return Special_File;
      end if;
   end Kind;

   function Kind (Directory_Entry : Directory_Entry_Type) return File_Kind is
   begin
      --  First, the invalid case

      if not Directory_Entry.Is_Valid then
980
         raise Status_Error with "invalid directory entry";
Arnaud Charlet committed
981 982 983 984 985 986 987 988 989 990 991 992

      else
         --  The value to return has already be computed

         return Directory_Entry.Kind;
      end if;
   end Kind;

   -----------------------
   -- Modification_Time --
   -----------------------

993
   function Modification_Time (Name : String) return Time is
Arnaud Charlet committed
994 995 996 997 998 999 1000
      Date   : OS_Time;
      Year   : Year_Type;
      Month  : Month_Type;
      Day    : Day_Type;
      Hour   : Hour_Type;
      Minute : Minute_Type;
      Second : Second_Type;
1001

Arnaud Charlet committed
1002 1003 1004 1005
   begin
      --  First, the invalid cases

      if not (Is_Regular_File (Name) or else Is_Directory (Name)) then
1006
         raise Name_Error with '"' & Name & """ not a file or directory";
Arnaud Charlet committed
1007 1008 1009 1010

      else
         Date := File_Time_Stamp (Name);

1011 1012 1013
         --  Break down the time stamp into its constituents relative to GMT.
         --  This version of Split does not recognize leap seconds or buffer
         --  space for time zone processing.
1014

1015
         GM_Split (Date, Year, Month, Day, Hour, Minute, Second);
1016

Arnaud Charlet committed
1017
         --  The result must be in GMT. Ada.Calendar.
1018 1019
         --  Formatting.Time_Of with default time zone of zero (0) is the
         --  routine of choice.
1020

Arnaud Charlet committed
1021
         return Time_Of (Year, Month, Day, Hour, Minute, Second, 0.0);
Arnaud Charlet committed
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
      end if;
   end Modification_Time;

   function Modification_Time
     (Directory_Entry : Directory_Entry_Type) return Ada.Calendar.Time
   is
   begin
      --  First, the invalid case

      if not Directory_Entry.Is_Valid then
1032
         raise Status_Error with "invalid directory entry";
Arnaud Charlet committed
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061

      else
         --  The value to return has already be computed

         return Modification_Time (To_String (Directory_Entry.Full));
      end if;
   end Modification_Time;

   ------------------
   -- More_Entries --
   ------------------

   function More_Entries (Search : Search_Type) return Boolean is
   begin
      if Search.Value = null then
         return False;

      elsif Search.Value.Is_Valid then

         --  Fetch the next entry, if needed

         if not Search.Value.Entry_Fetched then
            Fetch_Next_Entry (Search);
         end if;
      end if;

      return Search.Value.Is_Valid;
   end More_Entries;

1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
   ---------------------------
   -- Name_Case_Equivalence --
   ---------------------------

   function Name_Case_Equivalence (Name : String) return Name_Case_Kind is
      Dir_Path  : Unbounded_String := To_Unbounded_String (Name);
      S         : Search_Type;
      Test_File : Directory_Entry_Type;

      function GNAT_name_case_equivalence return Interfaces.C.int;
1072 1073
      pragma Import (C, GNAT_name_case_equivalence,
                     "__gnat_name_case_equivalence");
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093

   begin
      --  Check for the invalid case

      if not Is_Valid_Path_Name (Name) then
         raise Name_Error with "invalid path name """ & Name & '"';
      end if;

      --  We were passed a "full path" to a file and not a directory, so obtain
      --  the containing directory.

      if Is_Regular_File (Name) then
         Dir_Path := To_Unbounded_String (Containing_Directory (Name));
      end if;

      --  Since we must obtain a file within the Name directory, let's grab the
      --  first for our test. When the directory is empty, Get_Next_Entry will
      --  fall through to a Status_Error where we then take the imprecise
      --  default for the host OS.

1094 1095 1096 1097 1098
      Start_Search
        (Search    => S,
         Directory => To_String (Dir_Path),
         Pattern   => "",
         Filter    => (Directory => False, others => True));
1099 1100 1101 1102 1103 1104 1105

      loop
         Get_Next_Entry (S, Test_File);

         --  Check if we have found a "caseable" file

         exit when To_Lower (Simple_Name (Test_File)) /=
1106
                   To_Upper (Simple_Name (Test_File));
1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
      end loop;

      End_Search (S);

      --  Search for files within the directory with the same name, but
      --  differing cases.

      Start_Search_Internal
        (Search                 => S,
         Directory              => To_String (Dir_Path),
         Pattern                => Simple_Name (Test_File),
         Filter                 => (Directory => False, others => True),
         Force_Case_Insensitive => True);

      --  We will find at least one match due to the search hitting our test
      --  file.

      Get_Next_Entry (S, Test_File);

      begin
         --  If we hit two then we know we have a case-sensitive directory

         Get_Next_Entry (S, Test_File);
         End_Search (S);

         return Case_Sensitive;
      exception
         when Status_Error =>
            null;
      end;

      --  Finally, we have a file in the directory whose name is unique and
      --  "caseable". Let's test to see if the OS is able to identify the file
      --  in multiple cases, which will give us our result without having to
      --  resort to defaults.

      if Exists (To_String (Dir_Path) & Directory_Separator
                  & To_Lower (Simple_Name (Test_File)))
        and then Exists (To_String (Dir_Path) & Directory_Separator
                          & To_Upper (Simple_Name (Test_File)))
      then
         return Case_Preserving;
      end if;

      return Case_Sensitive;
   exception
      when Status_Error =>
1154

1155 1156 1157 1158 1159 1160
         --  There is no unobtrusive way to check for the directory's casing so
         --  return the OS default.

         return Name_Case_Kind'Val (Integer (GNAT_name_case_equivalence));
   end Name_Case_Equivalence;

Arnaud Charlet committed
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
   ------------
   -- Rename --
   ------------

   procedure Rename (Old_Name, New_Name : String) is
      Success : Boolean;

   begin
      --  First, the invalid cases

1171 1172 1173 1174 1175 1176 1177 1178
      if not Is_Valid_Path_Name (Old_Name) then
         raise Name_Error with "invalid old path name """ & Old_Name & '"';

      elsif not Is_Valid_Path_Name (New_Name) then
         raise Name_Error with "invalid new path name """ & New_Name & '"';

      elsif not Is_Regular_File (Old_Name)
            and then not Is_Directory (Old_Name)
Arnaud Charlet committed
1179
      then
1180
         raise Name_Error with "old file """ & Old_Name & """ does not exist";
Arnaud Charlet committed
1181

1182
      elsif Is_Regular_File (New_Name) or else Is_Directory (New_Name) then
1183 1184 1185
         raise Use_Error with
           "new name """ & New_Name
           & """ designates a file that already exists";
Arnaud Charlet committed
1186

Arnaud Charlet committed
1187
      --  Do actual rename using System.OS_Lib.Rename_File
Arnaud Charlet committed
1188

Arnaud Charlet committed
1189
      else
Arnaud Charlet committed
1190 1191 1192
         Rename_File (Old_Name, New_Name, Success);

         if not Success then
Arnaud Charlet committed
1193

Arnaud Charlet committed
1194 1195 1196 1197 1198 1199
            --  AI05-0231-1: Name_Error should be raised in case a directory
            --  component of New_Name does not exist (as in New_Name =>
            --  "/no-such-dir/new-filename"). ENOENT indicates that. ENOENT
            --  also indicate that the Old_Name does not exist, but we already
            --  checked for that above. All other errors are Use_Error.

Arnaud Charlet committed
1200
            if Errno = ENOENT then
Arnaud Charlet committed
1201 1202 1203 1204 1205 1206 1207
               raise Name_Error with
                 "file """ & Containing_Directory (New_Name) & """ not found";

            else
               raise Use_Error with
                 "file """ & Old_Name & """ could not be renamed";
            end if;
Arnaud Charlet committed
1208 1209 1210 1211
         end if;
      end if;
   end Rename;

1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
   ------------
   -- Search --
   ------------

   procedure Search
     (Directory : String;
      Pattern   : String;
      Filter    : Filter_Type := (others => True);
      Process   : not null access procedure
                                    (Directory_Entry : Directory_Entry_Type))
   is
1223
      Srch            : Search_Type;
1224
      Directory_Entry : Directory_Entry_Type;
1225

1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
   begin
      Start_Search (Srch, Directory, Pattern, Filter);
      while More_Entries (Srch) loop
         Get_Next_Entry (Srch, Directory_Entry);
         Process (Directory_Entry);
      end loop;

      End_Search (Srch);
   end Search;

Arnaud Charlet committed
1236 1237 1238 1239 1240
   -------------------
   -- Set_Directory --
   -------------------

   procedure Set_Directory (Directory : String) is
1241 1242
      C_Dir_Name : constant String := Directory & ASCII.NUL;
   begin
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
      if not Is_Valid_Path_Name (Directory) then
         raise Name_Error with
           "invalid directory path name & """ & Directory & '"';

      elsif not Is_Directory (Directory) then
         raise Name_Error with
           "directory """ & Directory & """ does not exist";

      elsif chdir (C_Dir_Name) /= 0 then
         raise Name_Error with
           "could not set to designated directory """ & Directory & '"';
1254
      end if;
Arnaud Charlet committed
1255 1256 1257 1258 1259 1260 1261
   end Set_Directory;

   -----------------
   -- Simple_Name --
   -----------------

   function Simple_Name (Name : String) return String is
1262

Arnaud Charlet committed
1263 1264
      function Simple_Name_Internal (Path : String) return String;
      --  This function does the job
1265

Arnaud Charlet committed
1266 1267 1268
      --------------------------
      -- Simple_Name_Internal --
      --------------------------
1269

Arnaud Charlet committed
1270
      function Simple_Name_Internal (Path : String) return String is
1271
         Cut_Start : Natural :=
1272
           Strings.Fixed.Index (Path, Dir_Seps, Going => Strings.Backward);
1273 1274 1275 1276

         --  Cut_End points to the last simple name character

         Cut_End   : Natural := Path'Last;
1277 1278

      begin
1279
         --  Root directories are considered simple
1280

1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
         if Is_Root_Directory_Name (Path) then
            return Path;
         end if;

         --  Handle trailing directory separators

         if Cut_Start = Path'Last then
            Cut_End   := Path'Last - 1;
            Cut_Start := Strings.Fixed.Index
                           (Path (Path'First .. Path'Last - 1),
                             Dir_Seps, Going => Strings.Backward);
         end if;
1293

1294
         --  Cut_Start points to the first simple name character
1295

1296
         Cut_Start := (if Cut_Start = 0 then Path'First else Cut_Start + 1);
1297 1298

         Check_For_Standard_Dirs : declare
Arnaud Charlet committed
1299 1300
            BN : constant String := Path (Cut_Start .. Cut_End);

1301
            Has_Drive_Letter : constant Boolean :=
1302
              OS_Lib.Path_Separator /= ':';
1303 1304 1305 1306 1307
            --  If Path separator is not ':' then we are on a DOS based OS
            --  where this character is used as a drive letter separator.

         begin
            if BN = "." or else BN = ".." then
1308
               return BN;
1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322

            elsif Has_Drive_Letter
              and then BN'Length > 2
              and then Characters.Handling.Is_Letter (BN (BN'First))
              and then BN (BN'First + 1) = ':'
            then
               --  We have a DOS drive letter prefix, remove it

               return BN (BN'First + 2 .. BN'Last);

            else
               return BN;
            end if;
         end Check_For_Standard_Dirs;
Arnaud Charlet committed
1323
      end Simple_Name_Internal;
1324 1325 1326

   --  Start of processing for Simple_Name

Arnaud Charlet committed
1327 1328 1329 1330
   begin
      --  First, the invalid case

      if not Is_Valid_Path_Name (Name) then
1331
         raise Name_Error with "invalid path name """ & Name & '"';
Arnaud Charlet committed
1332 1333

      else
Arnaud Charlet committed
1334 1335
         --  Build the value to return with lower bound 1

Arnaud Charlet committed
1336 1337 1338 1339 1340 1341
         declare
            Value : constant String := Simple_Name_Internal (Name);
            subtype Result is String (1 .. Value'Length);
         begin
            return Result (Value);
         end;
Arnaud Charlet committed
1342 1343 1344 1345
      end if;
   end Simple_Name;

   function Simple_Name
Arnaud Charlet committed
1346
     (Directory_Entry : Directory_Entry_Type) return String is
Arnaud Charlet committed
1347 1348 1349 1350
   begin
      --  First, the invalid case

      if not Directory_Entry.Is_Valid then
1351
         raise Status_Error with "invalid directory entry";
Arnaud Charlet committed
1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366

      else
         --  The value to return has already be computed

         return To_String (Directory_Entry.Simple);
      end if;
   end Simple_Name;

   ----------
   -- Size --
   ----------

   function Size (Name : String) return File_Size is
      C_Name : String (1 .. Name'Length + 1);

1367
      function C_Size (Name : Address) return int64;
Arnaud Charlet committed
1368 1369 1370 1371 1372 1373
      pragma Import (C, C_Size, "__gnat_named_file_length");

   begin
      --  First, the invalid case

      if not Is_Regular_File (Name) then
1374
         raise Name_Error with "file """ & Name & """ does not exist";
Arnaud Charlet committed
1375 1376 1377 1378

      else
         C_Name (1 .. Name'Length) := Name;
         C_Name (C_Name'Last) := ASCII.NUL;
Arnaud Charlet committed
1379
         return File_Size (C_Size (C_Name'Address));
Arnaud Charlet committed
1380 1381 1382 1383 1384 1385 1386 1387
      end if;
   end Size;

   function Size (Directory_Entry : Directory_Entry_Type) return File_Size is
   begin
      --  First, the invalid case

      if not Directory_Entry.Is_Valid then
1388
         raise Status_Error with "invalid directory entry";
Arnaud Charlet committed
1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406

      else
         --  The value to return has already be computed

         return Size (To_String (Directory_Entry.Full));
      end if;
   end Size;

   ------------------
   -- Start_Search --
   ------------------

   procedure Start_Search
     (Search    : in out Search_Type;
      Directory : String;
      Pattern   : String;
      Filter    : Filter_Type := (others => True))
   is
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
   begin
      Start_Search_Internal (Search, Directory, Pattern, Filter, False);
   end Start_Search;

   ---------------------------
   -- Start_Search_Internal --
   ---------------------------

   procedure Start_Search_Internal
     (Search                 : in out Search_Type;
      Directory              : String;
      Pattern                : String;
      Filter                 : Filter_Type := (others => True);
      Force_Case_Insensitive : Boolean)
   is
1422 1423 1424 1425
      function opendir (file_name : String) return DIRs;
      pragma Import (C, opendir, "__gnat_opendir");

      C_File_Name : constant String := Directory & ASCII.NUL;
1426 1427
      Pat         : Regexp;
      Dir         : Dir_Type_Value;
1428

Arnaud Charlet committed
1429
   begin
1430
      --  First, the invalid case Name_Error
Arnaud Charlet committed
1431 1432

      if not Is_Directory (Directory) then
1433 1434 1435 1436 1437 1438
         raise Name_Error with
           "unknown directory """ & Simple_Name (Directory) & '"';
      end if;

      --  Check the pattern

1439 1440
      declare
         Case_Sensitive : Boolean := Is_Path_Name_Case_Sensitive;
1441
      begin
1442 1443 1444 1445
         if Force_Case_Insensitive then
            Case_Sensitive := False;
         end if;

1446 1447 1448 1449 1450
         Pat :=
           Compile
             (Pattern,
              Glob           => True,
              Case_Sensitive => Case_Sensitive);
1451 1452 1453 1454 1455 1456 1457
      exception
         when Error_In_Regexp =>
            Free (Search.Value);
            raise Name_Error with "invalid pattern """ & Pattern & '"';
      end;

      Dir := Dir_Type_Value (opendir (C_File_Name));
1458

1459 1460 1461
      if Dir = No_Dir then
         raise Use_Error with
           "unreadable directory """ & Simple_Name (Directory) & '"';
Arnaud Charlet committed
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473
      end if;

      --  If needed, finalize Search

      Finalize (Search);

      --  Allocate the default data

      Search.Value := new Search_Data;

      --  Initialize some Search components

1474 1475 1476 1477
      Search.Value.Filter   := Filter;
      Search.Value.Name     := To_Unbounded_String (Full_Name (Directory));
      Search.Value.Pattern  := Pat;
      Search.Value.Dir      := Dir;
Arnaud Charlet committed
1478
      Search.Value.Is_Valid := True;
1479
   end Start_Search_Internal;
Arnaud Charlet committed
1480

1481
end Ada.Directories;