[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 03/05: Use custom binary output ports for make-chunked-o
From: |
Andy Wingo |
Subject: |
[Guile-commits] 03/05: Use custom binary output ports for make-chunked-output-port |
Date: |
Tue, 30 May 2023 06:38:07 -0400 (EDT) |
wingo pushed a commit to branch wip-custom-ports
in repository guile.
commit f15b6cc5ae6584ddec6e5c955cbb321edd24eea4
Author: Andy Wingo <wingo@pobox.com>
AuthorDate: Fri May 26 14:07:09 2023 +0200
Use custom binary output ports for make-chunked-output-port
* module/web/http.scm (make-chunked-output-port): Use custom binary
output ports.
---
module/web/http.scm | 38 +++++++++++++-------------------------
1 file changed, 13 insertions(+), 25 deletions(-)
diff --git a/module/web/http.scm b/module/web/http.scm
index 94f9c7ea8..24a4312b5 100644
--- a/module/web/http.scm
+++ b/module/web/http.scm
@@ -1,6 +1,6 @@
;;; HTTP messages
-;; Copyright (C) 2010-2017 Free Software Foundation, Inc.
+;; Copyright (C) 2010-2017, 2023 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
@@ -34,7 +34,6 @@
#:use-module (srfi srfi-19)
#:use-module (ice-9 rdelim)
#:use-module (ice-9 match)
- #:use-module (ice-9 q)
#:use-module (ice-9 binary-ports)
#:use-module (ice-9 textual-ports)
#:use-module (ice-9 exceptions)
@@ -2033,34 +2032,23 @@ BUFFERING bytes, which defaults to 1200. Take care to
close the port
when done, as it will output the remaining data, and encode the final
zero chunk. When the port is closed it will also close PORT, unless
KEEP-ALIVE? is true."
- (define (q-for-each f q)
- (while (not (q-empty? q))
- (f (deq! q))))
- (define queue (make-q))
- (define (%put-char c)
- (enq! queue c))
- (define (%put-string s)
- (string-for-each (lambda (c) (enq! queue c))
- s))
- (define (flush)
- ;; It is important that we do _not_ write a chunk if the queue is
- ;; empty, since it will be treated as the final chunk.
- (unless (q-empty? queue)
- (let ((len (q-length queue)))
- (put-string port (number->string len 16))
- (put-string port "\r\n")
- (q-for-each (lambda (elem) (put-char port elem))
- queue)
- (put-string port "\r\n"))))
+ (define (write! bv start count)
+ (put-string port (number->string count 16))
+ (put-string port "\r\n")
+ (put-bytevector port bv start count)
+ (put-string port "\r\n")
+ (force-output port)
+ count)
(define (close)
- (flush)
(put-string port "0\r\n\r\n")
(force-output port)
(unless keep-alive?
(close-port port)))
- (let ((ret (make-soft-port (vector %put-char %put-string flush #f close)
"w")))
- (setvbuf ret 'block buffering)
- ret))
+ (define ret
+ (make-custom-binary-output-port "chunked http" write! #f #f close))
+ (set-port-encoding! port "UTF-8")
+ (setvbuf ret 'block buffering)
+ ret)
(define %http-proxy-port? (make-object-property))
(define (http-proxy-port? port) (%http-proxy-port? port))
- [Guile-commits] branch wip-custom-ports updated (9df5a8dfb -> 233846379), Andy Wingo, 2023/05/30
- [Guile-commits] 02/05: Rewrite custom binary ports in Scheme, in terms of custom ports, Andy Wingo, 2023/05/30
- [Guile-commits] 03/05: Use custom binary output ports for make-chunked-output-port,
Andy Wingo <=
- [Guile-commits] 01/05: Add "custom ports", Andy Wingo, 2023/05/30
- [Guile-commits] 04/05: Rewrite soft ports in Scheme, Andy Wingo, 2023/05/30
- [Guile-commits] 05/05: Implement R6RS custom textual ports, Andy Wingo, 2023/05/30