phc-graph/traversal.hl.rkt

406 lines
15 KiB
Racket

#lang hyper-literate typed/racket/base #:no-require-lang #:no-auto-require
@(require racket/require
scribble-enhanced/doc
racket/require
hyper-literate
(subtract-in scribble/struct scribble-enhanced/doc)
scribble/decode
(for-label racket/format
racket/promise
racket/list
(except-in subtemplate/override begin let)
type-expander
phc-adt
(except-in (subtract-in typed/racket/base
type-expander
subtemplate/override)
values)
(only-in racket/base values)
(subtract-in racket/contract typed/racket/base)
(except-in phc-toolkit generate-temporary)
phc-toolkit/untyped-only
remember))
@(unless-preexpanding
(require (for-label (submod ".."))))
@doc-lib-setup
@title[#:style manual-doc-style
#:tag "traversal"
#:tag-prefix "phc-graph/traversal"]{Parametric replacement of parts of
data structures}
@(chunks-toc-prefix
'("(lib phc-graph/scribblings/phc-graph-implementation.scrbl)"
"phc-graph/traversal"))
@(table-of-contents)
@(declare-exporting (lib "phc-graph/traversal.hl.rkt"))
@section{Introduction}
This utility allows functionally updating parts of data structures. The
@racket[define-fold] macro takes the type of the whole data structure and a
list of type names associated with their predicate. It locates all literal
occurrences of those type names within the data structure, and identifies
those locations as the parts to replace. The type of the whole data structure
is expressed as a syntactic tree. Within that syntactic tree, only the parts
which are syntactically equal to one of the types to replace are considered.
As an example, suppose the whole type is
@racket[(List Foo Number (Listof String))], and @racket[Foo] is defined as:
@racketblock[(define-type Foo (Listof String))]
If @racket[Foo] is given as a type to replace, and its replacement type is
@racket[(Listof Symbol)], then the type of the result would be:
@racketblock[(List (Listof Symbol) Number (Listof String))]
The second occurrence of @racket[(Listof String)], although semantically
equivalent to the type to replace, @racket[Foo], will not be altered, as it is
not expressed syntactically using the @racket[Foo] identifier.
@defform[
(define-fold _function-name _type-name _whole-type _type-to-replaceᵢ ...)]{
The @racket[define-fold] macro takes the type of the whole data structure, and
a list of types to replace, each associated with a predicate for that type. It
@;defines @racket[_name] as a macro, which behaves as follows:
defines @racket[(_type-name _Tᵢ ...)] as a polymorphic type, with one type
argument for each @racket[_type-to-replaceᵢ], such that
@racketblock[(_type-name _type-to-replaceᵢ ...)]
is the same type as
@racketblock[_whole-type]
In other words, @racket[_type-name] is defined as @racket[_whole-type], except
that each syntactic occurrence of a @racket[_type-to-replaceᵢ] is replaced with
the corresponding type argument @racket[_Tᵢ].
It also defines @racket[_function-name] as a function, with the type
@racketblock[( (Aᵢ ... Bᵢ ... Acc)
( (?@ ( Any Boolean : Aᵢ)
( Aᵢ Acc (Values Bᵢ Acc)))
...
( (type-name Aᵢ ...)
Acc
(Values (type-name Bᵢ ...)
Acc))))]
We use the @racket[?@] notation from
@racketmodname[syntax/parse/experimental/template] to indicate that the
function accepts a predicate, followed by an update function, followed by
another predicate, and so on. For example, the function type when there are
three @racket[_type-to-replaceᵢ] would be:
@racketblock[( (A₁ A₂ A₃ B₁ B₂ B₃ Acc)
( ( Any Boolean : A₁)
( A₁ Acc (Values B₁ Acc))
( Any Boolean : A₂)
( A₂ Acc (Values B₂ Acc))
( Any Boolean : A₃)
( A₃ Acc (Values B₃ Acc))
( (type-name A₁ A₂ A₃)
Acc
(Values (type-name B₁ B₂ B₃)
Acc))))]
The @racket[_function-name] replaces all values in the whole data structure
which are present in locations corresponding to a @racket[_type-to-replaceᵢ] in
the @racket[_whole-type]. It expects those values to have the type @racket[Aᵢ],
i.e. its input type is not restricted to @racket[_whole-type], any polymorphic
instance of @racket[_type-name] is valid. Each value is passed as an argument
to the corresponding update function with type
@racket[( Aᵢ Acc (Values Bᵢ Acc))], and the result of type @racket[Bᵢ] is
used as a replacement.
An accumulator value, with the type @racket[Acc], is threaded through all
calls to all update functions, so that the update functions can communicate
state in a functional way.}
@section{Implementation}
@subsection{Caching the results of @racket[define-fold]}
@chunk[<with-folds>
(define-for-syntax get-f-cache (make-parameter #f))
(define-for-syntax get-τ-cache (make-parameter #f))
(define-for-syntax get-f-defs (make-parameter #f))
(define-for-syntax get-τ-defs (make-parameter #f))
(define-for-syntax (with-folds thunk)
;; TODO: should probably use bound-id instead.
(parameterize ([get-f-cache (make-mutable-free-id-tree-table)]
[get-τ-cache (make-mutable-free-id-tree-table)]
[get-f-defs (box '())]
[get-τ-defs (box '())])
(define/with-syntax thunk-result (thunk))
(with-syntax ([([f-id f-body f-type] ) (unbox (get-f-defs))]
[([τ-id . τ-body] ) (unbox (get-τ-defs))])
#`(begin (define-type τ-id τ-body)
(: f-id f-type)
(define f-id f-body)
thunk-result))))]
@;@subsection{…}
@; TODO: recursively go down the tree. If there are no replacements, return #f
@; all the way up, so that a simple identity function can be applied in these
@; cases.
@CHUNK[<api>
(define-template-metafunction (!replace-in-type stx)
(syntax-case stx ()
[(_ _whole-type [_type-to-replaceᵢ _Tᵢ] )
#`(#,(syntax-local-template-metafunction-introduce
(fold-τ #'(_whole-type _type-to-replaceᵢ ))) _Tᵢ )]))]
@CHUNK[<api>
(define-template-metafunction (!∀-replace-in-type stx)
(syntax-case stx ()
[(_ _whole-type _type-to-replaceᵢ )
(syntax-local-template-metafunction-introduce
(fold-τ #'(_whole-type _type-to-replaceᵢ )))]))]
@CHUNK[<fold-τ>
(define fold-τ
(syntax-parser
[(_whole-type:type _type-to-replaceᵢ:type )
#:with rec-args #'([_type-to-replaceᵢ _Tᵢ] )
(cached [τ-
(get-τ-cache)
(get-τ-defs)
#'(_whole-type _type-to-replaceᵢ )]
(define replacements
(make-immutable-free-id-tree-table
(list [cons #'_type-to-replaceᵢ #'_Tᵢ] )))
#`( (_Tᵢ )
#,(syntax-parse #'_whole-type
#:literals (Null Pairof Listof List Vectorof Vector
U tagged)
<type-cases>)))]))]
@CHUNK[<cached>
(begin-for-syntax
(define-syntax-rule (cached [base cache defs key] . body)
(begin
(unless (and cache defs)
(error "fold-τ and fold-f must be called within with-folds"))
(if (dict-has-key? cache key)
(dict-ref cache key)
(let ([base #`#,(gensym 'base)])
(dict-set! cache key base)
(let ([result (let () . body)])
(set-box! defs `([,base . ,result] . ,(unbox defs)))
base))))))]
@CHUNK[<api>
(define-template-metafunction (!replace-in-instance stx)
(syntax-case stx ()
[(_ _whole-type [_type-to-replaceᵢ _predicateᵢ _updateᵢ] )
#`(#,(syntax-local-template-metafunction-introduce
(fold-f #'(_whole-type _type-to-replaceᵢ )))
{?@ _predicateᵢ _updateᵢ} )]))]
@CHUNK[<api>
(define-template-metafunction (!λ-replace-in-instance stx)
(syntax-case stx ()
[(_ _whole-type _type-to-replaceᵢ )
(syntax-local-introduce
(fold-f #'(_whole-type _type-to-replaceᵢ )))]))]
@CHUNK[<fold-f>
(define fold-f
(syntax-parser
[(_whole-type:type _type-to-replaceᵢ:type )
#:with rec-args #'([_type-to-replaceᵢ _predicateᵢ _updateᵢ] )
(define replacements
(make-immutable-free-id-tree-table
(list [cons #'_type-to-replaceᵢ #'_updateᵢ] )))
(define/with-syntax _args #'({?@ _predicateᵢ _updateᵢ} ))
(cached [f-
(get-f-cache)
(get-f-defs)
#'(_whole-type _type-to-replaceᵢ )]
#`[<fold-f-proc>
<fold-f-type>])]))]
@CHUNK[<fold-f-proc>
(λ ({?@ _predicateᵢ _updateᵢ} )
(λ (v acc)
#,(syntax-parse #'_whole-type
#:literals (Null Pairof Listof List
Vectorof Vector U tagged)
<f-cases>)))]
@chunk[<fold-f-type>
( (_Aᵢ _Bᵢ Acc)
( (?@ ( Any Boolean : _Aᵢ)
( _Aᵢ Acc (Values _Bᵢ Acc)))
( (!replace-in-type _whole-type [_type-to-replaceᵢ _Aᵢ] )
Acc
(Values (!replace-in-type _whole-type [_type-to-replaceᵢ _Bᵢ] )
Acc))))]
@chunk[<f-cases>
[t
#:when (dict-has-key? replacements #'t)
#:with _update (dict-ref replacements #'t)
#'(_update v acc)]]
@chunk[<type-cases>
[t
#:when (dict-has-key? replacements #'t)
#:with _T (dict-ref replacements #'t)
#'_T]]
@chunk[<type-cases>
[(~or Null (List))
#'Null]]
@chunk[<f-cases>
[(~or Null (List))
#'(values v acc)]]
@CHUNK[<type-cases>
[(Pairof X Y)
#'(Pairof (!replace-in-type X . rec-args)
(!replace-in-type Y . rec-args))]]
@CHUNK[<f-cases>
[(Pairof X Y)
#'(let*-values ([(result-x acc-x)
((!replace-in-instance X . rec-args) (car v) acc)]
[(result-y acc-y)
((!replace-in-instance Y . rec-args) (cdr v) acc-x)])
(values (cons result-x result-y) acc-y))]]
@CHUNK[<type-cases>
[(Listof X)
#'(Listof (!replace-in-type X . rec-args))]]
@CHUNK[<f-cases>
[(Listof X)
#'(foldl-map (!replace-in-instance X . rec-args)
acc v)]]
@CHUNK[<type-cases>
[(Vectorof X)
#'(Vectorof (!replace-in-type X . rec-args))]]
@CHUNK[<ftype-cases>
[(Vectorof X)
#'(vector->immutable-vector
(list->vector
(foldl-map (!replace-in-instance X . rec-args)
acc
(vector->list v))))]]
@CHUNK[<type-cases>
[(List X Y )
#'(Pairof (!replace-in-type X . rec-args)
(!replace-in-type (List Y ) . rec-args))]]
@CHUNK[<f-cases>
[(List X Y )
#'(let*-values ([(result-x acc-x) <f-list-car>]
[(result-y* acc-y*) <f-list-cdr>])
(values (cons result-x result-y*) acc-y*))]]
where the replacement is applied to the @racket[car], and to the @racket[cdr]
as a whole (i.e. by recursion on the whole remaining list of types):
@chunk[<f-list-car>
((!replace-in-instance X . rec-args) (car v) acc)]
@chunk[<f-list-cdr>
((!replace-in-instance (List Y ) . rec-args) (cdr v) acc-x)]
@CHUNK[<type-cases>
[(U _Xⱼ )
#'(U (!replace-in-type _Xⱼ . rec-args) )]]
@CHUNK[<f-cases>
[(U _Xⱼ )
#'(dispatch-union v
([_type-to-replaceᵢ Aᵢ _predicateᵢ] )
[_Xⱼ ((!replace-in-instance _Xⱼ . rec-args) v acc)]
)]]
@CHUNK[<type-cases>
[(tagged _name [_fieldⱼ (~optional :colon) _Xⱼ] )
#'(tagged _name [_fieldⱼ : (!replace-in-type _Xⱼ . rec-args)] )]]
@CHUNK[<f-cases>
[(tagged _name [_fieldⱼ (~optional :colon) _Xⱼ] )
#'(let*-values
([(_resultⱼ acc)
((!replace-in-instance _Xⱼ . rec-args) (uniform-get v _fieldⱼ)
acc)]
)
(values (tagged _name #:instance [_fieldⱼ _resultⱼ] )
acc))]]
@chunk[<type-cases>
[else-T
#'else-T]]
@chunk[<f-cases>
[else-T
#'(values v acc)]]
where @racket[foldl-map] is defined as:
@chunk[<foldl-map>
(: foldl-map ( (A B Acc) ( ( A Acc (Values B Acc))
Acc
(Listof A)
(Values (Listof B) Acc))))
(define (foldl-map f acc l)
(if (null? l)
(values l
acc)
(let*-values ([(v a) (f (car l) acc)]
[(ll aa) (foldl-map f a (cdr l))])
(values (cons v ll)
aa))))]
@section{Putting it all together}
@chunk[<*>
(require racket/require
phc-toolkit
type-expander
phc-adt
"dispatch-union.rkt"
(for-syntax (subtract-in racket/base
subtemplate/override)
subtemplate/override
phc-toolkit/untyped
type-expander/expander
"free-identifier-tree-equal.rkt"
racket/dict)
(for-meta 2 racket/base)
(for-meta 2 phc-toolkit/untyped)
(for-meta 2 syntax/parse))
(provide (for-syntax with-folds
!replace-in-type
!∀-replace-in-type
!replace-in-instance
!λ-replace-in-instance))
<foldl-map>
<with-folds>
<cached>
(begin-for-syntax
<api>
<fold-τ>
<fold-f>)]