scratch/edwin/bufout.scm

111 lines
3.3 KiB
Scheme
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#| -*-Scheme-*-
Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016,
2017, 2018, 2019, 2020 Massachusetts Institute of Technology
This file is part of MIT/GNU Scheme.
MIT/GNU Scheme is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
MIT/GNU Scheme 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 MIT/GNU Scheme; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,
USA.
|#
;;;; Buffer Output Ports
;;; Package: (edwin buffer-output-port)
(define (with-output-to-mark mark thunk)
(call-with-output-mark mark
(lambda (port)
(parameterize ((current-output-port port))
(thunk)))))
(define (call-with-output-mark mark procedure)
(let ((port (mark->output-port mark)))
(let ((value (procedure port)))
(operation/close port)
value)))
(define (mark->output-port mark #!optional buffer)
(make-port mark-output-port-type
(cons (mark-left-inserting-copy mark)
(if (default-object? buffer)
#f
buffer))))
(define (output-port->mark port)
(mark-temporary-copy (port/mark port)))
(define-integrable (port/mark port)
(car (port/state port)))
(define-integrable (port/buffer port)
(cdr (port/state port)))
(define (operation/flush-output port)
(let ((mark (port/mark port))
(buffer (port/buffer port)))
(if buffer
(for-each (if (mark= mark (buffer-point buffer))
(lambda (window)
(set-window-point! window mark)
(window-direct-update! window #f))
(lambda (window)
(window-direct-update! window #f)))
(buffer-windows buffer)))))
(define (operation/write-self port output)
(write-string " to buffer at " output)
(write (port/mark port) output))
(define (operation/write-char port char)
(guarantee 8-bit-char? char)
(region-insert-char! (port/mark port) char)
1)
(define (operation/write-substring port string start end)
(if (string? string)
(begin
(region-insert-substring! (port/mark port) string start end)
(fix:- end start))
(generic-port-operation:write-substring port string start end)))
(define (operation/line-start? port)
(line-start? (port/mark port)))
(define (operation/fresh-line port)
(if (not (operation/line-start? port))
(region-insert-newline! (port/mark port))))
(define (operation/close port)
(mark-temporary! (port/mark port)))
(define (operation/x-size port)
(mark-x-size (port/mark port)))
(define mark-output-port-type
(make-port-type `((CLOSE ,operation/close)
(FLUSH-OUTPUT ,operation/flush-output)
(FRESH-LINE ,operation/fresh-line)
(LINE-START? ,operation/line-start?)
(WRITE-CHAR ,operation/write-char)
(WRITE-SELF ,operation/write-self)
(WRITE-SUBSTRING ,operation/write-substring)
(X-SIZE ,operation/x-size))
#f))