79f9bfdc77ec1ca9856e9d6377c92040f781c28e
[nit.git] / lib / standard / exec.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2004-2008 Jean Privat <jean@pryen.org>
4 # Copyright 2008 Floréal Morandat <morandat@lirmm.fr>
5 #
6 # This file is free software, which comes along with NIT. This software is
7 # distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
8 # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
9 # PARTICULAR PURPOSE. You can modify it is you want, provided this header
10 # is kept unaltered, and a notification of the changes is added.
11 # You are allowed to redistribute it and sell it, alone or is a part of
12 # another product.
13
14 # Invocation and management of operating system sub-processes.
15 # Standard input and output can be handled through streams.
16 module exec
17
18 import file
19
20 # Simple sub-process
21 class Process
22 # The pid of the process
23 fun id: Int do return data.id
24
25 # Is the process finished?
26 fun is_finished: Bool do return data.is_finished
27
28 # Wait the termination of the process
29 fun wait
30 do
31 data.wait
32 assert is_finished
33 end
34
35 # The status once finished
36 fun status: Int
37 do
38 assert is_finished
39 return data.status
40 end
41
42 # The executable run
43 # Is a filepath, or a executable found in PATH
44 var command: String
45
46 # The arguments of the command
47 # Starts with the first real arguments---ie. does not include the progname (`argv[0]`, in C)
48 var arguments: nullable Array[String]
49
50 # Launch a command with some arguments
51 init(command: String, arguments: String...) is old_style_init do
52 self.command = command
53 self.arguments = arguments
54 execute
55 end
56
57 # Launch a simple command with arguments passed as an array
58 init from_a(command: String, arguments: nullable Array[String])
59 do
60 self.command = command
61 self.arguments = arguments
62 execute
63 end
64
65 # flags used internally to know whith pipe to open
66 private fun pipeflags: Int do return 0
67
68 # Internal code to handle execution
69 protected fun execute
70 do
71 # The pass the arguments as a big C string where elements are separated with '\0'
72 var args = new FlatBuffer
73 var l = 1 # Number of elements in args
74 args.append(command)
75 if arguments != null then
76 for a in arguments do
77 args.add('\0')
78 #a.output_class_name
79 args.append(a)
80 end
81 l += arguments.length
82 end
83 data = basic_exec_execute(command.to_cstring, args.to_s.to_cstring, l, pipeflags)
84 end
85
86 private var data: NativeProcess
87 private fun basic_exec_execute(p: NativeString, av: NativeString, ac: Int, pf: Int): NativeProcess is extern "exec_Process_Process_basic_exec_execute_4"
88 end
89
90 # stdout of the process is readable
91 class IProcess
92 super Process
93 super IStream
94
95 # File Descriptor used for the input.
96 var stream_in: IFStream is noinit
97
98 redef fun close do stream_in.close
99
100 redef fun read_char do return stream_in.read_char
101
102 redef fun eof do return stream_in.eof
103
104 redef fun pipeflags do return 2
105
106 redef fun execute
107 do
108 super
109 stream_in = new IFStream.from_fd(data.out_fd)
110 end
111 end
112
113 # stdin of the process is writable
114 class OProcess
115 super Process
116 super OStream
117
118 # File Descriptor used for the output.
119 var stream_out: OStream is noinit
120
121 redef fun close do stream_out.close
122
123 redef fun is_writable do return stream_out.is_writable
124
125 redef fun write(s) do stream_out.write(s)
126
127 redef fun pipeflags do return 1
128
129 redef fun execute
130 do
131 super
132 stream_out = new OFStream.from_fd(data.in_fd)
133 end
134 end
135
136 # stdin and stdout are both accessible
137 class IOProcess
138 super IProcess
139 super OProcess
140 super IOStream
141
142 redef fun close
143 do
144 stream_in.close
145 stream_out.close
146 end
147
148 redef fun pipeflags do return 3
149
150 redef fun execute
151 do
152 super
153 end
154 end
155
156 redef class Sys
157 # Execute a shell command and return its error code
158 fun system(command: String): Int
159 do
160 return command.to_cstring.system
161 end
162 end
163
164 redef class NativeString
165 # Execute self as a shell command.
166 #
167 # See the posix function system(3).
168 fun system: Int is extern "string_NativeString_NativeString_system_0"
169 end
170
171 private extern class NativeProcess
172 fun id: Int is extern "exec_NativeProcess_NativeProcess_id_0"
173 fun is_finished: Bool is extern "exec_NativeProcess_NativeProcess_is_finished_0"
174 fun status: Int is extern "exec_NativeProcess_NativeProcess_status_0"
175 fun wait is extern "exec_NativeProcess_NativeProcess_wait_0"
176
177 fun in_fd: Int is extern "exec_NativeProcess_NativeProcess_in_fd_0"
178 fun out_fd: Int is extern "exec_NativeProcess_NativeProcess_out_fd_0"
179 fun err_fd: Int is extern "exec_NativeProcess_NativeProcess_err_fd_0"
180 end
181