Merge: lib/popcorn: introduce AuthHandler to check user session
[nit.git] / lib / core / file.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 # Copyright 2008 Jean-Sébastien Gélinas <calestar@gmail.com>
6 #
7 # This file is free software, which comes along with NIT. This software is
8 # distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
9 # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
10 # PARTICULAR PURPOSE. You can modify it is you want, provided this header
11 # is kept unaltered, and a notification of the changes is added.
12 # You are allowed to redistribute it and sell it, alone or is a part of
13 # another product.
14
15 # File manipulations (create, read, write, etc.)
16 module file
17
18 intrude import stream
19 intrude import text::ropes
20 import text
21 import time
22 import gc
23
24 in "C Header" `{
25 #include <dirent.h>
26 #include <string.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <unistd.h>
30 #include <stdio.h>
31 #include <errno.h>
32 #ifndef _WIN32
33 #include <poll.h>
34 #endif
35 `}
36
37 in "C" `{
38 #ifdef _WIN32
39 #include <windows.h>
40 #endif
41 `}
42
43 # `Stream` used to interact with a File or FileDescriptor
44 abstract class FileStream
45 super Stream
46 # The path of the file.
47 var path: nullable String = null
48
49 # The FILE *.
50 private var file: nullable NativeFile = null
51
52 # The status of a file. see POSIX stat(2).
53 #
54 # var f = new FileReader.open("/etc/issue")
55 # assert f.file_stat.is_file
56 #
57 # Return null in case of error
58 fun file_stat: nullable FileStat
59 do
60 var stat = _file.as(not null).file_stat
61 if stat.address_is_null then return null
62 return new FileStat(stat)
63 end
64
65 # File descriptor of this file
66 fun fd: Int do return _file.as(not null).fileno
67
68 redef fun close
69 do
70 var file = _file
71 if file == null then return
72 if file.address_is_null then
73 if last_error != null then return
74 last_error = new IOError("Cannot close unopened file")
75 return
76 end
77 var i = file.io_close
78 if i != 0 then
79 last_error = new IOError("Close failed due to error {sys.errno.strerror}")
80 end
81 _file = null
82 end
83
84 # Sets the buffering mode for the current FileStream
85 #
86 # If the buf_size is <= 0, its value will be 512 by default
87 #
88 # The mode is any of the buffer_mode enumeration in `Sys`:
89 #
90 # * `buffer_mode_full`
91 # * `buffer_mode_line`
92 # * `buffer_mode_none`
93 fun set_buffering_mode(buf_size, mode: Int) do
94 if buf_size <= 0 then buf_size = 512
95 if _file.as(not null).set_buffering_type(buf_size, mode) != 0 then
96 last_error = new IOError("Error while changing buffering type for FileStream, returned error {sys.errno.strerror}")
97 end
98 end
99 end
100
101 # `Stream` that can read from a File
102 class FileReader
103 super FileStream
104 super BufferedReader
105 super PollableReader
106 # Misc
107
108 # Open the same file again.
109 # The original path is reused, therefore the reopened file can be a different file.
110 #
111 # var f = new FileReader.open("/etc/issue")
112 # var l = f.read_line
113 # f.reopen
114 # assert l == f.read_line
115 fun reopen
116 do
117 if not eof and not _file.as(not null).address_is_null then close
118 last_error = null
119 _file = new NativeFile.io_open_read(path.as(not null).to_cstring)
120 if _file.as(not null).address_is_null then
121 last_error = new IOError("Cannot open `{path.as(not null)}`: {sys.errno.strerror}")
122 end_reached = true
123 return
124 end
125 end_reached = false
126 buffer_reset
127 end
128
129 redef fun close
130 do
131 super
132 buffer_reset
133 end_reached = true
134 end
135
136 redef fun fill_buffer
137 do
138 var nb = _file.as(not null).io_read(_buffer, _buffer_capacity)
139 if last_error == null and _file.as(not null).ferror then
140 last_error = new IOError("Cannot read `{path.as(not null)}`: {sys.errno.strerror}")
141 end_reached = true
142 end
143 if nb <= 0 then
144 end_reached = true
145 nb = 0
146 end
147 _buffer_length = nb
148 _buffer_pos = 0
149 end
150
151 # End of file?
152 redef var end_reached = false
153
154 # Open the file at `path` for reading.
155 #
156 # var f = new FileReader.open("/etc/issue")
157 # assert not f.end_reached
158 # f.close
159 #
160 # In case of error, `last_error` is set
161 #
162 # f = new FileReader.open("/fail/does not/exist")
163 # assert f.end_reached
164 # assert f.last_error != null
165 init open(path: String)
166 do
167 self.path = path
168 prepare_buffer(100)
169 _file = new NativeFile.io_open_read(path.to_cstring)
170 if _file.as(not null).address_is_null then
171 last_error = new IOError("Cannot open `{path}`: {sys.errno.strerror}")
172 end_reached = true
173 end
174 end
175
176 # Creates a new File stream from a file descriptor
177 #
178 # This is a low-level method.
179 init from_fd(fd: Int) do
180 self.path = ""
181 prepare_buffer(1)
182 _file = fd.fd_to_stream(read_only)
183 if _file.as(not null).address_is_null then
184 last_error = new IOError("Error: Converting fd {fd} to stream failed with '{sys.errno.strerror}'")
185 end_reached = true
186 end
187 end
188
189 redef fun poll_in
190 do
191 var res = native_poll_in(fd)
192 if res == -1 then
193 last_error = new IOError(errno.to_s)
194 return false
195 else return res > 0
196 end
197
198 private fun native_poll_in(fd: Int): Int `{
199 #ifndef _WIN32
200 struct pollfd fds = {(int)fd, POLLIN, 0};
201 return poll(&fds, 1, 0);
202 #else
203 return 0;
204 #endif
205 `}
206 end
207
208 # `Stream` that can write to a File
209 class FileWriter
210 super FileStream
211 super Writer
212
213 redef fun write_bytes(s) do
214 if last_error != null then return
215 if not _is_writable then
216 last_error = new IOError("cannot write to non-writable stream")
217 return
218 end
219 write_native(s.items, 0, s.length)
220 end
221
222 redef fun write(s)
223 do
224 if last_error != null then return
225 if not _is_writable then
226 last_error = new IOError("cannot write to non-writable stream")
227 return
228 end
229 s.write_native_to(self)
230 end
231
232 redef fun write_byte(value)
233 do
234 if last_error != null then return
235 if not _is_writable then
236 last_error = new IOError("Cannot write to non-writable stream")
237 return
238 end
239 if _file.as(not null).address_is_null then
240 last_error = new IOError("Writing on a null stream")
241 _is_writable = false
242 return
243 end
244
245 var err = _file.as(not null).write_byte(value)
246 if err != 1 then
247 # Big problem
248 last_error = new IOError("Problem writing a byte: {err}")
249 end
250 end
251
252 redef fun close
253 do
254 super
255 _is_writable = false
256 end
257 redef var is_writable = false
258
259 # Write `len` bytes from `native`.
260 private fun write_native(native: NativeString, from, len: Int)
261 do
262 if last_error != null then return
263 if not _is_writable then
264 last_error = new IOError("Cannot write to non-writable stream")
265 return
266 end
267 if _file.as(not null).address_is_null then
268 last_error = new IOError("Writing on a null stream")
269 _is_writable = false
270 return
271 end
272 var err = _file.as(not null).io_write(native, from, len)
273 if err != len then
274 # Big problem
275 last_error = new IOError("Problem in writing : {err} {len} \n")
276 end
277 end
278
279 # Open the file at `path` for writing.
280 init open(path: String)
281 do
282 _file = new NativeFile.io_open_write(path.to_cstring)
283 self.path = path
284 _is_writable = true
285 if _file.as(not null).address_is_null then
286 last_error = new IOError("Cannot open `{path}`: {sys.errno.strerror}")
287 is_writable = false
288 end
289 end
290
291 # Creates a new File stream from a file descriptor
292 init from_fd(fd: Int) do
293 self.path = ""
294 _file = fd.fd_to_stream(wipe_write)
295 _is_writable = true
296 if _file.as(not null).address_is_null then
297 last_error = new IOError("Error: Opening stream from file descriptor {fd} failed with '{sys.errno.strerror}'")
298 _is_writable = false
299 end
300 end
301 end
302
303 redef class Int
304 # Creates a file stream from a file descriptor `fd` using the file access `mode`.
305 #
306 # NOTE: The `mode` specified must be compatible with the one used in the file descriptor.
307 private fun fd_to_stream(mode: NativeString): NativeFile `{
308 return fdopen((int)self, mode);
309 `}
310 end
311
312 # Constant for read-only file streams
313 private fun read_only: NativeString do return once "r".to_cstring
314
315 # Constant for write-only file streams
316 #
317 # If a stream is opened on a file with this method,
318 # it will wipe the previous file if any.
319 # Else, it will create the file.
320 private fun wipe_write: NativeString do return once "w".to_cstring
321
322 ###############################################################################
323
324 # Standard input stream.
325 #
326 # The class of the default value of `sys.stdin`.
327 class Stdin
328 super FileReader
329
330 init do
331 _file = new NativeFile.native_stdin
332 path = "/dev/stdin"
333 prepare_buffer(1)
334 end
335 end
336
337 # Standard output stream.
338 #
339 # The class of the default value of `sys.stdout`.
340 class Stdout
341 super FileWriter
342 init do
343 _file = new NativeFile.native_stdout
344 path = "/dev/stdout"
345 _is_writable = true
346 set_buffering_mode(256, sys.buffer_mode_line)
347 end
348 end
349
350 # Standard error stream.
351 #
352 # The class of the default value of `sys.stderr`.
353 class Stderr
354 super FileWriter
355 init do
356 _file = new NativeFile.native_stderr
357 path = "/dev/stderr"
358 _is_writable = true
359 end
360 end
361
362 ###############################################################################
363
364 redef class Writable
365 # Like `write_to` but take care of creating the file
366 fun write_to_file(filepath: String)
367 do
368 var stream = new FileWriter.open(filepath)
369 write_to(stream)
370 stream.close
371 end
372 end
373
374 # Utility class to access file system services.
375 #
376 # Usually created with `Text::to_path`.
377 #
378 # `Path` objects does not necessarily represent existing files in a file system.
379 # They are sate-less objects that efficiently represent path information.
380 # They also provide an easy to use API on file-system services and are used to store their error status (see `last_error`)
381 class Path
382
383 private var path: String
384
385 # Path to this file
386 redef fun to_s do return path
387
388 # Short name of the file at `to_s`
389 #
390 # ~~~
391 # var path = "/tmp/somefile".to_path
392 # assert path.filename == "somefile"
393 # ~~~
394 #
395 # The result does not depend of the file system, thus is cached for efficiency.
396 var filename: String = path.basename is lazy
397
398 # The path simplified by removing useless `.`, removing `//`, and resolving `..`
399 #
400 # ~~~
401 # var path = "somedir/./tmp/../somefile".to_path
402 # assert path.simplified.to_s == "somedir/somefile"
403 # ~~~
404 #
405 # See `String:simplify_path` for details.
406 #
407 # The result does not depend of the file system, thus is cached for efficiency.
408 var simplified: Path is lazy do
409 var res = path.simplify_path.to_path
410 res.simplified = res
411 return res
412 end
413
414 # Return the directory part of the path.
415 #
416 # ~~~
417 # var path = "/foo/bar/baz".to_path
418 # assert path.dir.to_s == "/foo/bar"
419 # assert path.dir.dir.to_s == "/foo"
420 # assert path.dir.dir.dir.to_s == "/"
421 # ~~~
422 #
423 # See `String:dirname` for details.
424 #
425 # The result does not depend of the file system, thus is cached for efficiency.
426 var dir: Path is lazy do
427 return path.dirname.to_path
428 end
429
430 # Last error produced by I/O operations.
431 #
432 # ~~~
433 # var path = "/does/not/exists".to_path
434 # assert path.last_error == null
435 # path.read_all
436 # assert path.last_error != null
437 # ~~~
438 #
439 # Since `Path` objects are stateless, `last_error` is reset on most operations and reflect its status.
440 var last_error: nullable IOError = null is writable
441
442 # Does the file at `path` exists?
443 #
444 # If the file does not exists, `last_error` is set to the information.
445 fun exists: Bool do return stat != null
446
447 # Information on the file at `self` following symbolic links
448 #
449 # Returns `null` if there is no file at `self`.
450 # `last_error` is updated to contains the error information on error, and null on success.
451 #
452 # assert "/etc/".to_path.stat.is_dir
453 # assert "/etc/issue".to_path.stat.is_file
454 # assert "/fail/does not/exist".to_path.stat == null
455 #
456 # ~~~
457 # var p = "/tmp/".to_path
458 # var stat = p.stat
459 # if stat != null then # Does `p` exist?
460 # print "It's size is {stat.size}"
461 # if stat.is_dir then print "It's a directory"
462 # else
463 # print p.last_error.to_s
464 # end
465 # ~~~
466 fun stat: nullable FileStat
467 do
468 var stat = path.to_cstring.file_stat
469 if stat.address_is_null then
470 last_error = new IOError("Cannot open `{path}`: {sys.errno.strerror}")
471 return null
472 end
473 last_error = null
474 return new FileStat(stat)
475 end
476
477 # Information on the file or link at `self`
478 #
479 # Do not follow symbolic links.
480 fun link_stat: nullable FileStat
481 do
482 var stat = path.to_cstring.file_lstat
483 if stat.address_is_null then
484 last_error = new IOError("Cannot open `{path}`: {sys.errno.strerror}")
485 return null
486 end
487 last_error = null
488 return new FileStat(stat)
489 end
490
491 # Delete a file from the file system.
492 #
493 # `last_error` is updated to contains the error information on error, and null on success.
494 fun delete
495 do
496 var res = path.to_cstring.file_delete
497 if not res then
498 last_error = new IOError("Cannot delete `{path}`: {sys.errno.strerror}")
499 else
500 last_error = null
501 end
502 end
503
504 # Copy content of file at `path` to `dest`.
505 #
506 # `last_error` is updated to contains the error information on error, and null on success.
507 fun copy(dest: Path)
508 do
509 last_error = null
510 var input = open_ro
511 var output = dest.open_wo
512
513 while not input.eof do
514 var buffer = input.read_bytes(1024)
515 output.write_bytes buffer
516 end
517
518 input.close
519 output.close
520 last_error = input.last_error or else output.last_error
521 end
522
523 # Open this file for reading.
524 #
525 # ~~~
526 # var file = "/etc/issue".to_path.open_ro
527 # print file.read_line
528 # file.close
529 # ~~~
530 #
531 # Note that it is the user's responsibility to close the stream.
532 # Therefore, for simple use case, look at `read_all` or `each_line`.
533 #
534 # ENSURE `last_error == result.last_error`
535 fun open_ro: FileReader
536 do
537 var res = new FileReader.open(path)
538 last_error = res.last_error
539 return res
540 end
541
542 # Open this file for writing
543 #
544 # ~~~
545 # var file = "bla.log".to_path.open_wo
546 # file.write "Blabla\n"
547 # file.close
548 # ~~~
549 #
550 # Note that it is the user's responsibility to close the stream.
551 # Therefore, for simple use case, look at `Writable::write_to_file`.
552 #
553 # ENSURE `last_error == result.last_error`
554 fun open_wo: FileWriter
555 do
556 var res = new FileWriter.open(path)
557 last_error = res.last_error
558 return res
559 end
560
561 # Read all the content of the file as a string.
562 #
563 # ~~~
564 # var content = "/etc/issue".to_path.read_all
565 # print content
566 # ~~~
567 #
568 # `last_error` is updated to contains the error information on error, and null on success.
569 # In case of error, the result might be empty or truncated.
570 #
571 # See `Reader::read_all` for details.
572 fun read_all: String do return read_all_bytes.to_s
573
574 # Read all the content on the file as a raw sequence of bytes.
575 #
576 # ~~~
577 # var content = "/etc/issue".to_path.read_all_bytes
578 # print content.to_s
579 # ~~~
580 #
581 # `last_error` is updated to contains the error information on error, and null on success.
582 # In case of error, the result might be empty or truncated.
583 fun read_all_bytes: Bytes
584 do
585 var s = open_ro
586 var res = s.read_all_bytes
587 s.close
588 last_error = s.last_error
589 return res
590 end
591
592 # Read all the lines of the file
593 #
594 # ~~~
595 # var lines = "/etc/passwd".to_path.read_lines
596 #
597 # print "{lines.length} users"
598 #
599 # for l in lines do
600 # var fields = l.split(":")
601 # print "name={fields[0]} uid={fields[2]}"
602 # end
603 # ~~~
604 #
605 # `last_error` is updated to contains the error information on error, and null on success.
606 # In case of error, the result might be empty or truncated.
607 #
608 # See `Reader::read_lines` for details.
609 fun read_lines: Array[String]
610 do
611 var s = open_ro
612 var res = s.read_lines
613 s.close
614 last_error = s.last_error
615 return res
616 end
617
618 # Return an iterator on each line of the file
619 #
620 # ~~~
621 # for l in "/etc/passwd".to_path.each_line do
622 # var fields = l.split(":")
623 # print "name={fields[0]} uid={fields[2]}"
624 # end
625 # ~~~
626 #
627 # Note: the stream is automatically closed at the end of the file (see `LineIterator::close_on_finish`)
628 #
629 # `last_error` is updated to contains the error information on error, and null on success.
630 #
631 # See `Reader::each_line` for details.
632 fun each_line: LineIterator
633 do
634 var s = open_ro
635 var res = s.each_line
636 res.close_on_finish = true
637 last_error = s.last_error
638 return res
639 end
640
641 # Correctly join `self` with `subpath` using the directory separator.
642 #
643 # Using a standard "{self}/{path}" does not work in the following cases:
644 #
645 # * `self` is empty.
646 # * `path` starts with `'/'`.
647 #
648 # This method ensures that the join is valid.
649 #
650 # var hello = "hello".to_path
651 # assert (hello/"world").to_s == "hello/world"
652 # assert ("hel/lo".to_path / "wor/ld").to_s == "hel/lo/wor/ld"
653 # assert ("".to_path / "world").to_s == "world"
654 # assert (hello / "/world").to_s == "/world"
655 # assert ("hello/".to_path / "world").to_s == "hello/world"
656 fun /(subpath: String): Path do return new Path(path / subpath)
657
658 # Lists the files contained within the directory at `path`.
659 #
660 # var files = "/etc".to_path.files
661 # assert files.has("/etc/issue".to_path)
662 #
663 # `last_error` is updated to contains the error information on error, and null on success.
664 # In case of error, the result might be empty or truncated.
665 #
666 # var path = "/etc/issue".to_path
667 # files = path.files
668 # assert files.is_empty
669 # assert path.last_error != null
670 fun files: Array[Path]
671 do
672 last_error = null
673 var res = new Array[Path]
674 var d = new NativeDir.opendir(path.to_cstring)
675 if d.address_is_null then
676 last_error = new IOError("Cannot list directory `{path}`: {sys.errno.strerror}")
677 return res
678 end
679
680 loop
681 var de = d.readdir
682 if de.address_is_null then
683 # readdir cannot fail, so null means end of list
684 break
685 end
686 var name = de.to_s_with_copy
687 if name == "." or name == ".." then continue
688 res.add self / name
689 end
690 d.closedir
691
692 return res
693 end
694
695 # Is `self` the path to an existing directory ?
696 #
697 # ~~~nit
698 # assert ".".to_path.is_dir
699 # assert not "/etc/issue".to_path.is_dir
700 # assert not "/should/not/exist".to_path.is_dir
701 # ~~~
702 fun is_dir: Bool do
703 var st = stat
704 if st == null then return false
705 return st.is_dir
706 end
707
708 # Delete a directory and all of its content
709 #
710 # Does not go through symbolic links and may get stuck in a cycle if there
711 # is a cycle in the file system.
712 #
713 # `last_error` is updated to contains the error information on error, and null on success.
714 # The method does not stop on the first error and try to remove most file and directories.
715 #
716 # ~~~
717 # var path = "/does/not/exists/".to_path
718 # path.rmdir
719 # assert path.last_error != null
720 # ~~~
721 fun rmdir
722 do
723 last_error = null
724 for file in self.files do
725 var stat = file.link_stat
726 if stat == null then
727 last_error = file.last_error
728 continue
729 end
730 if stat.is_dir then
731 # Recursively rmdir
732 file.rmdir
733 else
734 file.delete
735 end
736 if last_error == null then last_error = file.last_error
737 end
738
739 # Delete the directory itself if things are fine
740 if last_error == null then
741 if path.to_cstring.rmdir then
742 last_error = new IOError("Cannot remove `{self}`: {sys.errno.strerror}")
743 end
744 end
745 end
746
747 redef fun ==(other) do return other isa Path and simplified.path == other.simplified.path
748 redef fun hash do return simplified.path.hash
749 end
750
751 # Information on a file
752 #
753 # Created by `Path::stat` and `Path::link_stat`.
754 #
755 # The information within this class is gathered when the instance is initialized
756 # it will not be updated if the targeted file is modified.
757 class FileStat
758 super Finalizable
759
760 # TODO private init
761
762 # The low-level status of a file
763 #
764 # See: POSIX stat(2)
765 private var stat: NativeFileStat
766
767 private var finalized = false
768
769 redef fun finalize
770 do
771 if not finalized then
772 stat.free
773 finalized = true
774 end
775 end
776
777 # Returns the last access time in seconds since Epoch
778 fun last_access_time: Int
779 do
780 assert not finalized
781 return stat.atime
782 end
783
784 # Returns the last access time
785 #
786 # alias for `last_access_time`
787 fun atime: Int do return last_access_time
788
789 # Returns the last modification time in seconds since Epoch
790 fun last_modification_time: Int
791 do
792 assert not finalized
793 return stat.mtime
794 end
795
796 # Returns the last modification time
797 #
798 # alias for `last_modification_time`
799 fun mtime: Int do return last_modification_time
800
801
802 # Size of the file at `path`
803 fun size: Int
804 do
805 assert not finalized
806 return stat.size
807 end
808
809 # Is self a regular file and not a device file, pipe, socket, etc.?
810 fun is_file: Bool
811 do
812 assert not finalized
813 return stat.is_reg
814 end
815
816 # Alias for `is_file`
817 fun is_reg: Bool do return is_file
818
819 # Is this a directory?
820 fun is_dir: Bool
821 do
822 assert not finalized
823 return stat.is_dir
824 end
825
826 # Is this a symbolic link?
827 fun is_link: Bool
828 do
829 assert not finalized
830 return stat.is_lnk
831 end
832
833 # FIXME Make the following POSIX only? or implement in some other way on Windows
834
835 # Returns the last status change time in seconds since Epoch
836 fun last_status_change_time: Int
837 do
838 assert not finalized
839 return stat.ctime
840 end
841
842 # Returns the last status change time
843 #
844 # alias for `last_status_change_time`
845 fun ctime: Int do return last_status_change_time
846
847 # Returns the permission bits of file
848 fun mode: Int
849 do
850 assert not finalized
851 return stat.mode
852 end
853
854 # Is this a character device?
855 fun is_chr: Bool
856 do
857 assert not finalized
858 return stat.is_chr
859 end
860
861 # Is this a block device?
862 fun is_blk: Bool
863 do
864 assert not finalized
865 return stat.is_blk
866 end
867
868 # Is this a FIFO pipe?
869 fun is_fifo: Bool
870 do
871 assert not finalized
872 return stat.is_fifo
873 end
874
875 # Is this a UNIX socket
876 fun is_sock: Bool
877 do
878 assert not finalized
879 return stat.is_sock
880 end
881 end
882
883 redef class Text
884 # Access file system related services on the path at `self`
885 fun to_path: Path do return new Path(to_s)
886
887 private fun write_native_to(s: FileWriter)
888 do
889 for i in substrings do s.write_native(i.to_cstring, 0, i.byte_length)
890 end
891 end
892
893 redef class String
894 # return true if a file with this names exists
895 fun file_exists: Bool do return to_cstring.file_exists
896
897 # The status of a file. see POSIX stat(2).
898 fun file_stat: nullable FileStat
899 do
900 var stat = to_cstring.file_stat
901 if stat.address_is_null then return null
902 return new FileStat(stat)
903 end
904
905 # The status of a file or of a symlink. see POSIX lstat(2).
906 fun file_lstat: nullable FileStat
907 do
908 var stat = to_cstring.file_lstat
909 if stat.address_is_null then return null
910 return new FileStat(stat)
911 end
912
913 # Remove a file, return true if success
914 fun file_delete: Bool do return to_cstring.file_delete
915
916 # Copy content of file at `self` to `dest`
917 fun file_copy_to(dest: String) do to_path.copy(dest.to_path)
918
919 # Remove the trailing `extension`.
920 #
921 # `extension` usually starts with a dot but could be anything.
922 #
923 # assert "file.txt".strip_extension(".txt") == "file"
924 # assert "file.txt".strip_extension("le.txt") == "fi"
925 # assert "file.txt".strip_extension("xt") == "file.t"
926 #
927 # If `extension == null`, the rightmost extension is stripped, including the last dot.
928 #
929 # assert "file.txt".strip_extension == "file"
930 #
931 # If `extension` is not present, `self` is returned unmodified.
932 #
933 # assert "file.txt".strip_extension(".tar.gz") == "file.txt"
934 fun strip_extension(extension: nullable String): String
935 do
936 if extension == null then
937 extension = file_extension
938 if extension == null then
939 return self
940 else extension = ".{extension}"
941 end
942
943 if has_suffix(extension) then
944 return substring(0, length - extension.length)
945 end
946 return self
947 end
948
949 # Extract the basename of a path and strip the `extension`
950 #
951 # The extension is stripped only if `extension != null`.
952 #
953 # assert "/path/to/a_file.ext".basename(".ext") == "a_file"
954 # assert "path/to/a_file.ext".basename(".ext") == "a_file"
955 # assert "path/to/a_file.ext".basename == "a_file.ext"
956 # assert "path/to".basename(".ext") == "to"
957 # assert "path/to/".basename(".ext") == "to"
958 # assert "path/to".basename == "to"
959 # assert "path".basename("") == "path"
960 # assert "/path".basename("") == "path"
961 # assert "/".basename("") == "/"
962 # assert "".basename("") == ""
963 fun basename(extension: nullable String): String
964 do
965 var n = self
966 if is_windows then
967 var l = length - 1 # Index of the last char
968 while l > 0 and (self.chars[l] == '/' or chars[l] == '\\') do l -= 1 # remove all trailing `/`
969 if l == 0 then return "/"
970 var pos = chars.last_index_of_from('/', l)
971 pos = pos.max(last_index_of_from('\\', l))
972 if pos >= 0 then
973 n = substring(pos+1, l-pos)
974 end
975 else
976 var l = length - 1 # Index of the last char
977 while l > 0 and self.chars[l] == '/' do l -= 1 # remove all trailing `/`
978 if l == 0 then return "/"
979 var pos = chars.last_index_of_from('/', l)
980 if pos >= 0 then
981 n = substring(pos+1, l-pos)
982 end
983 end
984
985 if extension != null then
986 return n.strip_extension(extension)
987 else return n
988 end
989
990 # Extract the dirname of a path
991 #
992 # assert "/path/to/a_file.ext".dirname == "/path/to"
993 # assert "path/to/a_file.ext".dirname == "path/to"
994 # assert "path/to".dirname == "path"
995 # assert "path/to/".dirname == "path"
996 # assert "path".dirname == "."
997 # assert "/path".dirname == "/"
998 # assert "/".dirname == "/"
999 # assert "".dirname == "."
1000 fun dirname: String
1001 do
1002 var l = length - 1 # Index of the last char
1003 while l > 0 and self.chars[l] == '/' do l -= 1 # remove all trailing `/`
1004 var pos = chars.last_index_of_from('/', l)
1005 if pos > 0 then
1006 return substring(0, pos)
1007 else if pos == 0 then
1008 return "/"
1009 else
1010 return "."
1011 end
1012 end
1013
1014 # Return the canonicalized absolute pathname (see POSIX function `realpath`)
1015 #
1016 # Require: `file_exists`
1017 fun realpath: String do
1018 var cs = to_cstring.file_realpath
1019 assert file_exists
1020 var res = cs.to_s_with_copy
1021 cs.free
1022 return res
1023 end
1024
1025 # Simplify a file path by remove useless `.`, removing `//`, and resolving `..`
1026 #
1027 # * `..` are not resolved if they start the path
1028 # * starting `.` is simplified unless the path is empty
1029 # * starting `/` is not removed
1030 # * trailing `/` is removed
1031 #
1032 # Note that the method only work on the string:
1033 #
1034 # * no I/O access is performed
1035 # * the validity of the path is not checked
1036 #
1037 # ~~~
1038 # assert "some/./complex/../../path/from/../to/a////file//".simplify_path == "path/to/a/file"
1039 # assert "../dir/file".simplify_path == "../dir/file"
1040 # assert "dir/../../".simplify_path == ".."
1041 # assert "dir/..".simplify_path == "."
1042 # assert "//absolute//path/".simplify_path == "/absolute/path"
1043 # assert "//absolute//../".simplify_path == "/"
1044 # assert "/".simplify_path == "/"
1045 # assert "../".simplify_path == ".."
1046 # assert "./".simplify_path == "."
1047 # assert "././././././".simplify_path == "."
1048 # assert "./../dir".simplify_path == "../dir"
1049 # assert "./dir".simplify_path == "dir"
1050 # ~~~
1051 fun simplify_path: String
1052 do
1053 var a = self.split_with("/")
1054 var a2 = new Array[String]
1055 for x in a do
1056 if x == "." and not a2.is_empty then continue # skip `././`
1057 if x == "" and not a2.is_empty then continue # skip `//`
1058 if x == ".." and not a2.is_empty and a2.last != ".." then
1059 if a2.last == "." then # do not skip `./../`
1060 a2.pop # reduce `./../` in `../`
1061 else # reduce `dir/../` in `/`
1062 a2.pop
1063 continue
1064 end
1065 else if not a2.is_empty and a2.last == "." then
1066 a2.pop # reduce `./dir` in `dir`
1067 end
1068 a2.push(x)
1069 end
1070 if a2.is_empty then return "."
1071 if a2.length == 1 and a2.first == "" then return "/"
1072 return a2.join("/")
1073 end
1074
1075 # Correctly join two path using the directory separator.
1076 #
1077 # Using a standard "{self}/{path}" does not work in the following cases:
1078 #
1079 # * `self` is empty.
1080 # * `path` starts with `'/'`.
1081 #
1082 # This method ensures that the join is valid.
1083 #
1084 # assert "hello".join_path("world") == "hello/world"
1085 # assert "hel/lo".join_path("wor/ld") == "hel/lo/wor/ld"
1086 # assert "".join_path("world") == "world"
1087 # assert "hello".join_path("/world") == "/world"
1088 # assert "hello/".join_path("world") == "hello/world"
1089 # assert "hello/".join_path("/world") == "/world"
1090 #
1091 # Note: You may want to use `simplify_path` on the result.
1092 #
1093 # Note: This method works only with POSIX paths.
1094 fun join_path(path: String): String
1095 do
1096 if path.is_empty then return self
1097 if self.is_empty then return path
1098 if path.chars[0] == '/' then return path
1099 if self.last == '/' then return "{self}{path}"
1100 return "{self}/{path}"
1101 end
1102
1103 # Convert the path (`self`) to a program name.
1104 #
1105 # Ensure the path (`self`) will be treated as-is by POSIX shells when it is
1106 # used as a program name. In order to do that, prepend `./` if needed.
1107 #
1108 # assert "foo".to_program_name == "./foo"
1109 # assert "/foo".to_program_name == "/foo"
1110 # assert "".to_program_name == "./" # At least, your shell will detect the error.
1111 fun to_program_name: String do
1112 if self.has_prefix("/") then
1113 return self
1114 else
1115 return "./{self}"
1116 end
1117 end
1118
1119 # Alias for `join_path`
1120 #
1121 # assert "hello" / "world" == "hello/world"
1122 # assert "hel/lo" / "wor/ld" == "hel/lo/wor/ld"
1123 # assert "" / "world" == "world"
1124 # assert "/hello" / "/world" == "/world"
1125 #
1126 # This operator is quite useful for chaining changes of path.
1127 # The next one being relative to the previous one.
1128 #
1129 # var a = "foo"
1130 # var b = "/bar"
1131 # var c = "baz/foobar"
1132 # assert a/b/c == "/bar/baz/foobar"
1133 fun /(path: String): String do return join_path(path)
1134
1135 # Returns the relative path needed to go from `self` to `dest`.
1136 #
1137 # assert "/foo/bar".relpath("/foo/baz") == "../baz"
1138 # assert "/foo/bar".relpath("/baz/bar") == "../../baz/bar"
1139 #
1140 # If `self` or `dest` is relative, they are considered relatively to `getcwd`.
1141 #
1142 # In some cases, the result is still independent of the current directory:
1143 #
1144 # assert "foo/bar".relpath("..") == "../../.."
1145 #
1146 # In other cases, parts of the current directory may be exhibited:
1147 #
1148 # var p = "../foo/bar".relpath("baz")
1149 # var c = getcwd.basename
1150 # assert p == "../../{c}/baz"
1151 #
1152 # For path resolution independent of the current directory (eg. for paths in URL),
1153 # or to use an other starting directory than the current directory,
1154 # just force absolute paths:
1155 #
1156 # var start = "/a/b/c/d"
1157 # var p2 = (start/"../foo/bar").relpath(start/"baz")
1158 # assert p2 == "../../d/baz"
1159 #
1160 #
1161 # Neither `self` or `dest` has to be real paths or to exist in directories since
1162 # the resolution is only done with string manipulations and without any access to
1163 # the underlying file system.
1164 #
1165 # If `self` and `dest` are the same directory, the empty string is returned:
1166 #
1167 # assert "foo".relpath("foo") == ""
1168 # assert "foo/../bar".relpath("bar") == ""
1169 #
1170 # The empty string and "." designate both the current directory:
1171 #
1172 # assert "".relpath("foo/bar") == "foo/bar"
1173 # assert ".".relpath("foo/bar") == "foo/bar"
1174 # assert "foo/bar".relpath("") == "../.."
1175 # assert "/" + "/".relpath(".") == getcwd
1176 fun relpath(dest: String): String
1177 do
1178 var cwd = getcwd
1179 var from = (cwd/self).simplify_path.split("/")
1180 if from.last.is_empty then from.pop # case for the root directory
1181 var to = (cwd/dest).simplify_path.split("/")
1182 if to.last.is_empty then to.pop # case for the root directory
1183
1184 # Remove common prefixes
1185 while not from.is_empty and not to.is_empty and from.first == to.first do
1186 from.shift
1187 to.shift
1188 end
1189
1190 # Result is going up in `from` with ".." then going down following `to`
1191 var from_len = from.length
1192 if from_len == 0 then return to.join("/")
1193 var up = "../"*(from_len-1) + ".."
1194 if to.is_empty then return up
1195 var res = up + "/" + to.join("/")
1196 return res
1197 end
1198
1199 # Create a directory (and all intermediate directories if needed)
1200 #
1201 # The optional `mode` parameter specifies the permissions of the directory,
1202 # the default value is `0o777`.
1203 #
1204 # Return an error object in case of error.
1205 #
1206 # assert "/etc/".mkdir != null
1207 fun mkdir(mode: nullable Int): nullable Error
1208 do
1209 mode = mode or else 0o777
1210
1211 var dirs = self.split_with("/")
1212 var path = new FlatBuffer
1213 if dirs.is_empty then return null
1214 if dirs[0].is_empty then
1215 # it was a starting /
1216 path.add('/')
1217 end
1218 var error: nullable Error = null
1219 for d in dirs do
1220 if d.is_empty then continue
1221 path.append(d)
1222 path.add('/')
1223 var res = path.to_s.to_cstring.file_mkdir(mode)
1224 if not res and error == null then
1225 error = new IOError("Cannot create directory `{path}`: {sys.errno.strerror}")
1226 end
1227 end
1228 return error
1229 end
1230
1231 # Delete a directory and all of its content, return `true` on success
1232 #
1233 # Does not go through symbolic links and may get stuck in a cycle if there
1234 # is a cycle in the filesystem.
1235 #
1236 # Return an error object in case of error.
1237 #
1238 # assert "/fail/does not/exist".rmdir != null
1239 fun rmdir: nullable Error
1240 do
1241 var p = to_path
1242 p.rmdir
1243 return p.last_error
1244 end
1245
1246 # Change the current working directory
1247 #
1248 # "/etc".chdir
1249 # assert getcwd == "/etc"
1250 # "..".chdir
1251 # assert getcwd == "/"
1252 #
1253 # Return an error object in case of error.
1254 #
1255 # assert "/etc".chdir == null
1256 # assert "/fail/does no/exist".chdir != null
1257 # assert getcwd == "/etc" # unchanger
1258 fun chdir: nullable Error
1259 do
1260 var res = to_cstring.file_chdir
1261 if res then return null
1262 var error = new IOError("Cannot change directory to `{self}`: {sys.errno.strerror}")
1263 return error
1264 end
1265
1266 # Return right-most extension (without the dot)
1267 #
1268 # Only the last extension is returned.
1269 # There is no special case for combined extensions.
1270 #
1271 # assert "file.txt".file_extension == "txt"
1272 # assert "file.tar.gz".file_extension == "gz"
1273 #
1274 # For file without extension, `null` is returned.
1275 # Hoever, for trailing dot, `""` is returned.
1276 #
1277 # assert "file".file_extension == null
1278 # assert "file.".file_extension == ""
1279 #
1280 # The starting dot of hidden files is never considered.
1281 #
1282 # assert ".file.txt".file_extension == "txt"
1283 # assert ".file".file_extension == null
1284 fun file_extension: nullable String
1285 do
1286 var last_slash = chars.last_index_of('.')
1287 if last_slash > 0 then
1288 return substring( last_slash+1, length )
1289 else
1290 return null
1291 end
1292 end
1293
1294 # Returns entries contained within the directory represented by self.
1295 #
1296 # var files = "/etc".files
1297 # assert files.has("issue")
1298 #
1299 # Returns an empty array in case of error
1300 #
1301 # files = "/etc/issue".files
1302 # assert files.is_empty
1303 #
1304 # TODO find a better way to handle errors and to give them back to the user.
1305 fun files: Array[String]
1306 do
1307 var res = new Array[String]
1308 var d = new NativeDir.opendir(to_cstring)
1309 if d.address_is_null then return res
1310
1311 loop
1312 var de = d.readdir
1313 if de.address_is_null then break
1314 var name = de.to_s_with_copy
1315 if name == "." or name == ".." then continue
1316 res.add name
1317 end
1318 d.closedir
1319
1320 return res
1321 end
1322 end
1323
1324 redef class FlatString
1325 redef fun write_native_to(s)
1326 do
1327 s.write_native(items, first_byte, byte_length)
1328 end
1329
1330 redef fun file_extension do
1331 var its = _items
1332 var p = last_byte
1333 var c = its[p]
1334 var st = _first_byte
1335 while p >= st and c != '.'.ascii do
1336 p -= 1
1337 c = its[p]
1338 end
1339 if p <= st then return null
1340 var ls = last_byte
1341 return new FlatString.with_infos(its, ls - p, p + 1)
1342 end
1343
1344 redef fun basename(extension) do
1345 var bname
1346 if is_windows then
1347 var l = last_byte
1348 var its = _items
1349 var min = _first_byte
1350 var sl = '/'.ascii
1351 var ls = '\\'.ascii
1352 while l > min and (its[l] == sl or its[l] == ls) do l -= 1
1353 if l == min then return "\\"
1354 var ns = l
1355 while ns >= min and its[ns] != sl and its[ns] != ls do ns -= 1
1356 bname = new FlatString.with_infos(its, l - ns, ns + 1)
1357 else
1358 var l = last_byte
1359 var its = _items
1360 var min = _first_byte
1361 var sl = '/'.ascii
1362 while l > min and its[l] == sl do l -= 1
1363 if l == min then return "/"
1364 var ns = l
1365 while ns >= min and its[ns] != sl do ns -= 1
1366 bname = new FlatString.with_infos(its, l - ns, ns + 1)
1367 end
1368
1369 return if extension != null then bname.strip_extension(extension) else bname
1370 end
1371 end
1372
1373 redef class NativeString
1374 private fun file_exists: Bool `{
1375 #ifdef _WIN32
1376 DWORD attribs = GetFileAttributesA(self);
1377 return attribs != INVALID_FILE_ATTRIBUTES;
1378 #else
1379 FILE *hdl = fopen(self,"r");
1380 if(hdl != NULL){
1381 fclose(hdl);
1382 }
1383 return hdl != NULL;
1384 #endif
1385 `}
1386
1387 private fun file_stat: NativeFileStat `{
1388 struct stat buff;
1389 if(stat(self, &buff) != -1) {
1390 struct stat* stat_element;
1391 stat_element = malloc(sizeof(struct stat));
1392 return memcpy(stat_element, &buff, sizeof(struct stat));
1393 }
1394 return 0;
1395 `}
1396
1397 private fun file_lstat: NativeFileStat `{
1398 #ifdef _WIN32
1399 // FIXME use a higher level abstraction to support WIN32
1400 return NULL;
1401 #else
1402 struct stat* stat_element;
1403 int res;
1404 stat_element = malloc(sizeof(struct stat));
1405 res = lstat(self, stat_element);
1406 if (res == -1) return NULL;
1407 return stat_element;
1408 #endif
1409 `}
1410
1411 private fun file_mkdir(mode: Int): Bool `{
1412 #ifdef _WIN32
1413 return !mkdir(self);
1414 #else
1415 return !mkdir(self, mode);
1416 #endif
1417 `}
1418
1419 private fun rmdir: Bool `{ return !rmdir(self); `}
1420
1421 private fun file_delete: Bool `{
1422 return remove(self) == 0;
1423 `}
1424
1425 private fun file_chdir: Bool `{ return !chdir(self); `}
1426
1427 private fun file_realpath: NativeString `{
1428 #ifdef _WIN32
1429 DWORD len = GetFullPathName(self, 0, NULL, NULL);
1430 char *buf = malloc(len+1); // FIXME don't leak memory
1431 len = GetFullPathName(self, len+1, buf, NULL);
1432 return buf;
1433 #else
1434 return realpath(self, NULL);
1435 #endif
1436 `}
1437 end
1438
1439 # This class is system dependent ... must reify the vfs
1440 private extern class NativeFileStat `{ struct stat * `}
1441
1442 # Returns the permission bits of file
1443 fun mode: Int `{ return self->st_mode; `}
1444
1445 # Returns the last access time
1446 fun atime: Int `{ return self->st_atime; `}
1447
1448 # Returns the last status change time
1449 fun ctime: Int `{ return self->st_ctime; `}
1450
1451 # Returns the last modification time
1452 fun mtime: Int `{ return self->st_mtime; `}
1453
1454 # Returns the size
1455 fun size: Int `{ return self->st_size; `}
1456
1457 # Returns true if it is a regular file (not a device file, pipe, sockect, ...)
1458 fun is_reg: Bool `{ return S_ISREG(self->st_mode); `}
1459
1460 # Returns true if it is a directory
1461 fun is_dir: Bool `{ return S_ISDIR(self->st_mode); `}
1462
1463 # Returns true if it is a character device
1464 fun is_chr: Bool `{ return S_ISCHR(self->st_mode); `}
1465
1466 # Returns true if it is a block device
1467 fun is_blk: Bool `{ return S_ISBLK(self->st_mode); `}
1468
1469 # Returns true if the type is fifo
1470 fun is_fifo: Bool `{ return S_ISFIFO(self->st_mode); `}
1471
1472 # Returns true if the type is a link
1473 fun is_lnk: Bool `{
1474 #ifdef _WIN32
1475 return 0;
1476 #else
1477 return S_ISLNK(self->st_mode);
1478 #endif
1479 `}
1480
1481 # Returns true if the type is a socket
1482 fun is_sock: Bool `{
1483 #ifdef _WIN32
1484 return 0;
1485 #else
1486 return S_ISSOCK(self->st_mode);
1487 #endif
1488 `}
1489 end
1490
1491 # Instance of this class are standard FILE * pointers
1492 private extern class NativeFile `{ FILE* `}
1493 fun io_read(buf: NativeString, len: Int): Int `{
1494 return fread(buf, 1, len, self);
1495 `}
1496
1497 fun io_write(buf: NativeString, from, len: Int): Int `{
1498 return fwrite(buf+from, 1, len, self);
1499 `}
1500
1501 fun write_byte(value: Byte): Int `{
1502 unsigned char b = (unsigned char)value;
1503 return fwrite(&b, 1, 1, self);
1504 `}
1505
1506 fun io_close: Int `{ return fclose(self); `}
1507
1508 fun file_stat: NativeFileStat `{
1509 struct stat buff;
1510 if(fstat(fileno(self), &buff) != -1) {
1511 struct stat* stat_element;
1512 stat_element = malloc(sizeof(struct stat));
1513 return memcpy(stat_element, &buff, sizeof(struct stat));
1514 }
1515 return 0;
1516 `}
1517
1518 fun ferror: Bool `{ return ferror(self); `}
1519
1520 fun fileno: Int `{ return fileno(self); `}
1521
1522 # Flushes the buffer, forcing the write operation
1523 fun flush: Int `{ return fflush(self); `}
1524
1525 # Used to specify how the buffering will be handled for the current stream.
1526 fun set_buffering_type(buf_length, mode: Int): Int `{
1527 return setvbuf(self, NULL, (int)mode, buf_length);
1528 `}
1529
1530 new io_open_read(path: NativeString) `{ return fopen(path, "r"); `}
1531
1532 new io_open_write(path: NativeString) `{ return fopen(path, "w"); `}
1533
1534 new native_stdin `{ return stdin; `}
1535
1536 new native_stdout `{ return stdout; `}
1537
1538 new native_stderr `{ return stderr; `}
1539 end
1540
1541 # Standard `DIR*` pointer
1542 private extern class NativeDir `{ DIR* `}
1543
1544 # Open a directory
1545 new opendir(path: NativeString) `{ return opendir(path); `}
1546
1547 # Close a directory
1548 fun closedir `{ closedir(self); `}
1549
1550 # Read the next directory entry
1551 fun readdir: NativeString `{
1552 struct dirent *de;
1553 de = readdir(self);
1554 if (!de) return NULL;
1555 return de->d_name;
1556 `}
1557 end
1558
1559 redef class Sys
1560
1561 # Standard input
1562 var stdin: PollableReader = new Stdin is protected writable, lazy
1563
1564 # Standard output
1565 var stdout: Writer = new Stdout is protected writable, lazy
1566
1567 # Standard output for errors
1568 var stderr: Writer = new Stderr is protected writable, lazy
1569
1570 # Enumeration for buffer mode full (flushes when buffer is full)
1571 fun buffer_mode_full: Int `{ return _IOFBF; `}
1572
1573 # Enumeration for buffer mode line (flushes when a `\n` is encountered)
1574 fun buffer_mode_line: Int `{ return _IONBF; `}
1575
1576 # Enumeration for buffer mode none (flushes ASAP when something is written)
1577 fun buffer_mode_none: Int `{ return _IOLBF; `}
1578
1579 # returns first available stream to read or write to
1580 # return null on interruption (possibly a signal)
1581 protected fun poll( streams : Sequence[FileStream] ) : nullable FileStream
1582 do
1583 var in_fds = new Array[Int]
1584 var out_fds = new Array[Int]
1585 var fd_to_stream = new HashMap[Int,FileStream]
1586 for s in streams do
1587 var fd = s.fd
1588 if s isa FileReader then in_fds.add( fd )
1589 if s isa FileWriter then out_fds.add( fd )
1590
1591 fd_to_stream[fd] = s
1592 end
1593
1594 var polled_fd = intern_poll( in_fds, out_fds )
1595
1596 if polled_fd == null then
1597 return null
1598 else
1599 return fd_to_stream[polled_fd]
1600 end
1601 end
1602
1603 private fun intern_poll(in_fds: Array[Int], out_fds: Array[Int]): nullable Int
1604 import Array[Int].length, Array[Int].[], Int.as(nullable Int) `{
1605 #ifndef _WIN32
1606 // FIXME use a higher level abstraction to support WIN32
1607
1608 int in_len, out_len, total_len;
1609 struct pollfd *c_fds;
1610 int i;
1611 int first_polled_fd = -1;
1612 int result;
1613
1614 in_len = (int)Array_of_Int_length( in_fds );
1615 out_len = (int)Array_of_Int_length( out_fds );
1616 total_len = in_len + out_len;
1617 c_fds = malloc( sizeof(struct pollfd) * total_len );
1618
1619 /* input streams */
1620 for ( i=0; i<in_len; i ++ ) {
1621 int fd = (int)Array_of_Int__index( in_fds, i );
1622
1623 c_fds[i].fd = fd;
1624 c_fds[i].events = POLLIN;
1625 }
1626
1627 /* output streams */
1628 for ( i=0; i<out_len; i ++ ) {
1629 int fd = (int)Array_of_Int__index( out_fds, i );
1630
1631 c_fds[i].fd = fd;
1632 c_fds[i].events = POLLOUT;
1633 }
1634
1635 /* poll all fds, unlimited timeout */
1636 result = poll( c_fds, total_len, -1 );
1637
1638 if ( result > 0 ) {
1639 /* analyse results */
1640 for ( i=0; i<total_len; i++ )
1641 if ( c_fds[i].revents & c_fds[i].events || /* awaited event */
1642 c_fds[i].revents & POLLHUP ) /* closed */
1643 {
1644 first_polled_fd = c_fds[i].fd;
1645 break;
1646 }
1647
1648 return Int_as_nullable( first_polled_fd );
1649 }
1650 else if ( result < 0 )
1651 fprintf( stderr, "Error in Stream:poll: %s\n", strerror( errno ) );
1652 #endif
1653
1654 return null_Int();
1655 `}
1656
1657 end
1658
1659 # Print `objects` on the standard output (`stdout`).
1660 fun printn(objects: Object...)
1661 do
1662 sys.stdout.write(objects.plain_to_s)
1663 end
1664
1665 # Print an `object` on the standard output (`stdout`) and add a newline.
1666 fun print(object: Object)
1667 do
1668 sys.stdout.write(object.to_s)
1669 sys.stdout.write("\n")
1670 end
1671
1672 # Print `object` on the error output (`stderr` or a log system)
1673 fun print_error(object: Object)
1674 do
1675 sys.stderr.write object.to_s
1676 sys.stderr.write "\n"
1677 end
1678
1679 # Read a character from the standard input (`stdin`).
1680 fun getc: Char
1681 do
1682 var c = sys.stdin.read_char
1683 if c == null then return '\1'
1684 return c
1685 end
1686
1687 # Read a line from the standard input (`stdin`).
1688 fun gets: String
1689 do
1690 return sys.stdin.read_line
1691 end
1692
1693 # Return the working (current) directory
1694 fun getcwd: String do return native_getcwd.to_s
1695
1696 private fun native_getcwd: NativeString `{ return getcwd(NULL, 0); `}