From 998e709f65a8bd9acfd1917d0ac4aaa47f67030b Mon Sep 17 00:00:00 2001 From: Michael W Date: Sun, 12 Aug 2012 12:32:03 -0600 Subject: [PATCH] [WIP] Draw images inline in the Racket REPL. On the racket side, we use a custom print handler to print images (convertible? values; see file/convertible) in a special format: # On the geiser side, we add a comint post-output hook to search for that filename and replace it with inline images. --- elisp/geiser-repl.el | 11 +++++++++++ scheme/racket/geiser/user.rkt | 28 ++++++++++++++++++++++++++-- 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index 14d71cc..05d4775 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -266,8 +266,19 @@ module command as a string") (geiser-repl--host) (geiser-repl--port))))) +(defun geiser-repl--replace-images () + "Replace all image patterns with actual images" + (with-silent-modifications + (save-excursion + (goto-char (point-min)) + (while (re-search-forward "#" nil t) + (let ((file (match-string 1))) + (replace-match "") + (insert-image (create-image file) "[image]")))))) + (defun geiser-repl--output-filter (txt) (geiser-con--connection-update-debugging geiser-repl--connection txt) + (geiser-repl--replace-images) (when (string-match-p (geiser-con--connection-prompt geiser-repl--connection) txt) (geiser-autodoc--disinhibit-autodoc))) diff --git a/scheme/racket/geiser/user.rkt b/scheme/racket/geiser/user.rkt index c8cca24..38eefd8 100644 --- a/scheme/racket/geiser/user.rkt +++ b/scheme/racket/geiser/user.rkt @@ -14,7 +14,10 @@ (provide init-geiser-repl run-geiser-server start-geiser) (require (for-syntax racket/base) + file/convertible mzlib/thread + racket/file + racket/pretty racket/tcp geiser geiser/enter @@ -88,10 +91,30 @@ (define (geiser-prompt-read prompt) (make-repl-reader (geiser-read prompt))) +(define (geiser-save-tmpimage imgbytes) + ;; Save imgbytes to a new temporary file and return the filename + (define filename (make-temporary-file "geiser-img-~a.png")) + (with-output-to-file filename #:exists 'truncate + (lambda () (display imgbytes))) + filename) + +(define (geiser-maybe-print-image value) + (cond + [(and (convertible? value) + (convert value 'png-bytes)) + => (lambda (pngbytes) + ;; (The above could be problematic if a future version of racket + ;; suddenly decides it can "convert" strings to picts) + (printf "#\n" (geiser-save-tmpimage pngbytes)))] + [else + (unless (void? value) + (pretty-print value))])) + (define (init-geiser-repl) (compile-enforce-module-constants #f) (current-load/use-compiled geiser-loader) - (current-prompt-read (geiser-prompt-read geiser-prompt))) + (current-prompt-read (geiser-prompt-read geiser-prompt)) + (current-print geiser-maybe-print-image)) (define (run-geiser-repl in out enforce-module-constants) (parameterize [(compile-enforce-module-constants enforce-module-constants) @@ -99,7 +122,8 @@ (current-output-port out) (current-error-port out) (current-load/use-compiled geiser-loader) - (current-prompt-read (geiser-prompt-read geiser-prompt))] + (current-prompt-read (geiser-prompt-read geiser-prompt)) + (current-print geiser-maybe-print-image)] (read-eval-print-loop))) (define server-channel (make-channel)) -- 2.11.4.GIT