84b167ab4e7d47310f54b7d7fe60faab4ea1c079
[nit.git] / lib / standard / stream.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # This file is free software, which comes along with NIT. This software is
4 # distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
5 # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
6 # PARTICULAR PURPOSE. You can modify it is you want, provided this header
7 # is kept unaltered, and a notification of the changes is added.
8 # You are allowed to redistribute it and sell it, alone or is a part of
9 # another product.
10
11 # Input and output streams of characters
12 module stream
13
14 intrude import ropes
15
16 in "C" `{
17 #include <unistd.h>
18 #include <poll.h>
19 #include <errno.h>
20 #include <string.h>
21 #include <signal.h>
22 `}
23
24 # Abstract stream class
25 interface IOS
26 # close the stream
27 fun close is abstract
28 end
29
30 # Abstract input streams
31 interface IStream
32 super IOS
33 # Read a character. Return its ASCII value, -1 on EOF or timeout
34 fun read_char: Int is abstract
35
36 # Read at most i bytes
37 fun read(i: Int): String
38 do
39 var s = new FlatBuffer.with_capacity(i)
40 while i > 0 and not eof do
41 var c = read_char
42 if c >= 0 then
43 s.add(c.ascii)
44 i -= 1
45 end
46 end
47 return s.to_s
48 end
49
50 # Read a string until the end of the line.
51 fun read_line: String
52 do
53 assert not eof
54 var s = new FlatBuffer
55 append_line_to(s)
56 return s.to_s
57 end
58
59 # Read all the stream until the eof.
60 fun read_all: String
61 do
62 var s = new FlatBuffer
63 while not eof do
64 var c = read_char
65 if c >= 0 then s.add(c.ascii)
66 end
67 return s.to_s
68 end
69
70 # Read a string until the end of the line and append it to `s`.
71 fun append_line_to(s: Buffer)
72 do
73 loop
74 var x = read_char
75 if x == -1 then
76 if eof then return
77 else
78 var c = x.ascii
79 s.chars.push(c)
80 if c == '\n' then return
81 end
82 end
83 end
84
85 # Is there something to read.
86 # This function returns 'false' if there is something to read.
87 fun eof: Bool is abstract
88 end
89
90 # IStream capable of declaring if readable without blocking
91 interface PollableIStream
92 super IStream
93
94 # Is there something to read? (without blocking)
95 fun poll_in: Bool is abstract
96
97 end
98
99 # Abstract output stream
100 interface OStream
101 super IOS
102 # write a string
103 fun write(s: Text) is abstract
104
105 # Can the stream be used to write
106 fun is_writable: Bool is abstract
107 end
108
109 # Things that can be efficienlty writen to a OStream
110 #
111 # The point of this interface it to allow is instance to be efficenty
112 # writen into a OStream without having to allocate a big String object
113 #
114 # ready-to-save documents usually provide this interface.
115 interface Streamable
116 # Write itself to a `stream`
117 # The specific logic it let to the concrete subclasses
118 fun write_to(stream: OStream) is abstract
119
120 # Like `write_to` but return a new String (may be quite large)
121 #
122 # This funtionnality is anectodical, since the point
123 # of streamable object to to be efficienlty written to a
124 # stream without having to allocate and concatenate strings
125 fun write_to_string: String
126 do
127 var stream = new StringOStream
128 write_to(stream)
129 return stream.to_s
130 end
131 end
132
133 redef class Text
134 super Streamable
135 redef fun write_to(stream) do stream.write(self)
136 end
137
138 # Input streams with a buffer
139 abstract class BufferedIStream
140 super IStream
141 redef fun read_char
142 do
143 assert not eof
144 if _buffer_pos >= _buffer.length then
145 fill_buffer
146 end
147 if _buffer_pos >= _buffer.length then
148 return -1
149 end
150 var c = _buffer.chars[_buffer_pos]
151 _buffer_pos += 1
152 return c.ascii
153 end
154
155 redef fun read(i)
156 do
157 if _buffer.length == _buffer_pos then
158 if not eof then
159 fill_buffer
160 return read(i)
161 end
162 return ""
163 end
164 if _buffer_pos + i >= _buffer.length then
165 var from = _buffer_pos
166 _buffer_pos = _buffer.length
167 return _buffer.substring_from(from).to_s
168 end
169 _buffer_pos += i
170 return _buffer.substring(_buffer_pos - i, i).to_s
171 end
172
173 redef fun read_all
174 do
175 var s = new FlatBuffer
176 while not eof do
177 var j = _buffer_pos
178 var k = _buffer.length
179 while j < k do
180 s.add(_buffer[j])
181 j += 1
182 end
183 _buffer_pos = j
184 fill_buffer
185 end
186 return s.to_s
187 end
188
189 redef fun append_line_to(s)
190 do
191 loop
192 # First phase: look for a '\n'
193 var i = _buffer_pos
194 while i < _buffer.length and _buffer.chars[i] != '\n' do i += 1
195
196 # if there is something to append
197 if i > _buffer_pos then
198 # Enlarge the string (if needed)
199 s.enlarge(s.length + i - _buffer_pos)
200
201 # Copy from the buffer to the string
202 var j = _buffer_pos
203 while j < i do
204 s.add(_buffer.chars[j])
205 j += 1
206 end
207 end
208
209 if i < _buffer.length then
210 # so \n is in _buffer[i]
211 _buffer_pos = i + 1 # skip \n
212 return
213 else
214 # so \n is not found
215 _buffer_pos = i
216 if end_reached then
217 return
218 else
219 fill_buffer
220 end
221 end
222 end
223 end
224
225 redef fun eof do return _buffer_pos >= _buffer.length and end_reached
226
227 # The buffer
228 private var buffer: nullable FlatBuffer = null
229
230 # The current position in the buffer
231 private var buffer_pos: Int = 0
232
233 # Fill the buffer
234 protected fun fill_buffer is abstract
235
236 # Is the last fill_buffer reach the end
237 protected fun end_reached: Bool is abstract
238
239 # Allocate a `_buffer` for a given `capacity`.
240 protected fun prepare_buffer(capacity: Int)
241 do
242 _buffer = new FlatBuffer.with_capacity(capacity)
243 _buffer_pos = 0 # need to read
244 end
245 end
246
247 interface IOStream
248 super IStream
249 super OStream
250 end
251
252 ##############################################################"
253
254 abstract class FDStream
255 super IOS
256 # File description
257 var fd: Int
258
259 redef fun close do native_close(fd)
260
261 private fun native_close(i: Int): Int is extern "stream_FDStream_FDStream_native_close_1"
262 private fun native_read_char(i: Int): Int is extern "stream_FDStream_FDStream_native_read_char_1"
263 private fun native_read(i: Int, buf: NativeString, len: Int): Int is extern "stream_FDStream_FDStream_native_read_3"
264 private fun native_write(i: Int, buf: NativeString, len: Int): Int is extern "stream_FDStream_FDStream_native_write_3"
265 private fun native_write_char(i: Int, c: Char): Int is extern "stream_FDStream_FDStream_native_write_char_2"
266 end
267
268 class FDIStream
269 super FDStream
270 super IStream
271 redef var eof: Bool = false
272
273 redef fun read_char
274 do
275 var nb = native_read_char(fd)
276 if nb == -1 then eof = true
277 return nb
278 end
279 end
280
281 class FDOStream
282 super FDStream
283 super OStream
284 redef var is_writable = true
285
286 redef fun write(s)
287 do
288 var nb = native_write(fd, s.to_cstring, s.length)
289 if nb < s.length then is_writable = false
290 end
291 end
292
293 class FDIOStream
294 super FDIStream
295 super FDOStream
296 super IOStream
297 end
298
299 redef interface Object
300 # returns first available stream to read or write to
301 # return null on interruption (possibly a signal)
302 protected fun poll( streams : Sequence[FDStream] ) : nullable FDStream
303 do
304 var in_fds = new Array[Int]
305 var out_fds = new Array[Int]
306 var fd_to_stream = new HashMap[Int,FDStream]
307 for s in streams do
308 var fd = s.fd
309 if s isa FDIStream then in_fds.add( fd )
310 if s isa FDOStream then out_fds.add( fd )
311
312 fd_to_stream[fd] = s
313 end
314
315 var polled_fd = intern_poll( in_fds, out_fds )
316
317 if polled_fd == null then
318 return null
319 else
320 return fd_to_stream[polled_fd]
321 end
322 end
323
324 private fun intern_poll(in_fds: Array[Int], out_fds: Array[Int]) : nullable Int is extern import Array[Int].length, Array[Int].[], Int.as(nullable Int) `{
325 int in_len, out_len, total_len;
326 struct pollfd *c_fds;
327 sigset_t sigmask;
328 int i;
329 int first_polled_fd = -1;
330 int result;
331
332 in_len = Array_of_Int_length( in_fds );
333 out_len = Array_of_Int_length( out_fds );
334 total_len = in_len + out_len;
335 c_fds = malloc( sizeof(struct pollfd) * total_len );
336
337 /* input streams */
338 for ( i=0; i<in_len; i ++ ) {
339 int fd;
340 fd = Array_of_Int__index( in_fds, i );
341
342 c_fds[i].fd = fd;
343 c_fds[i].events = POLLIN;
344 }
345
346 /* output streams */
347 for ( i=0; i<out_len; i ++ ) {
348 int fd;
349 fd = Array_of_Int__index( out_fds, i );
350
351 c_fds[i].fd = fd;
352 c_fds[i].events = POLLOUT;
353 }
354
355 /* poll all fds, unlimited timeout */
356 result = poll( c_fds, total_len, -1 );
357
358 if ( result > 0 ) {
359 /* analyse results */
360 for ( i=0; i<total_len; i++ )
361 if ( c_fds[i].revents & c_fds[i].events || /* awaited event */
362 c_fds[i].revents & POLLHUP ) /* closed */
363 {
364 first_polled_fd = c_fds[i].fd;
365 break;
366 }
367
368 return Int_as_nullable( first_polled_fd );
369 }
370 else if ( result < 0 )
371 fprintf( stderr, "Error in Stream:poll: %s\n", strerror( errno ) );
372
373 return null_Int();
374 `}
375 end
376
377 # Stream to a String.
378 #
379 # Mainly used for compatibility with OStream type and tests.
380 class StringOStream
381 super OStream
382
383 private var content = new Array[String]
384 redef fun to_s do return content.to_s
385 redef fun is_writable do return not closed
386 redef fun write(str)
387 do
388 assert not closed
389 content.add(str.to_s)
390 end
391
392 protected var closed = false
393 redef fun close do closed = true
394 end
395
396 # Stream from a String.
397 #
398 # Mainly used for compatibility with IStream type and tests.
399 class StringIStream
400 super IStream
401
402 # The string to read from.
403 var source: String
404
405 # The current position in the string.
406 private var cursor: Int = 0
407
408 redef fun read_char do
409 if cursor < source.length then
410 var c = source[cursor].ascii
411
412 cursor += 1
413 return c
414 else
415 return -1
416 end
417 end
418
419 redef fun close do
420 source = ""
421 end
422
423 redef fun eof do return cursor >= source.length
424 end