2007-10-25 16:27:34 -04:00
|
|
|
;;; Ikarus Scheme -- A compiler for R6RS Scheme.
|
|
|
|
;;; Copyright (C) 2006,2007 Abdulaziz Ghuloum
|
|
|
|
;;;
|
|
|
|
;;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;;; it under the terms of the GNU General Public License version 3 as
|
|
|
|
;;; published by the Free Software Foundation.
|
|
|
|
;;;
|
|
|
|
;;; This program is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
;;; General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2007-05-05 18:42:57 -04:00
|
|
|
|
|
|
|
(library (ikarus io-primitives)
|
2007-05-18 08:19:03 -04:00
|
|
|
(export read-char unread-char peek-char write-char write-byte newline
|
2007-05-05 18:42:57 -04:00
|
|
|
port-name input-port-name output-port-name
|
|
|
|
close-input-port reset-input-port!
|
2007-11-07 11:00:39 -05:00
|
|
|
flush-output-port close-output-port get-line)
|
2007-05-05 18:42:57 -04:00
|
|
|
(import
|
2007-05-06 18:27:10 -04:00
|
|
|
(ikarus system $io)
|
2007-05-18 08:19:03 -04:00
|
|
|
(ikarus system $fx)
|
2007-05-06 18:27:10 -04:00
|
|
|
(ikarus system $ports)
|
2007-05-05 18:42:57 -04:00
|
|
|
(except (ikarus) read-char unread-char peek-char write-char
|
2007-05-18 08:22:04 -04:00
|
|
|
write-byte
|
2007-05-05 18:42:57 -04:00
|
|
|
newline port-name input-port-name output-port-name
|
|
|
|
close-input-port reset-input-port! flush-output-port
|
2007-11-07 11:00:39 -05:00
|
|
|
close-output-port get-line))
|
2007-05-05 18:42:57 -04:00
|
|
|
|
|
|
|
(define write-char
|
|
|
|
(case-lambda
|
|
|
|
[(c)
|
|
|
|
(if (char? c)
|
|
|
|
($write-char c (current-output-port))
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'write-char "not a character" c))]
|
2007-05-05 18:42:57 -04:00
|
|
|
[(c p)
|
|
|
|
(if (char? c)
|
|
|
|
(if (output-port? p)
|
|
|
|
($write-char c p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'write-char "not an output-port" p))
|
|
|
|
(error 'write-char "not a character" c))]))
|
2007-05-18 08:15:51 -04:00
|
|
|
|
2007-05-18 08:19:03 -04:00
|
|
|
(define write-byte
|
2007-05-18 08:15:51 -04:00
|
|
|
(case-lambda
|
2007-05-18 08:19:03 -04:00
|
|
|
[(b)
|
|
|
|
(if (and (fixnum? b) ($fx<= 0 b) ($fx<= b 255))
|
|
|
|
($write-byte b (current-output-port))
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'write-byte "not a byte" b))]
|
2007-05-18 08:19:03 -04:00
|
|
|
[(b p)
|
|
|
|
(if (and (fixnum? b) ($fx<= 0 b) ($fx<= b 255))
|
2007-05-18 08:15:51 -04:00
|
|
|
(if (output-port? p)
|
2007-05-18 08:19:03 -04:00
|
|
|
($write-byte b p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'write-byte "not an output-port" p))
|
|
|
|
(error 'write-byte "not a byte" b))]))
|
2007-05-05 18:42:57 -04:00
|
|
|
;;;
|
|
|
|
(define newline
|
|
|
|
(case-lambda
|
|
|
|
[()
|
|
|
|
($write-char #\newline (current-output-port))
|
|
|
|
($flush-output-port (current-output-port))]
|
|
|
|
[(p)
|
|
|
|
(if (output-port? p)
|
|
|
|
(begin
|
|
|
|
($write-char #\newline p)
|
|
|
|
($flush-output-port p))
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'newline "not an output port" p))]))
|
2007-05-05 18:42:57 -04:00
|
|
|
;;;
|
|
|
|
(define port-name
|
|
|
|
(lambda (p)
|
|
|
|
(if (port? p)
|
|
|
|
(($port-handler p) 'port-name p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'port-name "not a port" p))))
|
2007-05-05 18:42:57 -04:00
|
|
|
|
|
|
|
(define input-port-name
|
|
|
|
(lambda (p)
|
|
|
|
(if (port? p)
|
|
|
|
(($port-handler p) 'port-name p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'input-port-name "not a port" p))))
|
2007-05-05 18:42:57 -04:00
|
|
|
|
|
|
|
(define output-port-name
|
|
|
|
(lambda (p)
|
|
|
|
(if (port? p)
|
|
|
|
(($port-handler p) 'port-name p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'output-port-name "not a port" p))))
|
2007-05-05 18:42:57 -04:00
|
|
|
|
|
|
|
(define read-char
|
|
|
|
(case-lambda
|
2007-05-05 19:55:53 -04:00
|
|
|
[() ($read-char (current-input-port))]
|
2007-05-05 18:42:57 -04:00
|
|
|
[(p)
|
|
|
|
(if (input-port? p)
|
|
|
|
($read-char p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'read-char "not an input-port" p))]))
|
2007-05-05 18:42:57 -04:00
|
|
|
;;;
|
|
|
|
(define unread-char
|
|
|
|
(case-lambda
|
|
|
|
[(c) (if (char? c)
|
|
|
|
($unread-char c (current-input-port))
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'unread-char "not a character" c))]
|
2007-05-05 18:42:57 -04:00
|
|
|
[(c p)
|
|
|
|
(if (input-port? p)
|
|
|
|
(if (char? c)
|
|
|
|
($unread-char c p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'unread-char "not a character" c))
|
|
|
|
(error 'unread-char "not an input-port" p))]))
|
2007-05-05 18:42:57 -04:00
|
|
|
;;;
|
|
|
|
(define peek-char
|
|
|
|
(case-lambda
|
|
|
|
[() ($peek-char (current-input-port))]
|
|
|
|
[(p)
|
|
|
|
(if (input-port? p)
|
|
|
|
($peek-char p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'peek-char "not an input-port" p))]))
|
2007-05-05 18:42:57 -04:00
|
|
|
;;;
|
|
|
|
(define reset-input-port!
|
|
|
|
(case-lambda
|
|
|
|
[() ($reset-input-port! (current-input-port))]
|
|
|
|
[(p)
|
|
|
|
(if (input-port? p)
|
|
|
|
($reset-input-port! p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'reset-input-port! "not an input-port" p))]))
|
2007-05-05 18:42:57 -04:00
|
|
|
;;;
|
|
|
|
(define close-input-port
|
|
|
|
(case-lambda
|
|
|
|
[() ($close-input-port (current-input-port))]
|
|
|
|
[(p)
|
|
|
|
(if (input-port? p)
|
|
|
|
($close-input-port p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'close-input-port! "not an input-port" p))]))
|
2007-05-05 18:42:57 -04:00
|
|
|
;;;
|
|
|
|
(define close-output-port
|
|
|
|
(case-lambda
|
|
|
|
[() ($close-output-port (current-output-port))]
|
|
|
|
[(p)
|
|
|
|
(if (output-port? p)
|
|
|
|
($close-output-port p)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'close-output-port "not an output-port" p))]))
|
2007-05-05 18:42:57 -04:00
|
|
|
;;;
|
|
|
|
(define flush-output-port
|
|
|
|
(case-lambda
|
|
|
|
[() ($flush-output-port (current-output-port))]
|
|
|
|
[(p)
|
|
|
|
(if (output-port? p)
|
|
|
|
($flush-output-port p)
|
2007-11-07 11:00:39 -05:00
|
|
|
(error 'flush-output-port "not an output-port" p))]))
|
|
|
|
|
|
|
|
(define (get-line p)
|
|
|
|
(define (get-it p)
|
|
|
|
(let f ([p p] [n 0] [ac '()])
|
|
|
|
(let ([x ($read-char p)])
|
|
|
|
(cond
|
|
|
|
[(eqv? x #\newline)
|
|
|
|
(make-it n ac)]
|
|
|
|
[(eof-object? x)
|
|
|
|
(if (null? ac) x (make-it n ac))]
|
|
|
|
[else (f p (+ n 1) (cons x ac))]))))
|
|
|
|
(define (make-it n revls)
|
|
|
|
(let f ([s (make-string n)] [i (- n 1)] [ls revls])
|
|
|
|
(cond
|
|
|
|
[(pair? ls)
|
|
|
|
(string-set! s i (car ls))
|
|
|
|
(f s (- i 1) (cdr ls))]
|
|
|
|
[else s])))
|
|
|
|
(if (input-port? p)
|
|
|
|
(get-it p)
|
|
|
|
(error 'get-line "not an input port" p)))
|
|
|
|
|
|
|
|
)
|
2007-05-05 18:42:57 -04:00
|
|
|
|