1 ------------------------------------------------------------------------------
3 -- GNAT LIBRARY COMPONENTS --
5 -- G N A T . E X P E C T --
9 -- Copyright (C) 2000-2015, AdaCore --
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
; use System
;
33 with System
.OS_Constants
; use System
.OS_Constants
;
34 with Ada
.Calendar
; use Ada
.Calendar
;
36 with GNAT
.IO
; use GNAT
.IO
;
37 with GNAT
.OS_Lib
; use GNAT
.OS_Lib
;
38 with GNAT
.Regpat
; use GNAT
.Regpat
;
40 with Ada
.Unchecked_Deallocation
;
42 package body GNAT
.Expect
is
44 type Array_Of_Pd
is array (Positive range <>) of Process_Descriptor_Access
;
46 Expect_Process_Died
: constant Expect_Match
:= -100;
47 Expect_Internal_Error
: constant Expect_Match
:= -101;
48 -- Additional possible outputs of Expect_Internal. These are not visible in
49 -- the spec because the user will never see them.
51 procedure Expect_Internal
52 (Descriptors
: in out Array_Of_Pd
;
53 Result
: out Expect_Match
;
55 Full_Buffer
: Boolean);
56 -- Internal function used to read from the process Descriptor.
58 -- Several outputs are possible:
59 -- Result=Expect_Timeout, if no output was available before the timeout
61 -- Result=Expect_Full_Buffer, if Full_Buffer is True and some characters
62 -- had to be discarded from the internal buffer of Descriptor.
63 -- Result=Express_Process_Died if one of the processes was terminated.
64 -- That process's Input_Fd is set to Invalid_FD
65 -- Result=Express_Internal_Error
66 -- Result=<integer>, indicates how many characters were added to the
67 -- internal buffer. These characters are from indexes
68 -- Descriptor.Buffer_Index - Result + 1 .. Descriptor.Buffer_Index
69 -- Process_Died is raised if the process is no longer valid.
71 procedure Reinitialize_Buffer
72 (Descriptor
: in out Process_Descriptor
'Class);
73 -- Reinitialize the internal buffer.
74 -- The buffer is deleted up to the end of the last match.
76 procedure Free
is new Ada
.Unchecked_Deallocation
77 (Pattern_Matcher
, Pattern_Matcher_Access
);
79 procedure Free
is new Ada
.Unchecked_Deallocation
80 (Filter_List_Elem
, Filter_List
);
82 procedure Call_Filters
83 (Pid
: Process_Descriptor
'Class;
85 Filter_On
: Filter_Type
);
86 -- Call all the filters that have the appropriate type.
87 -- This function does nothing if the filters are locked
89 ------------------------------
90 -- Target dependent section --
91 ------------------------------
93 function Dup
(Fd
: File_Descriptor
) return File_Descriptor
;
94 pragma Import
(C
, Dup
);
96 procedure Dup2
(Old_Fd
, New_Fd
: File_Descriptor
);
97 pragma Import
(C
, Dup2
);
99 procedure Kill
(Pid
: Process_Id
; Sig_Num
: Integer; Close
: Integer);
100 pragma Import
(C
, Kill
, "__gnat_kill");
101 -- if Close is set to 1 all OS resources used by the Pid must be freed
103 function Create_Pipe
(Pipe
: not null access Pipe_Type
) return Integer;
104 pragma Import
(C
, Create_Pipe
, "__gnat_pipe");
107 (Fds
: System
.Address
;
110 Dead_Process
: access Integer;
111 Is_Set
: System
.Address
) return Integer;
112 pragma Import
(C
, Poll
, "__gnat_expect_poll");
113 -- Check whether there is any data waiting on the file descriptors
114 -- Fds, and wait if there is none, at most Timeout milliseconds
115 -- Returns -1 in case of error, 0 if the timeout expired before
116 -- data became available.
118 -- Is_Set is an array of the same size as FDs and elements are set to 1 if
119 -- data is available for the corresponding File Descriptor, 0 otherwise.
121 -- If a process dies, then Dead_Process is set to the index of the
122 -- corresponding file descriptor.
124 function Waitpid
(Pid
: Process_Id
) return Integer;
125 pragma Import
(C
, Waitpid
, "__gnat_waitpid");
126 -- Wait for a specific process id, and return its exit code
132 function "+" (S
: String) return GNAT
.OS_Lib
.String_Access
is
134 return new String'(S);
142 (P : GNAT.Regpat.Pattern_Matcher) return Pattern_Matcher_Access
145 return new GNAT.Regpat.Pattern_Matcher'(P
);
153 (Descriptor
: in out Process_Descriptor
;
154 Filter
: Filter_Function
;
155 Filter_On
: Filter_Type
:= Output
;
156 User_Data
: System
.Address
:= System
.Null_Address
;
157 After
: Boolean := False)
159 Current
: Filter_List
:= Descriptor
.Filters
;
163 while Current
/= null and then Current
.Next
/= null loop
164 Current
:= Current
.Next
;
167 if Current
= null then
168 Descriptor
.Filters
:=
169 new Filter_List_Elem
'
170 (Filter => Filter, Filter_On => Filter_On,
171 User_Data => User_Data, Next => null);
174 new Filter_List_Elem'
175 (Filter
=> Filter
, Filter_On
=> Filter_On
,
176 User_Data
=> User_Data
, Next
=> null);
180 Descriptor
.Filters
:=
181 new Filter_List_Elem
'
182 (Filter => Filter, Filter_On => Filter_On,
183 User_Data => User_Data, Next => Descriptor.Filters);
191 procedure Call_Filters
192 (Pid : Process_Descriptor'Class;
194 Filter_On : Filter_Type)
196 Current_Filter : Filter_List;
199 if Pid.Filters_Lock = 0 then
200 Current_Filter := Pid.Filters;
202 while Current_Filter /= null loop
203 if Current_Filter.Filter_On = Filter_On then
204 Current_Filter.Filter
205 (Pid, Str, Current_Filter.User_Data);
208 Current_Filter := Current_Filter.Next;
218 (Descriptor : in out Process_Descriptor;
219 Status : out Integer)
221 Current_Filter : Filter_List;
222 Next_Filter : Filter_List;
225 if Descriptor.Input_Fd /= Invalid_FD then
226 Close (Descriptor.Input_Fd);
229 if Descriptor.Error_Fd /= Descriptor.Output_Fd then
230 Close (Descriptor.Error_Fd);
233 Close (Descriptor.Output_Fd);
235 -- ??? Should have timeouts for different signals
237 if Descriptor.Pid > 0 then -- see comment in Send_Signal
238 Kill (Descriptor.Pid, Sig_Num => 9, Close => 0);
241 GNAT.OS_Lib.Free (Descriptor.Buffer);
242 Descriptor.Buffer_Size := 0;
244 Current_Filter := Descriptor.Filters;
246 while Current_Filter /= null loop
247 Next_Filter := Current_Filter.Next;
248 Free (Current_Filter);
249 Current_Filter := Next_Filter;
252 Descriptor.Filters := null;
254 -- Check process id (see comment in Send_Signal)
256 if Descriptor.Pid > 0 then
257 Status := Waitpid (Descriptor.Pid);
259 raise Invalid_Process;
263 procedure Close (Descriptor : in out Process_Descriptor) is
265 pragma Unreferenced (Status);
267 Close (Descriptor, Status);
275 (Descriptor : in out Process_Descriptor;
276 Result : out Expect_Match;
278 Timeout : Integer := 10_000;
279 Full_Buffer : Boolean := False)
283 Expect (Descriptor, Result, Never_Match, Timeout, Full_Buffer);
285 Expect (Descriptor, Result, Compile (Regexp), Timeout, Full_Buffer);
290 (Descriptor : in out Process_Descriptor;
291 Result : out Expect_Match;
293 Matched : out GNAT.Regpat.Match_Array;
294 Timeout : Integer := 10_000;
295 Full_Buffer : Boolean := False)
298 pragma Assert (Matched'First = 0);
301 (Descriptor, Result, Never_Match, Matched, Timeout, Full_Buffer);
304 (Descriptor, Result, Compile (Regexp), Matched, Timeout,
310 (Descriptor : in out Process_Descriptor;
311 Result : out Expect_Match;
312 Regexp : GNAT.Regpat.Pattern_Matcher;
313 Timeout : Integer := 10_000;
314 Full_Buffer : Boolean := False)
316 Matched : GNAT.Regpat.Match_Array (0 .. 0);
317 pragma Warnings (Off, Matched);
319 Expect (Descriptor, Result, Regexp, Matched, Timeout, Full_Buffer);
323 (Descriptor : in out Process_Descriptor;
324 Result : out Expect_Match;
325 Regexp : GNAT.Regpat.Pattern_Matcher;
326 Matched : out GNAT.Regpat.Match_Array;
327 Timeout : Integer := 10_000;
328 Full_Buffer : Boolean := False)
331 Descriptors : Array_Of_Pd := (1 => Descriptor'Unrestricted_Access);
332 Try_Until : constant Time := Clock + Duration (Timeout) / 1000.0;
333 Timeout_Tmp : Integer := Timeout;
336 pragma Assert (Matched'First = 0);
337 Reinitialize_Buffer (Descriptor);
340 -- First, test if what is already in the buffer matches (This is
341 -- required if this package is used in multi-task mode, since one of
342 -- the tasks might have added something in the buffer, and we don't
343 -- want other tasks to wait for new input to be available before
344 -- checking the regexps).
347 (Regexp, Descriptor.Buffer (1 .. Descriptor.Buffer_Index), Matched);
349 if Descriptor.Buffer_Index >= 1 and then Matched (0).First /= 0 then
351 Descriptor.Last_Match_Start := Matched (0).First;
352 Descriptor.Last_Match_End := Matched (0).Last;
356 -- Else try to read new input
358 Expect_Internal (Descriptors, N, Timeout_Tmp, Full_Buffer);
361 when Expect_Internal_Error | Expect_Process_Died =>
364 when Expect_Timeout | Expect_Full_Buffer =>
372 -- Calculate the timeout for the next turn
374 -- Note that Timeout is, from the caller's perspective, the maximum
375 -- time until a match, not the maximum time until some output is
376 -- read, and thus cannot be reused as is for Expect_Internal.
378 if Timeout /= -1 then
379 Timeout_Tmp := Integer (Try_Until - Clock) * 1000;
381 if Timeout_Tmp < 0 then
382 Result := Expect_Timeout;
388 -- Even if we had the general timeout above, we have to test that the
389 -- last test we read from the external process didn't match.
392 (Regexp, Descriptor.Buffer (1 .. Descriptor.Buffer_Index), Matched);
394 if Matched (0).First /= 0 then
396 Descriptor.Last_Match_Start := Matched (0).First;
397 Descriptor.Last_Match_End := Matched (0).Last;
403 (Descriptor : in out Process_Descriptor;
404 Result : out Expect_Match;
405 Regexps : Regexp_Array;
406 Timeout : Integer := 10_000;
407 Full_Buffer : Boolean := False)
409 Patterns : Compiled_Regexp_Array (Regexps'Range);
411 Matched : GNAT.Regpat.Match_Array (0 .. 0);
412 pragma Warnings (Off, Matched);
415 for J in Regexps'Range loop
416 Patterns (J) := new Pattern_Matcher'(Compile
(Regexps
(J
).all));
419 Expect
(Descriptor
, Result
, Patterns
, Matched
, Timeout
, Full_Buffer
);
421 for J
in Regexps
'Range loop
427 (Descriptor
: in out Process_Descriptor
;
428 Result
: out Expect_Match
;
429 Regexps
: Compiled_Regexp_Array
;
430 Timeout
: Integer := 10_000
;
431 Full_Buffer
: Boolean := False)
433 Matched
: GNAT
.Regpat
.Match_Array
(0 .. 0);
434 pragma Warnings
(Off
, Matched
);
436 Expect
(Descriptor
, Result
, Regexps
, Matched
, Timeout
, Full_Buffer
);
440 (Result
: out Expect_Match
;
441 Regexps
: Multiprocess_Regexp_Array
;
442 Timeout
: Integer := 10_000
;
443 Full_Buffer
: Boolean := False)
445 Matched
: GNAT
.Regpat
.Match_Array
(0 .. 0);
446 pragma Warnings
(Off
, Matched
);
448 Expect
(Result
, Regexps
, Matched
, Timeout
, Full_Buffer
);
452 (Descriptor
: in out Process_Descriptor
;
453 Result
: out Expect_Match
;
454 Regexps
: Regexp_Array
;
455 Matched
: out GNAT
.Regpat
.Match_Array
;
456 Timeout
: Integer := 10_000
;
457 Full_Buffer
: Boolean := False)
459 Patterns
: Compiled_Regexp_Array
(Regexps
'Range);
462 pragma Assert
(Matched
'First = 0);
464 for J
in Regexps
'Range loop
465 Patterns
(J
) := new Pattern_Matcher
'(Compile (Regexps (J).all));
468 Expect (Descriptor, Result, Patterns, Matched, Timeout, Full_Buffer);
470 for J in Regexps'Range loop
476 (Descriptor : in out Process_Descriptor;
477 Result : out Expect_Match;
478 Regexps : Compiled_Regexp_Array;
479 Matched : out GNAT.Regpat.Match_Array;
480 Timeout : Integer := 10_000;
481 Full_Buffer : Boolean := False)
484 Descriptors : Array_Of_Pd := (1 => Descriptor'Unrestricted_Access);
487 pragma Assert (Matched'First = 0);
489 Reinitialize_Buffer (Descriptor);
492 -- First, test if what is already in the buffer matches (This is
493 -- required if this package is used in multi-task mode, since one of
494 -- the tasks might have added something in the buffer, and we don't
495 -- want other tasks to wait for new input to be available before
496 -- checking the regexps).
498 if Descriptor.Buffer /= null then
499 for J in Regexps'Range loop
502 Descriptor.Buffer (1 .. Descriptor.Buffer_Index),
505 if Matched (0) /= No_Match then
506 Result := Expect_Match (J);
507 Descriptor.Last_Match_Start := Matched (0).First;
508 Descriptor.Last_Match_End := Matched (0).Last;
514 Expect_Internal (Descriptors, N, Timeout, Full_Buffer);
517 when Expect_Internal_Error | Expect_Process_Died =>
520 when Expect_Timeout | Expect_Full_Buffer =>
531 (Result : out Expect_Match;
532 Regexps : Multiprocess_Regexp_Array;
533 Matched : out GNAT.Regpat.Match_Array;
534 Timeout : Integer := 10_000;
535 Full_Buffer : Boolean := False)
538 Descriptors : Array_Of_Pd (Regexps'Range);
541 pragma Assert (Matched'First = 0);
543 for J in Descriptors'Range loop
544 Descriptors (J) := Regexps (J).Descriptor;
546 if Descriptors (J) /= null then
547 Reinitialize_Buffer (Regexps (J).Descriptor.all);
552 -- First, test if what is already in the buffer matches (This is
553 -- required if this package is used in multi-task mode, since one of
554 -- the tasks might have added something in the buffer, and we don't
555 -- want other tasks to wait for new input to be available before
556 -- checking the regexps).
558 for J in Regexps'Range loop
559 if Regexps (J).Regexp /= null
560 and then Regexps (J).Descriptor /= null
562 Match (Regexps (J).Regexp.all,
563 Regexps (J).Descriptor.Buffer
564 (1 .. Regexps (J).Descriptor.Buffer_Index),
567 if Matched (0) /= No_Match then
568 Result := Expect_Match (J);
569 Regexps (J).Descriptor.Last_Match_Start := Matched (0).First;
570 Regexps (J).Descriptor.Last_Match_End := Matched (0).Last;
576 Expect_Internal (Descriptors, N, Timeout, Full_Buffer);
579 when Expect_Internal_Error | Expect_Process_Died =>
582 when Expect_Timeout | Expect_Full_Buffer =>
592 ---------------------
593 -- Expect_Internal --
594 ---------------------
596 procedure Expect_Internal
597 (Descriptors : in out Array_Of_Pd;
598 Result : out Expect_Match;
600 Full_Buffer : Boolean)
602 Num_Descriptors : Integer;
603 Buffer_Size : Integer := 0;
607 type File_Descriptor_Array is
608 array (0 .. Descriptors'Length - 1) of File_Descriptor;
609 Fds : aliased File_Descriptor_Array;
610 Fds_Count : Natural := 0;
612 Fds_To_Descriptor : array (Fds'Range) of Integer;
613 -- Maps file descriptor entries from Fds to entries in Descriptors.
614 -- They do not have the same index when entries in Descriptors are null.
616 type Integer_Array is array (Fds'Range) of Integer;
617 Is_Set : aliased Integer_Array;
620 for J in Descriptors'Range loop
621 if Descriptors (J) /= null then
622 Fds (Fds'First + Fds_Count) := Descriptors (J).Output_Fd;
623 Fds_To_Descriptor (Fds'First + Fds_Count) := J;
624 Fds_Count := Fds_Count + 1;
626 if Descriptors (J).Buffer_Size = 0 then
627 Buffer_Size := Integer'Max (Buffer_Size, 4096);
630 Integer'Max (Buffer_Size, Descriptors (J).Buffer_Size);
636 Buffer : aliased String (1 .. Buffer_Size);
637 -- Buffer used for input. This is allocated only once, not for
638 -- every iteration of the loop
641 -- Index in Descriptors
644 -- Loop until we match or we have a timeout
648 Poll (Fds'Address, Fds_Count, Timeout, D'Access, Is_Set'Address);
650 case Num_Descriptors is
655 Result := Expect_Internal_Error;
658 Close (Descriptors (D).Input_Fd);
659 Descriptors (D).Input_Fd := Invalid_FD;
667 Result := Expect_Timeout;
673 for F in Fds'Range loop
674 if Is_Set (F) = 1 then
675 D := Fds_To_Descriptor (F);
677 Buffer_Size := Descriptors (D).Buffer_Size;
679 if Buffer_Size = 0 then
683 N := Read (Descriptors (D).Output_Fd, Buffer'Address,
686 -- Error or End of file
689 -- ??? Note that ddd tries again up to three times
690 -- in that case. See LiterateA.C:174
692 Close (Descriptors (D).Input_Fd);
693 Descriptors (D).Input_Fd := Invalid_FD;
694 Result := Expect_Process_Died;
698 -- If there is no limit to the buffer size
700 if Descriptors (D).Buffer_Size = 0 then
703 Tmp : String_Access := Descriptors (D).Buffer;
707 Descriptors (D).Buffer :=
708 new String (1 .. Tmp'Length + N);
709 Descriptors (D).Buffer (1 .. Tmp'Length) :=
711 Descriptors (D).Buffer
712 (Tmp'Length + 1 .. Tmp'Length + N) :=
715 Descriptors (D).Buffer_Index :=
716 Descriptors (D).Buffer'Last;
719 Descriptors (D).Buffer :=
721 Descriptors (D).Buffer.all :=
723 Descriptors (D).Buffer_Index := N;
728 -- Add what we read to the buffer
730 if Descriptors (D).Buffer_Index + N >
731 Descriptors (D).Buffer_Size
733 -- If the user wants to know when we have
734 -- read more than the buffer can contain.
737 Result := Expect_Full_Buffer;
741 -- Keep as much as possible from the buffer,
742 -- and forget old characters.
744 Descriptors (D).Buffer
745 (1 .. Descriptors (D).Buffer_Size - N) :=
746 Descriptors (D).Buffer
747 (N - Descriptors (D).Buffer_Size +
748 Descriptors (D).Buffer_Index + 1 ..
749 Descriptors (D).Buffer_Index);
750 Descriptors (D).Buffer_Index :=
751 Descriptors (D).Buffer_Size - N;
754 -- Keep what we read in the buffer
756 Descriptors (D).Buffer
757 (Descriptors (D).Buffer_Index + 1 ..
758 Descriptors (D).Buffer_Index + N) :=
760 Descriptors (D).Buffer_Index :=
761 Descriptors (D).Buffer_Index + N;
764 -- Call each of the output filter with what we
768 (Descriptors (D).all, Buffer (1 .. N), Output);
770 Result := Expect_Match (D);
784 function Expect_Out (Descriptor : Process_Descriptor) return String is
786 return Descriptor.Buffer (1 .. Descriptor.Last_Match_End);
789 ----------------------
790 -- Expect_Out_Match --
791 ----------------------
793 function Expect_Out_Match (Descriptor : Process_Descriptor) return String is
795 return Descriptor.Buffer
796 (Descriptor.Last_Match_Start .. Descriptor.Last_Match_End);
797 end Expect_Out_Match;
799 ------------------------
800 -- First_Dead_Process --
801 ------------------------
803 function First_Dead_Process
804 (Regexp : Multiprocess_Regexp_Array) return Natural is
806 for R in Regexp'Range loop
807 if Regexp (R).Descriptor /= null
808 and then Regexp (R).Descriptor.Input_Fd = GNAT.OS_Lib.Invalid_FD
815 end First_Dead_Process;
822 (Descriptor : in out Process_Descriptor;
823 Timeout : Integer := 0)
825 Buffer_Size : constant Integer := 8192;
826 Num_Descriptors : Integer;
828 Is_Set : aliased Integer;
829 Buffer : aliased String (1 .. Buffer_Size);
832 -- Empty the current buffer
834 Descriptor.Last_Match_End := Descriptor.Buffer_Index;
835 Reinitialize_Buffer (Descriptor);
837 -- Read everything from the process to flush its output
841 Poll (Descriptor.Output_Fd'Address,
847 case Num_Descriptors is
854 -- Timeout => End of flush
863 N := Read (Descriptor.Output_Fd, Buffer'Address,
880 procedure Free (Regexp : in out Multiprocess_Regexp) is
881 procedure Unchecked_Free is new Ada.Unchecked_Deallocation
882 (Process_Descriptor'Class, Process_Descriptor_Access);
884 Unchecked_Free (Regexp.Descriptor);
885 Free (Regexp.Regexp);
888 ------------------------
889 -- Get_Command_Output --
890 ------------------------
892 function Get_Command_Output
894 Arguments : GNAT.OS_Lib.Argument_List;
896 Status : not null access Integer;
897 Err_To_Out : Boolean := False) return String
901 Process : Process_Descriptor;
903 Output : String_Access := new String (1 .. 1024);
904 -- Buffer used to accumulate standard output from the launched
905 -- command, expanded as necessary during execution.
908 -- Index of the last used character within Output
912 (Process, Command, Arguments, Err_To_Out => Err_To_Out,
915 if Input'Length > 0 then
916 Send (Process, Input);
919 Close (Process.Input_Fd);
920 Process.Input_Fd := Invalid_FD;
923 Result : Expect_Match;
924 pragma Unreferenced (Result);
927 -- This loop runs until the call to Expect raises Process_Died
930 Expect (Process, Result, ".+", Timeout => -1);
933 NOutput : String_Access;
934 S : constant String := Expect_Out (Process);
935 pragma Assert (S'Length > 0);
938 -- Expand buffer if we need more space. Note here that we add
939 -- S'Length to ensure that S will fit in the new buffer size.
941 if Last + S'Length > Output'Last then
942 NOutput := new String (1 .. 2 * Output'Last + S'Length);
943 NOutput (Output'Range) := Output.all;
946 -- Here if current buffer size is OK
952 NOutput (Last + 1 .. Last + S'Length) := S;
953 Last := Last + S'Length;
960 Close (Process, Status.all);
969 S : constant String := Output (1 .. Last);
974 end Get_Command_Output;
980 function Get_Error_Fd
981 (Descriptor : Process_Descriptor) return GNAT.OS_Lib.File_Descriptor
984 return Descriptor.Error_Fd;
991 function Get_Input_Fd
992 (Descriptor : Process_Descriptor) return GNAT.OS_Lib.File_Descriptor
995 return Descriptor.Input_Fd;
1002 function Get_Output_Fd
1003 (Descriptor : Process_Descriptor) return GNAT.OS_Lib.File_Descriptor
1006 return Descriptor.Output_Fd;
1014 (Descriptor : Process_Descriptor) return Process_Id
1017 return Descriptor.Pid;
1024 function Has_Process (Regexp : Multiprocess_Regexp_Array) return Boolean is
1026 return Regexp /= (Regexp'Range => (null, null));
1033 procedure Interrupt (Descriptor : in out Process_Descriptor) is
1034 SIGINT : constant := 2;
1036 Send_Signal (Descriptor, SIGINT);
1043 procedure Lock_Filters (Descriptor : in out Process_Descriptor) is
1045 Descriptor.Filters_Lock := Descriptor.Filters_Lock + 1;
1048 ------------------------
1049 -- Non_Blocking_Spawn --
1050 ------------------------
1052 procedure Non_Blocking_Spawn
1053 (Descriptor : out Process_Descriptor'Class;
1055 Args : GNAT.OS_Lib.Argument_List;
1056 Buffer_Size : Natural := 4096;
1057 Err_To_Out : Boolean := False)
1059 function Fork return Process_Id;
1060 pragma Import (C, Fork, "__gnat_expect_fork");
1061 -- Starts a new process if possible. See the Unix command fork for more
1062 -- information. On systems that do not support this capability (such as
1063 -- Windows...), this command does nothing, and Fork will return
1066 Pipe1, Pipe2, Pipe3 : aliased Pipe_Type;
1068 Arg : String_Access;
1069 Arg_List : String_List (1 .. Args'Length + 2);
1070 C_Arg_List : aliased array (1 .. Args'Length + 2) of System.Address;
1072 Command_With_Path : String_Access;
1075 Command_With_Path := Locate_Exec_On_Path (Command);
1077 if Command_With_Path = null then
1078 raise Invalid_Process;
1081 -- Create the rest of the pipes once we know we will be able to
1082 -- execute the process.
1084 Set_Up_Communications
1085 (Descriptor, Err_To_Out, Pipe1'Access, Pipe2'Access, Pipe3'Access);
1087 -- Fork a new process
1089 Descriptor.Pid := Fork;
1091 -- Are we now in the child (or, for Windows, still in the common
1094 if Descriptor.Pid = Null_Pid then
1095 -- Prepare an array of arguments to pass to C
1097 Arg := new String (1 .. Command_With_Path'Length + 1);
1098 Arg (1 .. Command_With_Path'Length) := Command_With_Path.all;
1099 Arg (Arg'Last) := ASCII.NUL;
1100 Arg_List (1) := Arg;
1102 for J in Args'Range loop
1103 Arg := new String (1 .. Args (J)'Length + 1);
1104 Arg (1 .. Args (J)'Length) := Args (J).all;
1105 Arg (Arg'Last) := ASCII.NUL;
1106 Arg_List (J + 2 - Args'First) := Arg.all'Access;
1109 Arg_List (Arg_List'Last) := null;
1111 -- Make sure all arguments are compatible with OS conventions
1113 Normalize_Arguments (Arg_List);
1115 -- Prepare low-level argument list from the normalized arguments
1117 for K in Arg_List'Range loop
1119 (if Arg_List (K) /= null
1120 then Arg_List (K).all'Address
1121 else System.Null_Address);
1124 -- This does not return on Unix systems
1126 Set_Up_Child_Communications
1127 (Descriptor, Pipe1, Pipe2, Pipe3, Command_With_Path.all,
1128 C_Arg_List'Address);
1131 Free (Command_With_Path);
1133 -- Did we have an error when spawning the child ?
1135 if Descriptor.Pid < Null_Pid then
1136 raise Invalid_Process;
1138 -- We are now in the parent process
1140 Set_Up_Parent_Communications (Descriptor, Pipe1, Pipe2, Pipe3);
1143 -- Create the buffer
1145 Descriptor.Buffer_Size := Buffer_Size;
1147 if Buffer_Size /= 0 then
1148 Descriptor.Buffer := new String (1 .. Positive (Buffer_Size));
1151 -- Initialize the filters
1153 Descriptor.Filters := null;
1154 end Non_Blocking_Spawn;
1156 -------------------------
1157 -- Reinitialize_Buffer --
1158 -------------------------
1160 procedure Reinitialize_Buffer
1161 (Descriptor : in out Process_Descriptor'Class)
1164 if Descriptor.Buffer_Size = 0 then
1166 Tmp : String_Access := Descriptor.Buffer;
1169 Descriptor.Buffer :=
1171 (1 .. Descriptor.Buffer_Index - Descriptor.Last_Match_End);
1174 Descriptor.Buffer.all := Tmp
1175 (Descriptor.Last_Match_End + 1 .. Descriptor.Buffer_Index);
1180 Descriptor.Buffer_Index := Descriptor.Buffer'Last;
1184 (1 .. Descriptor.Buffer_Index - Descriptor.Last_Match_End) :=
1186 (Descriptor.Last_Match_End + 1 .. Descriptor.Buffer_Index);
1188 if Descriptor.Buffer_Index > Descriptor.Last_Match_End then
1189 Descriptor.Buffer_Index :=
1190 Descriptor.Buffer_Index - Descriptor.Last_Match_End;
1192 Descriptor.Buffer_Index := 0;
1196 Descriptor.Last_Match_Start := 0;
1197 Descriptor.Last_Match_End := 0;
1198 end Reinitialize_Buffer;
1204 procedure Remove_Filter
1205 (Descriptor : in out Process_Descriptor;
1206 Filter : Filter_Function)
1208 Previous : Filter_List := null;
1209 Current : Filter_List := Descriptor.Filters;
1212 while Current /= null loop
1213 if Current.Filter = Filter then
1214 if Previous = null then
1215 Descriptor.Filters := Current.Next;
1217 Previous.Next := Current.Next;
1221 Previous := Current;
1222 Current := Current.Next;
1231 (Descriptor : in out Process_Descriptor;
1233 Add_LF : Boolean := True;
1234 Empty_Buffer : Boolean := False)
1236 Line_Feed : aliased constant String := (1 .. 1 => ASCII.LF);
1237 Descriptors : Array_Of_Pd := (1 => Descriptor'Unrestricted_Access);
1239 Result : Expect_Match;
1241 pragma Warnings (Off, Result);
1242 pragma Warnings (Off, Discard);
1245 if Empty_Buffer then
1247 -- Force a read on the process if there is anything waiting
1250 (Descriptors, Result, Timeout => 0, Full_Buffer => False);
1252 if Result = Expect_Internal_Error
1253 or else Result = Expect_Process_Died
1258 Descriptor.Last_Match_End := Descriptor.Buffer_Index;
1262 Reinitialize_Buffer (Descriptor);
1265 Call_Filters (Descriptor, Str, Input);
1267 Write (Descriptor.Input_Fd, Str'Address, Str'Last - Str'First + 1);
1270 Call_Filters (Descriptor, Line_Feed, Input);
1272 Write (Descriptor.Input_Fd, Line_Feed'Address, 1);
1280 procedure Send_Signal
1281 (Descriptor : Process_Descriptor;
1285 -- A nonpositive process id passed to kill has special meanings. For
1286 -- example, -1 means kill all processes in sight, including self, in
1287 -- POSIX and Windows (and something slightly different in Linux). See
1288 -- man pages for details. In any case, we don't want to do that. Note
1289 -- that Descriptor.Pid will be -1 if the process was not successfully
1290 -- started; we don't want to kill ourself in that case.
1292 if Descriptor.Pid > 0 then
1293 Kill (Descriptor.Pid, Signal, Close => 1);
1294 -- ??? Need to check process status here
1296 raise Invalid_Process;
1300 ---------------------------------
1301 -- Set_Up_Child_Communications --
1302 ---------------------------------
1304 procedure Set_Up_Child_Communications
1305 (Pid : in out Process_Descriptor;
1306 Pipe1 : in out Pipe_Type;
1307 Pipe2 : in out Pipe_Type;
1308 Pipe3 : in out Pipe_Type;
1310 Args : System.Address)
1312 pragma Warnings (Off, Pid);
1313 pragma Warnings (Off, Pipe1);
1314 pragma Warnings (Off, Pipe2);
1315 pragma Warnings (Off, Pipe3);
1317 Input : File_Descriptor;
1318 Output : File_Descriptor;
1319 Error : File_Descriptor;
1321 No_Fork_On_Target : constant Boolean := Target_OS = Windows;
1324 if No_Fork_On_Target then
1326 -- Since Windows does not have a separate fork/exec, we need to
1327 -- perform the following actions:
1329 -- - save stdin, stdout, stderr
1330 -- - replace them by our pipes
1331 -- - create the child with process handle inheritance
1332 -- - revert to the previous stdin, stdout and stderr.
1334 Input := Dup (GNAT.OS_Lib.Standin);
1335 Output := Dup (GNAT.OS_Lib.Standout);
1336 Error := Dup (GNAT.OS_Lib.Standerr);
1339 -- Since we are still called from the parent process, there is no way
1340 -- currently we can cleanly close the unneeded ends of the pipes, but
1341 -- this doesn't really matter.
1343 -- We could close Pipe1.Output, Pipe2.Input, Pipe3.Input
1345 Dup2 (Pipe1.Input, GNAT.OS_Lib.Standin);
1346 Dup2 (Pipe2.Output, GNAT.OS_Lib.Standout);
1347 Dup2 (Pipe3.Output, GNAT.OS_Lib.Standerr);
1349 Portable_Execvp (Pid.Pid'Access, Cmd & ASCII.NUL, Args);
1351 -- The following lines are only required for Windows systems and will
1352 -- not be executed on Unix systems, but we use the same condition as
1353 -- above to avoid warnings on uninitialized variables on Unix systems.
1354 -- We are now in the parent process.
1356 if No_Fork_On_Target then
1358 -- Restore the old descriptors
1360 Dup2 (Input, GNAT.OS_Lib.Standin);
1361 Dup2 (Output, GNAT.OS_Lib.Standout);
1362 Dup2 (Error, GNAT.OS_Lib.Standerr);
1367 end Set_Up_Child_Communications;
1369 ---------------------------
1370 -- Set_Up_Communications --
1371 ---------------------------
1373 procedure Set_Up_Communications
1374 (Pid : in out Process_Descriptor;
1375 Err_To_Out : Boolean;
1376 Pipe1 : not null access Pipe_Type;
1377 Pipe2 : not null access Pipe_Type;
1378 Pipe3 : not null access Pipe_Type)
1381 pragma Unreferenced (Status);
1386 if Create_Pipe (Pipe1) /= 0 then
1390 if Create_Pipe (Pipe2) /= 0 then
1391 Close (Pipe1.Input);
1392 Close (Pipe1.Output);
1396 -- Record the 'parent
' end of the two pipes in Pid:
1397 -- Child stdin is connected to the 'write
' end of Pipe1;
1398 -- Child stdout is connected to the 'read
' end of Pipe2.
1399 -- We do not want these descriptors to remain open in the child
1400 -- process, so we mark them close-on-exec/non-inheritable.
1402 Pid.Input_Fd := Pipe1.Output;
1403 Set_Close_On_Exec (Pipe1.Output, True, Status);
1404 Pid.Output_Fd := Pipe2.Input;
1405 Set_Close_On_Exec (Pipe2.Input, True, Status);
1409 -- Reuse the standard output pipe for standard error
1411 Pipe3.all := Pipe2.all;
1414 -- Create a separate pipe for standard error
1416 if Create_Pipe (Pipe3) /= 0 then
1417 Pipe3.all := Pipe2.all;
1421 -- As above, record the proper fd for the child's standard error stream
1423 Pid.Error_Fd := Pipe3.Input;
1424 Set_Close_On_Exec (Pipe3.Input, True, Status);
1425 end Set_Up_Communications;
1427 ----------------------------------
1428 -- Set_Up_Parent_Communications --
1429 ----------------------------------
1431 procedure Set_Up_Parent_Communications
1432 (Pid : in out Process_Descriptor;
1433 Pipe1 : in out Pipe_Type;
1434 Pipe2 : in out Pipe_Type;
1435 Pipe3 : in out Pipe_Type)
1437 pragma Warnings (Off, Pid);
1438 pragma Warnings (Off, Pipe1);
1439 pragma Warnings (Off, Pipe2);
1440 pragma Warnings (Off, Pipe3);
1443 Close (Pipe1.Input);
1444 Close (Pipe2.Output);
1446 if Pipe3.Output /= Pipe2.Output then
1447 Close (Pipe3.Output);
1449 end Set_Up_Parent_Communications;
1455 procedure Trace_Filter
1456 (Descriptor : Process_Descriptor'Class;
1458 User_Data : System.Address := System.Null_Address)
1460 pragma Warnings (Off, Descriptor);
1461 pragma Warnings (Off, User_Data);
1466 --------------------
1467 -- Unlock_Filters --
1468 --------------------
1470 procedure Unlock_Filters (Descriptor : in out Process_Descriptor) is
1472 if Descriptor.Filters_Lock > 0 then
1473 Descriptor.Filters_Lock := Descriptor.Filters_Lock - 1;