mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
* module/ice-9/suspendable-ports.scm: Rename from ice-9/sports.scm, and adapt module names. Remove exports that are not related to the suspendable ports facility; we want people to continue using the port operations from their original locations. Add put-string to the replacement list. * module/Makefile.am: Adapt to rename. * test-suite/tests/suspendable-ports.test: Rename from sports.test. * test-suite/Makefile.am: Adapt to rename. * module/ice-9/textual-ports.scm (unget-char, unget-string): New functions. * doc/ref/api-io.texi (Textual I/O, Simple Output): Flesh out documentation. (Line/Delimited): Undocument write-line, read-string, and read-string!. This is handled by (ice-9 textual-ports). (Bytevector Ports): Fix duplicated section. (String Ports): Move the note about encodings down to the end. (Custom Ports): Add explanatory text. Remove mention of C functions; they should use the C port interface. (Venerable Port Interfaces): Add text, and make documentation refer to recommended interfaces. (Using Ports from C): Add documentation. (Non-Blocking I/O): Document more fully and adapt to suspendable-ports name change.
58 lines
2 KiB
Scheme
58 lines
2 KiB
Scheme
;;;; Scheme implementation of Guile ports -*- scheme -*-
|
|
;;;;
|
|
;;;; Copyright (C) 2016 Free Software Foundation, Inc.
|
|
;;;;
|
|
;;;; This library is free software: you can redistribute it and/or modify
|
|
;;;; it under the terms of the GNU Lesser General Public License as
|
|
;;;; published by the Free Software Foundation, either version 3 of the
|
|
;;;; License, or (at your option) any later version.
|
|
;;;;
|
|
;;;; This library 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 Lesser General Public License for more details.
|
|
;;;;
|
|
;;;; You should have received a copy of the GNU Lesser General Public
|
|
;;;; License along with this library. If not, see
|
|
;;;; <http://www.gnu.org/licenses/>.
|
|
|
|
(define-module (test-suite test-ports)
|
|
#:use-module (ice-9 suspendable-ports))
|
|
|
|
;; Include tests from ports.test.
|
|
|
|
(define-syntax import-uses
|
|
(syntax-rules ()
|
|
((_) #t)
|
|
((_ #:use-module mod . uses)
|
|
(begin (use-modules mod) (import-uses . uses)))))
|
|
|
|
(define-syntax include-one
|
|
(syntax-rules (define-module)
|
|
((_ (define-module mod . uses))
|
|
(import-uses . uses))
|
|
((_ exp) exp)))
|
|
|
|
(define-syntax include-tests
|
|
(lambda (x)
|
|
(syntax-case x ()
|
|
((include-tests file)
|
|
(call-with-input-file (in-vicinity (getenv "TEST_SUITE_DIR")
|
|
(syntax->datum #'file))
|
|
(lambda (port)
|
|
#`(begin
|
|
. #,(let lp ()
|
|
(let ((exp (read port)))
|
|
(if (eof-object? exp)
|
|
#'()
|
|
(let ((exp (datum->syntax #'include-tests exp)))
|
|
#`((include-one #,exp) . #,(lp))))))))
|
|
#:guess-encoding #t)))))
|
|
|
|
(install-suspendable-ports!)
|
|
|
|
(include-tests "tests/ports.test")
|
|
(include-tests "tests/rdelim.test")
|
|
(include-tests "tests/r6rs-ports.test")
|
|
|
|
(uninstall-suspendable-ports!)
|