|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (srfi srfi-38) |
|
#:export (write-with-shared-structure |
|
read-with-shared-structure) |
|
#:use-module (rnrs bytevectors) |
|
#:use-module (srfi srfi-8) |
|
#:use-module (srfi srfi-69) |
|
#:use-module (system vm trap-state)) |
|
|
|
(cond-expand-provide (current-module) '(srfi-38)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define* (write-with-shared-structure obj |
|
#:optional |
|
(outport (current-output-port)) |
|
(optarg #f)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define (interesting? obj) |
|
(or (pair? obj) |
|
(and (vector? obj) (not (zero? (vector-length obj)))) |
|
(and (string? obj) (not (zero? (string-length obj)))) |
|
(bytevector? obj) |
|
(struct? obj) |
|
(port? obj) |
|
(hash-table? obj))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define (write-obj obj state) |
|
(define (write-interesting) |
|
(cond ((pair? obj) |
|
(display "(" outport) |
|
(write-obj (car obj) state) |
|
(let write-cdr ((obj (cdr obj))) |
|
(cond ((and (pair? obj) (not (hash-table-ref state obj))) |
|
(display " " outport) |
|
(write-obj (car obj) state) |
|
(write-cdr (cdr obj))) |
|
((null? obj) |
|
(display ")" outport)) |
|
(else |
|
(display " . " outport) |
|
(write-obj obj state) |
|
(display ")" outport))))) |
|
((vector? obj) |
|
(display "#(" outport) |
|
(let ((len (vector-length obj))) |
|
(write-obj (vector-ref obj 0) state) |
|
(let write-vec ((i 1)) |
|
(cond ((= i len) (display ")" outport)) |
|
(else (display " " outport) |
|
(write-obj (vector-ref obj i) state) |
|
(write-vec (+ i 1))))))) |
|
|
|
(else (write obj outport)))) |
|
(cond ((interesting? obj) |
|
(let ((val (hash-table-ref state obj))) |
|
(cond ((not val) (write-interesting)) |
|
((number? val) |
|
(begin (display "#" outport) |
|
(write val outport) |
|
(display "#" outport))) |
|
(else |
|
(let ((n (+ 1 (hash-table-ref state 'counter)))) |
|
(display "#" outport) |
|
(write n outport) |
|
(display "=" outport) |
|
(hash-table-set! state 'counter n) |
|
(hash-table-set! state obj n) |
|
(write-interesting)))))) |
|
(else |
|
(write obj outport)))) |
|
|
|
|
|
|
|
|
|
(define (scan obj state) |
|
(cond ((not (interesting? obj))) |
|
((hash-table-exists? state obj) |
|
(hash-table-set! state obj #t)) |
|
(else |
|
(hash-table-set! state obj #f) |
|
(cond ((pair? obj) |
|
(scan (car obj) state) |
|
(scan (cdr obj) state)) |
|
((vector? obj) |
|
(let ((len (vector-length obj))) |
|
(do ((i 0 (+ 1 i))) |
|
((= i len)) |
|
(scan (vector-ref obj i) state)))))))) |
|
|
|
(let ((state (make-hash-table eq?))) |
|
(scan obj state) |
|
(hash-table-set! state 'counter 0) |
|
(write-obj obj state))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
(define* (read-with-shared-structure #:optional (port (current-input-port))) |
|
(let ((parts-table (make-hash-table eqv?))) |
|
|
|
|
|
(define (read-some-chars pred initial) |
|
(let iter ((chars initial)) |
|
(let ((c (peek-char port))) |
|
(if (or (eof-object? c) (not (pred c))) |
|
(list->string (reverse chars)) |
|
(iter (cons (read-char port) chars)))))) |
|
|
|
(define (read-hash c port) |
|
(let* ((n (string->number (read-some-chars char-numeric? (list c)))) |
|
(c (read-char port)) |
|
(thunk (hash-table-ref/default parts-table n #f))) |
|
(case c |
|
((#\=) |
|
(if thunk |
|
(error "Double declaration of part " n)) |
|
(let* ((cell (list #f)) |
|
(thunk (lambda () (car cell)))) |
|
(hash-table-set! parts-table n thunk) |
|
(let ((obj (read port))) |
|
(set-car! cell obj) |
|
obj))) |
|
((#\#) |
|
(or thunk |
|
(error "Use of undeclared part " n))) |
|
(else |
|
(error "Malformed shared part specifier"))))) |
|
|
|
(with-fluid* %read-hash-procedures (fluid-ref %read-hash-procedures) |
|
(lambda () |
|
(for-each (lambda (digit) |
|
(read-hash-extend digit read-hash)) |
|
'(#\0 #\1 #\2 #\3 #\4 #\5 #\6 #\7 #\8 #\9)) |
|
(let ((result (read port))) |
|
(if (< 0 (hash-table-size parts-table)) |
|
(patch! result)) |
|
result))))) |
|
|
|
(define (hole? x) (procedure? x)) |
|
(define (fill-hole x) (if (hole? x) (fill-hole (x)) x)) |
|
|
|
(define (patch! x) |
|
(cond |
|
((pair? x) |
|
(if (hole? (car x)) (set-car! x (fill-hole (car x))) (patch! (car x))) |
|
(if (hole? (cdr x)) (set-cdr! x (fill-hole (cdr x))) (patch! (cdr x)))) |
|
((vector? x) |
|
(do ((i (- (vector-length x) 1) (- i 1))) |
|
((< i 0)) |
|
(let ((elt (vector-ref x i))) |
|
(if (hole? elt) |
|
(vector-set! x i (fill-hole elt)) |
|
(patch! elt))))))) |
|
|