Compare commits
11 Commits
master
...
typed-work
Author | SHA1 | Date |
---|---|---|
Matthew Butterick | 905bc42e52 | 10 years ago |
Matthew Butterick | 83a0a8c5a1 | 10 years ago |
Matthew Butterick | d490fc7ea5 | 10 years ago |
Matthew Butterick | 303a0ff52f | 10 years ago |
Matthew Butterick | e64469788b | 10 years ago |
Matthew Butterick | 144536fb27 | 10 years ago |
Matthew Butterick | 55d7528084 | 10 years ago |
Matthew Butterick | f14284df60 | 10 years ago |
Matthew Butterick | 7ac9431232 | 10 years ago |
Matthew Butterick | 308b49cfb7 | 10 years ago |
Matthew Butterick | 097517d40e | 10 years ago |
@ -1,43 +0,0 @@
|
||||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
run:
|
||||
name: "Build using Racket '${{ matrix.racket-version }}' (${{ matrix.racket-variant }})"
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
racket-version: ["6.6", "6.7", "6.8", "6.9", "6.10.1", "6.11", "6.12", "7.0", "7.1", "7.2", "7.3", "7.4", "7.5", "7.6", "7.7", "7.8", "7.9", "current"]
|
||||
racket-variant: ["BC", "CS"]
|
||||
# CS builds are only provided for versions 7.4 and up so avoid
|
||||
# running the job for prior versions.
|
||||
exclude:
|
||||
- {racket-version: "6.6", racket-variant: "CS"}
|
||||
- {racket-version: "6.7", racket-variant: "CS"}
|
||||
- {racket-version: "6.8", racket-variant: "CS"}
|
||||
- {racket-version: "6.9", racket-variant: "CS"}
|
||||
- {racket-version: "6.10.1", racket-variant: "CS"}
|
||||
- {racket-version: "6.11", racket-variant: "CS"}
|
||||
- {racket-version: "6.12", racket-variant: "CS"}
|
||||
- {racket-version: "7.0", racket-variant: "CS"}
|
||||
- {racket-version: "7.1", racket-variant: "CS"}
|
||||
- {racket-version: "7.2", racket-variant: "CS"}
|
||||
- {racket-version: "7.3", racket-variant: "CS"}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
|
||||
- uses: Bogdanp/setup-racket@v0.11
|
||||
with:
|
||||
distribution: 'full'
|
||||
version: ${{ matrix.racket-version }}
|
||||
variant: ${{ matrix.racket-variant }}
|
||||
|
||||
- name: Install Txexpr and its dependencies
|
||||
run: raco pkg install --auto --batch
|
||||
|
||||
- name: Run the tests
|
||||
run: xvfb-run raco test -j 4 -p txexpr
|
@ -0,0 +1,28 @@
|
||||
# adapted from
|
||||
# https://github.com/greghendershott/travis-racket/blob/master/.travis.yml
|
||||
# Thanks Greg!
|
||||
|
||||
language: c
|
||||
sudo: false
|
||||
|
||||
env:
|
||||
global:
|
||||
- RACKET_DIR=~/racket
|
||||
matrix:
|
||||
- RACKET_VERSION=6.0
|
||||
- RACKET_VERSION=6.1
|
||||
- RACKET_VERSION=6.1.1
|
||||
- RACKET_VERSION=HEAD
|
||||
|
||||
matrix:
|
||||
fast_finish: true
|
||||
|
||||
before_install:
|
||||
- git clone https://github.com/mbutterick/travis-racket.git
|
||||
- cat travis-racket/install-racket.sh | bash # pipe to bash not sh!
|
||||
- export PATH="${RACKET_DIR}/bin:${PATH}" #install-racket.sh can't set for us
|
||||
|
||||
script:
|
||||
- cd .. # Travis did a cd into the dir. Back up, for the next:
|
||||
- raco pkg install --deps search-auto --link txexpr
|
||||
- raco test -p txexpr
|
@ -0,0 +1,165 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
@ -1,9 +0,0 @@
|
||||
MIT License for txexpr
|
||||
|
||||
© 2014-2019 Matthew Butterick
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -1,6 +1,6 @@
|
||||
#lang info
|
||||
(define version "0.2")
|
||||
(define collection 'multi)
|
||||
(define deps '("base" ["sugar" #:version "0.2"] "rackunit-lib"))
|
||||
(define update-implies '("sugar"))
|
||||
(define build-deps '("scribble-lib" "racket-doc" "rackunit-doc"))
|
||||
(define deps '("base" "sugar" "typed-racket-lib"
|
||||
"typed-racket-more"
|
||||
"rackunit-lib"))
|
||||
(define build-deps '("scribble-lib" "racket-doc" "typed-racket-doc"))
|
@ -1,328 +0,0 @@
|
||||
#lang racket/base
|
||||
(require racket/match sugar/define sugar/list sugar/coerce
|
||||
racket/string racket/list
|
||||
xml
|
||||
"private/define-provide-safe-match.rkt"
|
||||
(for-syntax racket/base syntax/parse))
|
||||
(provide cdata? cdata valid-char? xexpr->string xexpr? comment comment?) ; from xml
|
||||
(provide empty) ; from racket/list
|
||||
|
||||
;; Section 2.2 of XML 1.1
|
||||
;; (XML 1.0 is slightly different and more restrictive)
|
||||
;; make private version of my-valid-char to get consistent results with Racket 6.0
|
||||
(define (my-valid-char? i)
|
||||
(and (exact-nonnegative-integer? i)
|
||||
(or (<= #x1 i #xD7FF)
|
||||
(<= #xE000 i #xFFFD)
|
||||
(<= #x10000 i #x10FFFF))))
|
||||
|
||||
(define (my-xexpr? x)
|
||||
(or (my-valid-char? x) (xexpr? x) (txexpr? x)))
|
||||
|
||||
(define+provide+safe (txexpr? x [allow-long #t])
|
||||
predicate/c
|
||||
(match x
|
||||
[(cons (? txexpr-tag?) rest)
|
||||
(=> resume)
|
||||
(let loop ([rest rest])
|
||||
(match rest
|
||||
[(list (? my-xexpr?) ...) #true]
|
||||
[(list (? txexpr-attrs?) elems ...) #:when allow-long (loop elems)]
|
||||
[_ (resume)]))]
|
||||
[_ #false]))
|
||||
|
||||
(define+provide+safe (txexpr-short? x)
|
||||
predicate/c
|
||||
(txexpr? x #false))
|
||||
|
||||
(define+provide+safe (txexpr-tag? x)
|
||||
predicate/c
|
||||
(symbol? x))
|
||||
|
||||
(define+provide+safe (txexpr-attr? x)
|
||||
predicate/c
|
||||
(match x
|
||||
[(list (? txexpr-attr-key?) (? txexpr-attr-value?)) #true]
|
||||
[_ #false]))
|
||||
|
||||
(define+provide+safe (txexpr-element? x)
|
||||
predicate/c
|
||||
(my-xexpr? x))
|
||||
|
||||
(define+provide+safe (txexpr-attr-key? x)
|
||||
predicate/c
|
||||
(symbol? x))
|
||||
|
||||
(define+provide+safe (can-be-txexpr-attr-key? x)
|
||||
predicate/c
|
||||
(symbolish? x))
|
||||
|
||||
(define+provide+safe (txexpr-attr-value? x)
|
||||
predicate/c
|
||||
(string? x))
|
||||
|
||||
(define+provide+safe (can-be-txexpr-attr-value? x)
|
||||
predicate/c
|
||||
(stringish? x))
|
||||
|
||||
(define-syntax-rule (define-plural plural-id pred)
|
||||
(define+provide+safe (plural-id x)
|
||||
predicate/c
|
||||
(match x
|
||||
[(list (? pred) (... ...)) #true]
|
||||
[_ #false])))
|
||||
|
||||
(define-plural txexpr-tags? txexpr-tag?)
|
||||
(define-plural txexpr-attrs? txexpr-attr?)
|
||||
(define-plural txexpr-elements? txexpr-element?)
|
||||
(define-plural txexpr-attr-values? txexpr-attr-value?)
|
||||
(define-plural list-of-can-be-txexpr-attrs? can-be-txexpr-attrs?)
|
||||
|
||||
(define+provide+safe (can-be-txexpr-attrs? x)
|
||||
predicate/c
|
||||
(or (can-be-txexpr-attr-key? x)
|
||||
(can-be-txexpr-attr-value? x)
|
||||
(txexpr-attr? x)
|
||||
(txexpr-attrs? x)))
|
||||
|
||||
(define (validate-txexpr-attrs tx)
|
||||
(andmap
|
||||
(lambda (attr)
|
||||
(unless (and (list? attr) (eq? 2 (length attr)))
|
||||
(txexpr-error "attribute" "is not a list of the form '(symbol \"string\")" attr tx))
|
||||
(unless (symbol? (first attr))
|
||||
(txexpr-error "attribute key" "is not a symbol" (first attr) tx))
|
||||
(unless (string? (second attr))
|
||||
(txexpr-error "attribute value" "is not a string" (second attr) tx))
|
||||
#t)
|
||||
(second tx)))
|
||||
|
||||
(define (validate-txexpr-elements elems tx)
|
||||
(andmap
|
||||
(lambda (e)
|
||||
(cond
|
||||
[(or (string? e) (symbol? e) (my-valid-char? e) (cdata? e) (comment? e)) #t]
|
||||
[(and (list? e) (symbol? (first e)))
|
||||
(validate-txexpr e)]
|
||||
[else (txexpr-error "element" "not a valid element (= txexpr, string, symbol, XML char, cdata, or comment)" e tx)]))
|
||||
elems))
|
||||
|
||||
(define (txexpr-error noun has-problem bad tx)
|
||||
(raise-arguments-error 'validate-txexpr (format "~a ~a" noun has-problem) noun bad "in" tx))
|
||||
|
||||
;; is it a named x-expression?
|
||||
;; Restricting to primitive predicates allows for more specific (helpful) errors
|
||||
(define+provide+safe (validate-txexpr x)
|
||||
(any/c . -> . txexpr?)
|
||||
(unless (list? x) (raise-argument-error 'validate-txexpr "tagged X-expression" x))
|
||||
(match x
|
||||
[(list* tag _) #:when (not (symbol? tag))
|
||||
(txexpr-error "tag" "must be a symbol" tag x)]
|
||||
[(list* tag (or (? null?) (list (? list?) _ ...)) elems)
|
||||
(and (validate-txexpr-attrs x) (validate-txexpr-elements elems x) x)]
|
||||
[(list* tag elems) (and (validate-txexpr-elements elems x) x)]))
|
||||
|
||||
(define (txexpr-unsafe tag attrs elements)
|
||||
(cons tag (match attrs
|
||||
[(== empty) elements]
|
||||
[_ (cons attrs elements)])))
|
||||
|
||||
(define (txexpr-base func-name tag attrs elements)
|
||||
(unless (txexpr-tag? tag)
|
||||
(raise-argument-error func-name "txexpr-tag?" tag))
|
||||
(unless (txexpr-attrs? attrs)
|
||||
(raise-argument-error func-name "txexpr-attrs?" attrs))
|
||||
(unless (txexpr-elements? elements)
|
||||
(raise-argument-error func-name "txexpr-elements?" elements))
|
||||
(txexpr-unsafe tag attrs elements))
|
||||
|
||||
(define+provide+safe+match (txexpr tag [attrs null] [elements null])
|
||||
((txexpr-tag?) (txexpr-attrs? txexpr-elements?) . ->* . txexpr?)
|
||||
(txexpr-base 'txexpr tag attrs elements)
|
||||
#:match-expander
|
||||
(syntax-parser
|
||||
[(_ tag-pat:expr
|
||||
{~optional attrs-pat:expr #:defaults ([attrs-pat #'_])}
|
||||
{~optional elements-pat:expr #:defaults ([elements-pat #'_])})
|
||||
#'(? txexpr? (app txexpr->values tag-pat attrs-pat elements-pat))]))
|
||||
|
||||
(define+provide+safe (txexpr* tag [attrs null] . elements)
|
||||
((txexpr-tag?) (txexpr-attrs?) #:rest txexpr-elements? . ->* . txexpr?)
|
||||
(txexpr-base 'txexpr* tag attrs elements))
|
||||
|
||||
(define make-txexpr txexpr) ; for backward compatability
|
||||
(provide+safe make-txexpr)
|
||||
|
||||
(define+provide+safe (txexpr->values x)
|
||||
(txexpr? . -> . (values txexpr-tag? txexpr-attrs? txexpr-elements?))
|
||||
(match x
|
||||
[(? txexpr-short?) (values (car x) '() (cdr x))]
|
||||
[_ (values (car x) (cadr x) (cddr x))]))
|
||||
|
||||
(define+provide+safe (txexpr->list x)
|
||||
(txexpr? . -> . list?)
|
||||
(call-with-values (λ () (txexpr->values x)) list))
|
||||
|
||||
;; convenience functions to retrieve only one part of txexpr
|
||||
(define+provide+safe (get-tag x)
|
||||
(txexpr? . -> . txexpr-tag?)
|
||||
(car x))
|
||||
|
||||
(define+provide+safe (get-attrs x)
|
||||
(txexpr? . -> . txexpr-attrs?)
|
||||
(define-values (tag attrs elements) (txexpr->values x))
|
||||
attrs)
|
||||
|
||||
(define+provide+safe (get-elements x)
|
||||
(txexpr? . -> . txexpr-elements?)
|
||||
(define-values (tag attrs elements) (txexpr->values x))
|
||||
elements)
|
||||
|
||||
;; helpers. we are getting a string or symbol
|
||||
(define+provide+safe (->txexpr-attr-key x)
|
||||
(can-be-txexpr-attr-key? . -> . txexpr-attr-key?)
|
||||
(unless (can-be-txexpr-attr-key? x)
|
||||
(raise-argument-error '->txexpr-attr-key "can-be-txexpr-attr-key?" x))
|
||||
(->symbol x))
|
||||
|
||||
(define+provide+safe (->txexpr-attr-value x)
|
||||
(can-be-txexpr-attr-value? . -> . txexpr-attr-value?)
|
||||
(unless (can-be-txexpr-attr-value? x)
|
||||
(raise-argument-error '->txexpr-attr-value "can-be-txexpr-attr-value?" x))
|
||||
(->string x))
|
||||
|
||||
(define (sublist->attr sublist)
|
||||
(match sublist
|
||||
[(list key value) (list (->txexpr-attr-key key) (->txexpr-attr-value value))]))
|
||||
|
||||
(define+provide+safe (attrs->hash #:hash-style? [hash-style-priority #f] . items-in)
|
||||
(() (#:hash-style? boolean?) #:rest (listof can-be-txexpr-attrs?) . ->* . hash-eq?)
|
||||
;; can be liberal with input because they're all just nested key/value pairs
|
||||
;; but still need this function to make sure that 'foo and "foo" are treated as the same hash key
|
||||
(define items (flatten items-in))
|
||||
(unless (even? (length items))
|
||||
(raise-argument-error 'attrs->hash "argument list of even length" (length items-in)))
|
||||
;; hasheq loop will overwrite earlier values with later.
|
||||
;; but earlier attributes need priority (see https://www.w3.org/TR/xml/#attdecls)
|
||||
;; thus reverse the pairs.
|
||||
;; priority-inverted will defeat this assumption, and allow later attributes to overwrite earlier.
|
||||
(for/hasheq ([sublist (in-list ((if hash-style-priority
|
||||
values
|
||||
reverse) (slice-at items 2)))])
|
||||
(apply values (sublist->attr sublist))))
|
||||
|
||||
(define+provide+safe (hash->attrs attr-hash)
|
||||
(hash? . -> . txexpr-attrs?)
|
||||
(match (hash->list attr-hash)
|
||||
[(list (cons ks vs) ...) (map list ks vs)]))
|
||||
|
||||
(define+provide+safe (attrs-have-key? x key)
|
||||
((or/c txexpr-attrs? txexpr?) can-be-txexpr-attr-key? . -> . boolean?)
|
||||
(match x
|
||||
[(? txexpr? tx) (and (attr-ref tx key #false) #true)]
|
||||
[_ (attrs-have-key? (txexpr-unsafe '_ x null) key)]))
|
||||
|
||||
(define+provide+safe (attr-set tx key value)
|
||||
(txexpr? can-be-txexpr-attr-key? can-be-txexpr-attr-value? . -> . txexpr?)
|
||||
(attr-set* tx key value))
|
||||
|
||||
(define+provide+safe (attr-set* tx . kvs)
|
||||
((txexpr?) #:rest (listof (or/c can-be-txexpr-attr-key? can-be-txexpr-attr-value?)) . ->* . txexpr?)
|
||||
;; unlike others, this uses hash operations to guarantee that your attr-set
|
||||
;; is the only one remaining.
|
||||
(unless (even? (length kvs))
|
||||
(raise-argument-error 'attr-set* "even number of arguments" kvs))
|
||||
(define new-attrs (hash->attrs
|
||||
(apply hash-set* (attrs->hash (get-attrs tx))
|
||||
(append-map sublist->attr (slice-at kvs 2)))))
|
||||
(txexpr-base 'attr-set* (get-tag tx) new-attrs (get-elements tx)))
|
||||
|
||||
(define+provide+safe (attr-join tx key value)
|
||||
(txexpr? can-be-txexpr-attr-key? can-be-txexpr-attr-value? . -> . txexpr?)
|
||||
(define starting-values (string-split (attr-ref tx key "")))
|
||||
(attr-set tx key (string-join (append starting-values (list (->txexpr-attr-value value))) " ")))
|
||||
|
||||
(define no-failure-result (gensym)) ; failure-result might be #false
|
||||
(define+provide+safe (attr-ref attrs-arg key [failure-result no-failure-result])
|
||||
(((or/c txexpr? txexpr-attrs?) can-be-txexpr-attr-key?) (any/c) . ->* . any)
|
||||
(match (assq (->txexpr-attr-key key) (match attrs-arg
|
||||
[(? txexpr? tx) (get-attrs tx)]
|
||||
[attrs attrs]))
|
||||
[(list _ value) value]
|
||||
[_ (match failure-result
|
||||
[(? procedure?) (failure-result)]
|
||||
[(== no-failure-result) (raise-argument-error 'attr-ref "key that exists in attr list" key)]
|
||||
[_ failure-result])]))
|
||||
|
||||
(define+provide+safe (remove-attrs x)
|
||||
(txexpr? . -> . txexpr?)
|
||||
(let loop ([x x])
|
||||
(if (txexpr? x)
|
||||
(let-values ([(tag attrs elements) (txexpr->values x)])
|
||||
(txexpr-unsafe tag null (map loop elements)))
|
||||
x)))
|
||||
|
||||
(define+provide+safe (map-elements proc x)
|
||||
(procedure? txexpr? . -> . txexpr?)
|
||||
(let loop ([x x])
|
||||
(proc (if (txexpr? x)
|
||||
(let-values ([(tag attrs elements) (txexpr->values x)])
|
||||
(txexpr-unsafe tag attrs (map loop elements)))
|
||||
x))))
|
||||
|
||||
;; function to split tag out of txexpr
|
||||
(define+provide+safe (splitf-txexpr tx pred [proc (λ (x) #f)])
|
||||
((txexpr? procedure?) (procedure?) . ->* . (values txexpr? txexpr-elements?))
|
||||
(unless (txexpr? tx)
|
||||
(raise-argument-error 'splitf-txexpr "txexpr?" tx))
|
||||
(define matches null)
|
||||
(define (extract! x)
|
||||
(match x
|
||||
[(? pred)
|
||||
(set! matches (cons x matches))
|
||||
(proc x)]
|
||||
[(? txexpr?) (let-values ([(tag attrs elements) (txexpr->values x)])
|
||||
(txexpr-unsafe tag attrs (filter values (map extract! elements))))]
|
||||
[_ x]))
|
||||
(define tx-extracted (extract! tx)) ;; do this first to fill matches
|
||||
(values tx-extracted (reverse matches)))
|
||||
|
||||
(define+provide+safe (findf*-txexpr tx pred)
|
||||
(txexpr? procedure? . -> . (or/c #f txexpr-elements?))
|
||||
(match/values (splitf-txexpr tx pred)
|
||||
[(_ (? pair? matches)) matches]
|
||||
[(_ _) #false]))
|
||||
|
||||
(define+provide+safe (findf-txexpr tx pred)
|
||||
(txexpr? procedure? . -> . (or/c #f txexpr-element?))
|
||||
(match (findf*-txexpr tx pred)
|
||||
[(cons match _) match]
|
||||
[_ #false]))
|
||||
|
||||
;; don't use "![CDATA[...]]" wrapper in HTML, it's not consistent with the spec
|
||||
(define (->cdata x) (if (string? x) (cdata #f #f x) x))
|
||||
|
||||
;; but treat CDATA strings correctly anyhow, because that's friendly
|
||||
(define (cdata-string? x)
|
||||
(and (string? x) (regexp-match #rx"^<!\\[CDATA\\[.*\\]\\]>$" x) #true))
|
||||
|
||||
(define comment-pattern #rx"^<!--(.*?)-->$")
|
||||
|
||||
(define (string->comment x)
|
||||
(match (regexp-match comment-pattern x)
|
||||
[(list _ comment-payload) (comment comment-payload)]
|
||||
[_ #false]))
|
||||
|
||||
(define+provide+safe (xexpr->html x)
|
||||
(xexpr? . -> . string?)
|
||||
(xexpr->string
|
||||
(let loop ([x x])
|
||||
(cond
|
||||
[(txexpr? x)
|
||||
(define-values (tag attrs elements) (txexpr->values x))
|
||||
(define proc (if (memq tag '(script style)) ->cdata loop))
|
||||
;; a little faster than `txexpr` since we know the pieces are valid
|
||||
(txexpr-unsafe tag attrs (map proc elements))]
|
||||
[(cdata-string? x) (->cdata x)]
|
||||
[(and (string? x) (string->comment x))]
|
||||
[else x]))))
|
@ -1,39 +0,0 @@
|
||||
#lang racket/base
|
||||
(require sugar/define racket/match "base.rkt" rackunit)
|
||||
|
||||
(define (stringify-attr attr)
|
||||
(match attr
|
||||
[(list key val) (string-append (symbol->string key) val)]))
|
||||
|
||||
(define (sort-attrs x)
|
||||
(match x
|
||||
[(? txexpr?)
|
||||
(let-values ([(tag attr elements) (txexpr->values x)])
|
||||
(txexpr tag (sort attr #:key stringify-attr #:cache-keys? #t string<?) (map sort-attrs elements)))]
|
||||
[_ x]))
|
||||
|
||||
(define (txexprs-equal? tx1 tx2)
|
||||
;; txexprs are deemed equal if they differ only in the ordering of attributes.
|
||||
;; therefore, to check them, 1) sort their attributes, 2) straight list comparison.
|
||||
;; use letrec because `define-simple-check` wants an expression in <=6.2
|
||||
|
||||
;; `stringify-attr` is needed because comparing attr keys won't work if there are two attrs with same key.
|
||||
;; so the whole attr is converted into a single string for sorting, which lets the attr value act as a tiebreaker.
|
||||
;; it doesn't matter that this sort may not be correct (in the sense of a desirable ordering)
|
||||
;; it just needs to be stable (e.g., a certain set of attrs will always sort the same way)
|
||||
(equal? (sort-attrs tx1) (sort-attrs tx2)))
|
||||
|
||||
(define+provide+safe (attrs-equal? x1 x2)
|
||||
((or/c txexpr-attrs? txexpr?) (or/c txexpr-attrs? txexpr?) . -> . boolean?)
|
||||
(apply txexprs-equal? (map (λ (x) `(_ ,(if (txexpr-attrs? x) x (get-attrs x)))) (list x1 x2))))
|
||||
|
||||
(provide+safe check-txexprs-equal?)
|
||||
(define-simple-check (check-txexprs-equal? tx1 tx2)
|
||||
(txexprs-equal? tx1 tx2))
|
||||
|
||||
(module+ test
|
||||
(check-txexprs-equal? '(p ((b "foo")(a "bar")) (span ((d "foo")(c "bar"))))
|
||||
'(p ((a "bar")(b "foo")) (span ((c "bar")(d "foo")))))
|
||||
;; two attrs with same key
|
||||
(check-txexprs-equal? '(p ((a "foo")(a "bar")))
|
||||
'(p ((a "bar")(a "foo")))))
|
@ -0,0 +1,57 @@
|
||||
#lang racket/base
|
||||
(require sugar/define xml racket/match)
|
||||
(provide (all-defined-out) valid-char? cdata? cdata xexpr->string xexpr?)
|
||||
|
||||
(define (txexpr-short? x)
|
||||
(match x
|
||||
[(list (? symbol? name) (? xexpr?) ...) #t]
|
||||
[else #f]))
|
||||
|
||||
(define (txexpr? x)
|
||||
(or (txexpr-short? x)
|
||||
(match x
|
||||
[(list (? symbol?) (list (list (? symbol?) (? string?)) ...) (? xexpr?) ...) #t]
|
||||
[else #f])))
|
||||
|
||||
(define (txexpr-tag? x)
|
||||
(symbol? x))
|
||||
|
||||
(define (txexpr-tags? x)
|
||||
(and (list? x) (andmap txexpr-tag? x)))
|
||||
|
||||
(define (txexpr-attr? x)
|
||||
(match x
|
||||
[(list (? symbol?) (? string?)) #t]
|
||||
[else #f]))
|
||||
|
||||
|
||||
(define (txexpr-attrs? x)
|
||||
(and (list? x) (andmap txexpr-attr? x)))
|
||||
|
||||
(define (txexpr-element? x)
|
||||
(xexpr? x))
|
||||
|
||||
(define (txexpr-elements? x)
|
||||
(and (list? x) (andmap txexpr-element? x)))
|
||||
|
||||
(define (txexpr-attr-key? x)
|
||||
(symbol? x))
|
||||
|
||||
(define (can-be-txexpr-attr-key? x)
|
||||
(or (symbol? x) (string? x)))
|
||||
|
||||
(define (txexpr-attr-value? x)
|
||||
(string? x))
|
||||
|
||||
(define (txexpr-attr-values? x)
|
||||
(and (list? x) (andmap txexpr-attr-value? x)))
|
||||
|
||||
(define (can-be-txexpr-attr-value? x)
|
||||
(or (symbol? x) (string? x)))
|
||||
|
||||
(define (can-be-txexpr-attrs? x)
|
||||
(ormap (λ(test) (test x)) (list txexpr-attr? txexpr-attrs? can-be-txexpr-attr-key? can-be-txexpr-attr-value?)))
|
||||
|
||||
(define (list-of-can-be-txexpr-attrs? xs)
|
||||
(and (list? xs) (andmap can-be-txexpr-attrs? xs)))
|
||||
|
@ -1,4 +1,3 @@
|
||||
#lang info
|
||||
|
||||
(define scribblings '(("scribblings/txexpr.scrbl" ())))
|
||||
(define compile-omit-paths '("test/tests.rkt"))
|
||||
(define compile-omit-paths '("tests.rkt"))
|
@ -1,14 +1,43 @@
|
||||
#lang racket/base
|
||||
(require sugar/define)
|
||||
|
||||
(define-syntax-rule (r+p MODNAME ...)
|
||||
(begin
|
||||
(begin
|
||||
(require MODNAME)
|
||||
(provide (all-from-out MODNAME))
|
||||
(module+ safe
|
||||
(require (submod MODNAME safe))
|
||||
(provide (all-from-out (submod MODNAME safe))))) ...))
|
||||
(require-via-wormhole "../typed/txexpr/main.rkt")
|
||||
|
||||
(r+p "base.rkt"
|
||||
"stx.rkt"
|
||||
"check.rkt")
|
||||
(provide+safe
|
||||
[xexpr? predicate/c]
|
||||
[txexpr? predicate/c]
|
||||
[txexpr-short? predicate/c]
|
||||
[txexpr-tag? predicate/c]
|
||||
[txexpr-tags? predicate/c]
|
||||
[txexpr-attr? predicate/c]
|
||||
[txexpr-attrs? predicate/c]
|
||||
[txexpr-element? predicate/c]
|
||||
[txexpr-elements? predicate/c]
|
||||
[validate-txexpr (any/c . -> . txexpr?)]
|
||||
[make-txexpr ((symbol?) (txexpr-attrs? txexpr-elements?) . ->* . txexpr?)]
|
||||
[txexpr->values (txexpr? . -> . (values symbol? txexpr-attrs? txexpr-elements?))]
|
||||
[txexpr->list (txexpr? . -> . list?)]
|
||||
[get-tag (txexpr? . -> . txexpr-tag?)]
|
||||
[get-attrs (txexpr? . -> . txexpr-attrs?)]
|
||||
[get-elements (txexpr? . -> . txexpr-elements?)]
|
||||
[txexpr-attr-key? predicate/c]
|
||||
[txexpr-attr-value? predicate/c]
|
||||
[can-be-txexpr-attr-key? predicate/c]
|
||||
[can-be-txexpr-attr-value? predicate/c]
|
||||
[->txexpr-attr-key (can-be-txexpr-attr-key? . -> . txexpr-attr-key?)]
|
||||
[->txexpr-attr-value (can-be-txexpr-attr-value? . -> . txexpr-attr-value?)]
|
||||
[can-be-txexpr-attrs? predicate/c]
|
||||
[list-of-can-be-txexpr-attrs? predicate/c]
|
||||
[attrs->hash (() #:rest (listof can-be-txexpr-attrs?) . ->* . hash?)]
|
||||
[hash->attrs (hash? . -> . txexpr-attrs?)]
|
||||
[attr-ref (txexpr? can-be-txexpr-attr-key? . -> . txexpr-attr-value?)]
|
||||
[attr-ref* (txexpr? can-be-txexpr-attr-key? . -> . txexpr-attr-values?)]
|
||||
[attrs-have-key? ((or/c txexpr-attrs? txexpr?) can-be-txexpr-attr-key? . -> . boolean?)]
|
||||
[attrs-equal? ((or/c txexpr-attrs? txexpr?) (or/c txexpr-attrs? txexpr?) . -> . boolean?)]
|
||||
[attr-set (txexpr? can-be-txexpr-attr-key? can-be-txexpr-attr-value? . -> . txexpr?)]
|
||||
[merge-attrs (() #:rest list-of-can-be-txexpr-attrs? . ->* . txexpr-attrs?)]
|
||||
[remove-attrs (txexpr? . -> . txexpr?)]
|
||||
[map-elements/exclude (procedure? txexpr? procedure? . -> . txexpr?)]
|
||||
[map-elements (procedure? txexpr? . -> . txexpr?)]
|
||||
[splitf-txexpr ((txexpr? procedure?) (procedure?) . ->* . (values txexpr? txexpr-elements?))]
|
||||
[xexpr->html (xexpr? . -> . string?)])
|
@ -1,43 +0,0 @@
|
||||
#lang racket/base
|
||||
|
||||
(provide txexpr?/recur
|
||||
txexpr->values/attrs?)
|
||||
|
||||
(require racket/list)
|
||||
|
||||
;; A [TXcontainer T A E] is one of:
|
||||
;; - (List* T A (Listof E))
|
||||
;; - (Lxst* T (Listof E))
|
||||
;; Where A and E are disjoint.
|
||||
|
||||
;; txexpr?/recur :
|
||||
;; Any
|
||||
;; [Any -> Bool : T]
|
||||
;; [Any -> Bool : #:+ (and A (! E)) #:- (! A)]
|
||||
;; [Any -> Bool : #:+ (and E (! A)) #:- (! E)]
|
||||
;; ->
|
||||
;; Bool
|
||||
;; : [TXcontainer T A E]
|
||||
;; the attrs? predicate and the element? predicate should be disjoint
|
||||
(define (txexpr?/recur v tag? attrs? element?)
|
||||
(and (list? v)
|
||||
(not (empty? v))
|
||||
(tag? (first v))
|
||||
(cond [(and (not (empty? (rest v)))
|
||||
(attrs? (second v)))
|
||||
(andmap element? (rest (rest v)))]
|
||||
[else
|
||||
(andmap element? (rest v))])))
|
||||
|
||||
;; txexpr->values/attrs? :
|
||||
;; [TXcontainer T A E]
|
||||
;; [Any -> Bool : #:+ (and A (! E)) #:- (! A)]
|
||||
;; ->
|
||||
;; (values T A (Listof E))
|
||||
(define (txexpr->values/attrs? tx attrs?)
|
||||
(cond [(and (not (empty? (rest tx)))
|
||||
(attrs? (second tx)))
|
||||
(values (first tx) (second tx) (rest (rest tx)))]
|
||||
[else
|
||||
(values (first tx) '() (rest tx))]))
|
||||
|
@ -1,82 +0,0 @@
|
||||
#lang racket/base
|
||||
|
||||
(provide define+provide+safe+match)
|
||||
|
||||
(require racket/match
|
||||
(for-syntax racket/base
|
||||
racket/syntax
|
||||
syntax/parse
|
||||
syntax/stx
|
||||
version/utils))
|
||||
|
||||
;; (define+provide+safe+match name-id
|
||||
;; contract-expr
|
||||
;; value-expr
|
||||
;; #:match-expander
|
||||
;; match-transformer-expr)
|
||||
;;
|
||||
;; (define+provide+safe+match (head . args)
|
||||
;; contract-expr
|
||||
;; value-body-expr
|
||||
;; ...+
|
||||
;; #:match-expander
|
||||
;; match-transformer-expr)
|
||||
|
||||
(begin-for-syntax
|
||||
;; Identifier -> [Syntax -> Syntax]
|
||||
(define ((variable-like-transformer id) stx)
|
||||
(cond
|
||||
[(identifier? stx)
|
||||
; id, but with the source location of stx
|
||||
(datum->syntax id (syntax-e id) stx id)]
|
||||
[(stx-pair? stx)
|
||||
(datum->syntax stx (cons id (stx-cdr stx)) stx stx)])))
|
||||
|
||||
(define-syntax define+provide+safe+match
|
||||
(λ (stx)
|
||||
(syntax-parse stx
|
||||
|
||||
[(d (head . args)
|
||||
contract:expr
|
||||
value-body:expr ...+
|
||||
#:match-expander match-transformer:expr)
|
||||
#:with fn-expr (syntax/loc stx (λ args value-body ...))
|
||||
(syntax/loc stx
|
||||
(d head contract fn-expr #:match-expander match-transformer))]
|
||||
|
||||
[(_ name:id
|
||||
contract:expr
|
||||
value:expr
|
||||
#:match-expander match-transformer:expr)
|
||||
#:with internal-name (generate-temporary #'name)
|
||||
#:with contract-name (generate-temporary #'name)
|
||||
#:with make-name-match-transformer (generate-temporary #'name)
|
||||
#:with [name-for-blame ...]
|
||||
(cond [(version<=? "6.8" (version)) #'[#:name-for-blame name]]
|
||||
[else #'[]])
|
||||
|
||||
#'(begin
|
||||
(define internal-name (let ([name value]) name))
|
||||
|
||||
(begin-for-syntax
|
||||
(define (make-name-match-transformer name)
|
||||
(with-syntax ([name name]) match-transformer)))
|
||||
|
||||
(define-match-expander name
|
||||
(make-name-match-transformer (quote-syntax internal-name))
|
||||
(variable-like-transformer (quote-syntax internal-name)))
|
||||
|
||||
(provide name)
|
||||
|
||||
(module+ safe
|
||||
(require racket/contract/base)
|
||||
|
||||
(define-module-boundary-contract contract-name internal-name contract
|
||||
name-for-blame ...)
|
||||
|
||||
(define-match-expander name
|
||||
(make-name-match-transformer (quote-syntax contract-name))
|
||||
(variable-like-transformer (quote-syntax contract-name)))
|
||||
|
||||
(provide name)))])))
|
||||
|
@ -1,129 +0,0 @@
|
||||
#lang racket/base
|
||||
|
||||
(provide stx-xexpr?
|
||||
stx-txexpr?
|
||||
stx-txexpr-tag?
|
||||
stx-txexpr-attrs?
|
||||
stx-txexpr->values
|
||||
stx-txexpr->list
|
||||
stx-txexpr-tag
|
||||
stx-txexpr-attrs
|
||||
stx-txexpr-elements)
|
||||
|
||||
(require syntax/stx
|
||||
xml
|
||||
"base.rkt"
|
||||
"private/container.rkt")
|
||||
|
||||
;; ---------------------------------------------------------
|
||||
|
||||
;; Data Definitions
|
||||
|
||||
;; A [Stx E] is one of:
|
||||
;; - (Syntaxof E)
|
||||
;; - E
|
||||
|
||||
;; A StxXexpr is a [Stx XexprE]
|
||||
;; A StxTXexpr is a [Stx TXexprE]
|
||||
;; A StxTag is a [Stx Symbol]
|
||||
;; A StxAttrs is a (StxListof (StxList [Stx Symbol] [Stx String]))
|
||||
;; A StxElements is a (StxListof StxXexpr)
|
||||
|
||||
;; A XexprE is one of:
|
||||
;; - String
|
||||
;; - TXexprE
|
||||
;; - Symbol ; for example 'nbsp representing ` `
|
||||
;; - ValidChar ; for example #x20 representing ` `
|
||||
;; - CData ; an instance of the `cdata` structure type from `xml`
|
||||
;; - Misc ; an instance of the `comment` or `p-i` structure types
|
||||
|
||||
;; A TXexprE is one of:
|
||||
;; - (list* StxTag StxAttrs StxElements)
|
||||
;; - (list* StxTag StxElements)
|
||||
|
||||
;; The types `StxAttrs` and `StxXexpr` are disjoint, as they
|
||||
;; need to be for this to be unambiguous.
|
||||
|
||||
;; ---------------------------------------------------------
|
||||
|
||||
;; Predicates
|
||||
|
||||
;; Any -> Bool
|
||||
(define (stx-xexpr? v)
|
||||
(stx-xexpr?/recur v stx-xexpr?))
|
||||
|
||||
;; Any -> Bool
|
||||
(define (stx-txexpr? v)
|
||||
(stx-txexpr?/recur v stx-xexpr?))
|
||||
|
||||
;; Any [Any -> Bool] -> Bool
|
||||
(define (stx-xexpr?/recur v rec)
|
||||
(cond
|
||||
[(syntax? v) (stx-xexpr?/recur (syntax-e v) rec)]
|
||||
[(pair? v) (stx-txexpr?/recur v rec)]
|
||||
[else (xexpr?/recur v rec)]))
|
||||
|
||||
;; Any [Any -> Bool] -> Bool
|
||||
;; the `rec` predicate should not overlap with `txexpr-attrs?`
|
||||
(define (xexpr?/recur v rec)
|
||||
(cond
|
||||
[(pair? v) (txexpr?/recur v txexpr-tag? txexpr-attrs? rec)]
|
||||
[(string? v) #true]
|
||||
[(symbol? v) #true]
|
||||
[(integer? v) (valid-char? v)]
|
||||
[(cdata? v) #true]
|
||||
[(comment? v) #true]
|
||||
[(p-i? v) #true]
|
||||
[else #false]))
|
||||
|
||||
;; Any [Any -> Bool] -> Bool
|
||||
;; the `rec` predicate should not overlap with
|
||||
;; `stx-txexpr-attrs?`
|
||||
(define (stx-txexpr?/recur v rec)
|
||||
;; Even if it's not stx, the cdr or cddr might be syntax.
|
||||
;; This flattens it so that the cdd...r is always a pair or empty.
|
||||
(define lst (stx->list v))
|
||||
(and lst (txexpr?/recur lst stx-txexpr-tag? stx-txexpr-attrs? rec)))
|
||||
|
||||
;; Any -> Bool
|
||||
(define (stx-txexpr-tag? v)
|
||||
(cond
|
||||
[(syntax? v) (txexpr-tag? (syntax-e v))]
|
||||
[else (txexpr-tag? v)]))
|
||||
|
||||
;; Any -> Bool
|
||||
(define (stx-txexpr-attrs? v)
|
||||
(txexpr-attrs? (syntax->datum (datum->syntax #f v))))
|
||||
|
||||
;; ---------------------------------------------------------
|
||||
|
||||
;; Accessors
|
||||
|
||||
;; StxTxexpr -> (values StxTag StxAttrs StxElements)
|
||||
(define (stx-txexpr->values v)
|
||||
(txexpr->values/attrs? (stx->list v) stx-txexpr-attrs?))
|
||||
|
||||
;; StxTxexpr -> (List StxTag StxAttrs StxElements)
|
||||
(define (stx-txexpr->list v)
|
||||
(define-values [tag attrs elements] (stx-txexpr->values v))
|
||||
(list tag attrs elements))
|
||||
|
||||
;; StxTxexpr -> StxTag
|
||||
(define (stx-txexpr-tag v)
|
||||
(define-values [tag attrs elements] (stx-txexpr->values v))
|
||||
tag)
|
||||
|
||||
;; StxTxexpr -> StxAttrs
|
||||
(define (stx-txexpr-attrs v)
|
||||
(define-values [tag attrs elements] (stx-txexpr->values v))
|
||||
attrs)
|
||||
|
||||
;; StxTxexpr -> StxElements
|
||||
(define (stx-txexpr-elements v)
|
||||
(define-values [tag attrs elements] (stx-txexpr->values v))
|
||||
elements)
|
||||
|
||||
;; ---------------------------------------------------------
|
||||
|
||||
(module+ safe
|
||||
(provide (all-defined-out)))
|
@ -1,63 +0,0 @@
|
||||
#lang racket/base
|
||||
|
||||
(provide values->list
|
||||
check-values=?
|
||||
check/values)
|
||||
|
||||
(require rackunit
|
||||
(for-syntax racket/base))
|
||||
|
||||
;; Takes an expression producing an unknown number of values
|
||||
;; and wraps them all in a list.
|
||||
(define-syntax-rule (values->list values-expr)
|
||||
(call-with-values (λ () values-expr) list))
|
||||
|
||||
|
||||
;; Checks that two expressions (each producing an unknown
|
||||
;; number of values until evaluated) produce the same number
|
||||
;; of values, and that the values are equal.
|
||||
(define-syntax check-values=?
|
||||
(lambda (stx)
|
||||
(syntax-case stx []
|
||||
[(_ actual-expr expected-expr)
|
||||
(syntax/loc stx
|
||||
(check/values check-equal? actual-expr expected-expr))])))
|
||||
|
||||
(define-syntax check/values
|
||||
(lambda (stx)
|
||||
(syntax-case stx []
|
||||
[(_ check-form actual-expr expected-expr)
|
||||
(syntax/loc stx
|
||||
(check-form (vs actual-expr) (vs expected-expr)))])))
|
||||
|
||||
|
||||
;; Takes an expression producing an unknown number of values
|
||||
;; and wraps them in a "fake-values" structure that can be
|
||||
;; compared with other fake-values structures for equality,
|
||||
;; and can be printed to look like a call to `values`.
|
||||
(define-syntax-rule (vs values-expr)
|
||||
(fake-values (values->list values-expr)))
|
||||
|
||||
;; if make-constructor-style-printer from racket/struct exists,
|
||||
;; this is it, and otherwise this is a cheap immitation.
|
||||
(define make-constructor-style-printer
|
||||
(with-handlers ([exn:fail:filesystem?
|
||||
(λ (e)
|
||||
(λ (get-head get-elems)
|
||||
(λ (v out mode)
|
||||
(define head (get-head v))
|
||||
(define elems (get-elems v))
|
||||
(fprintf out "(~a" head)
|
||||
(for ([elem elems])
|
||||
(fprintf out " ~v" elem))
|
||||
(fprintf out ")"))))])
|
||||
(dynamic-require 'racket/struct 'make-constructor-style-printer)))
|
||||
|
||||
(struct fake-values [list]
|
||||
#:transparent
|
||||
#:methods gen:custom-write
|
||||
[(define write-proc
|
||||
(make-constructor-style-printer
|
||||
(lambda (self) 'values)
|
||||
(lambda (self) (fake-values-list self))))])
|
||||
|
@ -1,16 +0,0 @@
|
||||
#lang racket/base
|
||||
|
||||
(require (submod "../main.rkt" safe))
|
||||
(module+ test
|
||||
(require rackunit))
|
||||
|
||||
(module+ test
|
||||
(check-exn (regexp (string-append
|
||||
"txexpr.*: contract violation\n"
|
||||
" *expected: txexpr-tag\\?\n"
|
||||
" *given: 4\n"
|
||||
" *in: the 1st argument.*"
|
||||
" *blaming: .*test/contract-tests.rkt"))
|
||||
(λ () (txexpr 4)))
|
||||
)
|
||||
|
@ -1,115 +0,0 @@
|
||||
#lang racket/base
|
||||
|
||||
(require rackunit "../stx.rkt" "check-values.rkt"
|
||||
(for-syntax racket/base))
|
||||
|
||||
;; Works on fully wrapped, non-wrapped, and partially
|
||||
;; wrapped values, and it checks that the the inputs
|
||||
;; are wrapped in all the same places. It checks scopes,
|
||||
;; but it does not check source location.
|
||||
(define-binary-check (check-stx=? stx=? actual expected))
|
||||
|
||||
(define (stx=? a b)
|
||||
(cond
|
||||
[(and (identifier? a) (identifier? b))
|
||||
(bound-identifier=? a b)]
|
||||
[(and (syntax? a) (syntax? b))
|
||||
(and (bound-identifier=? (datum->syntax a '||) (datum->syntax b '||))
|
||||
(stx=? (syntax-e a) (syntax-e b)))]
|
||||
[else
|
||||
(equal?/recur a b stx=?)]))
|
||||
|
||||
(define-syntax check-values-stx=?
|
||||
(lambda (stx)
|
||||
(syntax-case stx []
|
||||
[(_ actual-expr expected-expr)
|
||||
(syntax/loc stx
|
||||
(check/values check-stx=? actual-expr expected-expr))])))
|
||||
|
||||
;; ---------------------------------------------------------
|
||||
|
||||
;; Predicates
|
||||
|
||||
(check-pred stx-xexpr? "A leaf on a string")
|
||||
(check-pred stx-xexpr? #'"A leaf in syntax")
|
||||
(check-pred stx-xexpr? #'(div))
|
||||
(check-pred stx-xexpr? #'(div ((id "top")) "Hello" (p "World")))
|
||||
(check-pred stx-xexpr? `(div ((id ,#'"top")) "Hello" ,#'(p "World")))
|
||||
|
||||
(check-false (stx-txexpr? "A leaf without a tag"))
|
||||
(check-pred stx-txexpr? '(div))
|
||||
(check-pred stx-txexpr? #'(div))
|
||||
(check-pred stx-txexpr? #'(div ((id "top")) "Hello" (p "World")))
|
||||
(check-pred stx-txexpr? `(div ((id ,#'"top")) "Hello" ,#'(p "World")))
|
||||
|
||||
(check-pred stx-txexpr-tag? 'div)
|
||||
(check-pred stx-txexpr-tag? #'div)
|
||||
(check-pred stx-txexpr-tag? 'this-is-something-else)
|
||||
(check-pred stx-txexpr-tag? #'this-is-something-else)
|
||||
|
||||
(check-pred stx-txexpr-attrs? '())
|
||||
(check-pred stx-txexpr-attrs? #'())
|
||||
(check-pred stx-txexpr-attrs? '((id "top") (style "color: blue")))
|
||||
(check-pred stx-txexpr-attrs? #'((id "top") (style "color: blue")))
|
||||
(check-pred stx-txexpr-attrs? `((id "top") (style ,#'"color: blue")))
|
||||
|
||||
;; ---------------------------------------------------------
|
||||
|
||||
;; Accessors
|
||||
|
||||
(check-values-stx=? (stx-txexpr->values '(p))
|
||||
(values 'p null null))
|
||||
(check-values-stx=? (stx-txexpr->values '(p "foo"))
|
||||
(values 'p null '("foo")))
|
||||
(check-values-stx=? (stx-txexpr->values '(p ((key "value"))))
|
||||
(values 'p '((key "value")) null))
|
||||
(check-values-stx=? (stx-txexpr->values '(p ((key "value")) "foo"))
|
||||
(values 'p '((key "value")) '("foo")))
|
||||
|
||||
(check-values-stx=? (stx-txexpr->values #'(p))
|
||||
(values #'p null null))
|
||||
(check-values-stx=? (stx-txexpr->values #'(p "foo"))
|
||||
(values #'p null (list #'"foo")))
|
||||
(check-values-stx=? (stx-txexpr->values #'(p ((key "value"))))
|
||||
(values #'p #'((key "value")) null))
|
||||
(check-values-stx=? (stx-txexpr->values #'(p ((key "value")) "foo"))
|
||||
(values #'p #'((key "value")) (list #'"foo")))
|
||||
|
||||
(check-values-stx=? (stx-txexpr->values `(,#'p))
|
||||
(values #'p null null))
|
||||
(check-values-stx=? (stx-txexpr->values `(p ,#'"foo"))
|
||||
(values 'p null (list #'"foo")))
|
||||
(check-values-stx=? (stx-txexpr->values `(p ((,#'key "value")) . ,#'("foo")))
|
||||
(values 'p `((,#'key "value")) (list #'"foo")))
|
||||
|
||||
|
||||
(check-stx=? (stx-txexpr-tag '(p ((key "value"))"foo" (em "square")))
|
||||
'p)
|
||||
(check-stx=? (stx-txexpr-tag #'(p ((key "value"))"foo" (em "square")))
|
||||
#'p)
|
||||
|
||||
(check-stx=? (stx-txexpr-attrs '(p ((key "value"))"foo" "bar" (em "square")))
|
||||
'((key "value")))
|
||||
(check-stx=? (stx-txexpr-attrs #'(p ((key "value"))"foo" "bar" (em "square")))
|
||||
#'((key "value")))
|
||||
(check-stx=? (stx-txexpr-attrs '(p "foo" "bar" (em "square")))
|
||||
'())
|
||||
(check-stx=? (stx-txexpr-attrs #'(p "foo" "bar" (em "square")))
|
||||
'())
|
||||
|
||||
(check-stx=? (stx-txexpr-elements '(p "foo" "bar" (em "square")))
|
||||
'("foo" "bar" (em "square")))
|
||||
(check-stx=? (stx-txexpr-elements #'(p "foo" "bar" (em "square")))
|
||||
(list #'"foo" #'"bar" #'(em "square")))
|
||||
|
||||
(check-stx=? (stx-txexpr-elements '(p ((k "v"))"foo" "bar" (em "square")))
|
||||
'("foo" "bar" (em "square")))
|
||||
(check-stx=? (stx-txexpr-elements #'(p ((k "v"))"foo" "bar" (em "square")))
|
||||
(list #'"foo" #'"bar" #'(em "square")))
|
||||
(check-stx=? (stx-txexpr-elements #'(p ((k "v"))"foo" . ("bar" (em "square"))))
|
||||
(list #'"foo" #'"bar" #'(em "square")))
|
||||
(check-stx=? (stx-txexpr-elements `(p ((k "v"))"foo" .,#'("bar" (em "square"))))
|
||||
(list "foo" #'"bar" #'(em "square")))
|
||||
|
||||
;; ---------------------------------------------------------
|
||||
|
@ -1,326 +0,0 @@
|
||||
#lang racket/base
|
||||
(require (for-syntax racket/base racket/syntax syntax/strip-context))
|
||||
|
||||
;; use a separate test file to avoid cycle in loading
|
||||
(define-syntax (test-safe-and-unsafe stx)
|
||||
(syntax-case stx ()
|
||||
[(_ . exprs)
|
||||
(with-syntax ([module-without-contracts (generate-temporary)]
|
||||
[module-with-contracts (generate-temporary)])
|
||||
(replace-context stx
|
||||
#'(begin
|
||||
(module module-without-contracts racket
|
||||
(require rackunit "../main.rkt" "check-values.rkt")
|
||||
. exprs)
|
||||
(require 'module-without-contracts)
|
||||
(module module-with-contracts racket
|
||||
(require rackunit (submod "../main.rkt" safe) "check-values.rkt")
|
||||
. exprs)
|
||||
(require 'module-with-contracts))))]))
|
||||
|
||||
(test-safe-and-unsafe
|
||||
|
||||
(check-true (txexpr-tag? 'foo))
|
||||
(check-false (txexpr-tag? "foo"))
|
||||
(check-false (txexpr-tag? 3))
|
||||
|
||||
(check-false (txexpr-tags? 'foo))
|
||||
(check-true (txexpr-tags? '(foo bar)))
|
||||
|
||||
(check-true (txexpr-attr? '(key "value")))
|
||||
(check-false (txexpr-attr? '(key "value" "another")))
|
||||
(check-false (txexpr-attr? '(key 0 "value")))
|
||||
|
||||
(check-true (txexpr-attrs? '()))
|
||||
(check-true (txexpr-attrs? '((key "value"))))
|
||||
(check-true (txexpr-attrs? '((key "value") (foo "bar"))))
|
||||
(check-false (txexpr-attrs? '((key "value") "foo" "bar"))) ; content, not attr
|
||||
(check-false (txexpr-attrs? '(key "value"))) ; not a nested list
|
||||
(check-false (txexpr-attrs? '(("key" "value")))) ; two strings
|
||||
(check-false (txexpr-attrs? '((key value)))) ; two symbols
|
||||
|
||||
(check-true (txexpr-element? "string"))
|
||||
(check-true (txexpr-element? 'amp))
|
||||
(check-true (txexpr-element? '(p "string")))
|
||||
(check-true (txexpr-element? 2)) ; a valid-char, but not in v6.0 xml:xexpr?
|
||||
(check-true (txexpr-element? 65)) ; a valid-char
|
||||
(check-false (txexpr-element? 0)) ; not a valid-char
|
||||
|
||||
(check-true (txexpr-elements? '("p" "foo" "123")))
|
||||
(check-true (txexpr-elements? '("p" "foo" 123))) ; includes number
|
||||
(check-true (txexpr-elements? '(p "foo" "123"))) ; includes symbol
|
||||
(check-false (txexpr-elements? "foo")) ; not a list
|
||||
(check-false (txexpr-elements? '(((key "value")) "foo" "bar"))) ; includes attr
|
||||
(check-false (txexpr-elements? '("foo" "bar" ((key "value"))))) ; malformed
|
||||
|
||||
(check-true (txexpr? '(p)))
|
||||
(check-true (txexpr? '(div 2)))
|
||||
(check-true (txexpr? '(div (div ((foo "bar")) 2))))
|
||||
(check-true (txexpr? '(p "foo" "bar")))
|
||||
(check-true (txexpr? '(p ((key "value")) "foo" "bar")))
|
||||
(check-true (txexpr? '(p 123))) ; content is a number
|
||||
(check-false (txexpr? "foo")) ; not a list with symbol
|
||||
(check-false (txexpr? '(p "foo" "bar" ((key "value"))))) ; malformed
|
||||
(check-false (txexpr? '("p" "foo" "bar"))) ; no name
|
||||
|
||||
(check-not-exn (λ _ (validate-txexpr '(p))))
|
||||
(check-not-exn (λ _ (validate-txexpr '(p "foo" "bar"))))
|
||||
(check-not-exn (λ _ (validate-txexpr '(p ((key "value")) "foo" "bar"))))
|
||||
(check-not-exn (λ _ (validate-txexpr '(p () "foo" "bar"))))
|
||||
(check-not-exn (λ _ (validate-txexpr '(p 123)))) ; content is a valid-char
|
||||
(check-exn exn:fail? (λ _ (validate-txexpr "foo"))) ; not a list with symbol
|
||||
(check-exn exn:fail? (λ _ (validate-txexpr '(p "foo" "bar" ((key "value")))))) ; malformed
|
||||
(check-exn exn:fail? (λ _ (validate-txexpr '("p" "foo" "bar")))) ; no name
|
||||
(check-exn exn:fail? (λ _ (validate-txexpr '(root ((id "top")(class 42)))))) ; malformed attrs
|
||||
(check-exn exn:fail? (λ _ (validate-txexpr `(root ,(void))))) ; invalid element type
|
||||
|
||||
(define-syntax (check-validate-exn-msg stx)
|
||||
(syntax-case stx ()
|
||||
[(_ tx) (syntax/loc stx (check-validate-exn-msg tx ""))]
|
||||
[(_ tx msg)
|
||||
(syntax/loc stx
|
||||
(check-equal? (with-handlers ([exn:fail:contract? (λ (e) (exn-message e))])
|
||||
(validate-txexpr tx)) msg))]))
|
||||
;; Root element not a list
|
||||
(check-validate-exn-msg
|
||||
"foo"
|
||||
"validate-txexpr: contract violation\n expected: tagged X-expression\n given: \"foo\"")
|
||||
|
||||
;; No name
|
||||
(check-validate-exn-msg
|
||||
'("p" "foo" "bar")
|
||||
"validate-txexpr: tag must be a symbol\n tag: \"p\"\n in: '(\"p\" \"foo\" \"bar\")")
|
||||
|
||||
;; Invalid element
|
||||
(check-validate-exn-msg
|
||||
'(p "foo" "bar" ((key "value")))
|
||||
"validate-txexpr: element not a valid element (= txexpr, string, symbol, XML char, cdata, or comment)\n element: '((key \"value\"))\n in: '(p \"foo\" \"bar\" ((key \"value\")))")
|
||||
|
||||
;; Malformed attribute list
|
||||
(check-validate-exn-msg
|
||||
'(p ((key "val") "foo" "bar") "hi")
|
||||
"validate-txexpr: attribute is not a list of the form '(symbol \"string\")\n attribute: \"foo\"\n in: '(p ((key \"val\") \"foo\" \"bar\") \"hi\")")
|
||||
|
||||
;; Invalid attribute key
|
||||
(check-validate-exn-msg
|
||||
'(root ((id "top") (class 42)))
|
||||
"validate-txexpr: attribute value is not a string\n attribute value: 42\n in: '(root ((id \"top\") (class 42)))")
|
||||
|
||||
;; Invalid attribute value
|
||||
(check-validate-exn-msg
|
||||
'(root ((id "top") ("class" 42)))
|
||||
"validate-txexpr: attribute key is not a symbol\n attribute key: \"class\"\n in: '(root ((id \"top\") (\"class\" 42)))")
|
||||
|
||||
;; Invalid element type
|
||||
(check-validate-exn-msg
|
||||
`(root ,(void))
|
||||
"validate-txexpr: element not a valid element (= txexpr, string, symbol, XML char, cdata, or comment)\n element: #<void>\n in: '(root #<void>)")
|
||||
|
||||
;; (Deeply nested) No name: error should pinpoint element in 'div txexpr
|
||||
(check-validate-exn-msg
|
||||
'(fine-outer [[type "valid"]] (div (br) ("p" "foo" "bar")))
|
||||
"validate-txexpr: element not a valid element (= txexpr, string, symbol, XML char, cdata, or comment)\n element: '(\"p\" \"foo\" \"bar\")\n in: '(div (br) (\"p\" \"foo\" \"bar\"))")
|
||||
|
||||
;; (Deeply nested) Invalid element: error should pinpoint element in 'p txexpr
|
||||
(check-validate-exn-msg
|
||||
'(fine-outer [[type "valid"]] (div (br) (p "foo" "bar" ((key "value")))))
|
||||
"validate-txexpr: element not a valid element (= txexpr, string, symbol, XML char, cdata, or comment)\n element: '((key \"value\"))\n in: '(p \"foo\" \"bar\" ((key \"value\")))")
|
||||
|
||||
;; (Deeply nested) Malformed attribute list: error should pinpoint attr in 'p txexpr
|
||||
(check-validate-exn-msg
|
||||
'(fine-outer [[type "valid"]] (div (br) (p ((key "val") "foo" "bar") "hi")))
|
||||
"validate-txexpr: attribute is not a list of the form '(symbol \"string\")\n attribute: \"foo\"\n in: '(p ((key \"val\") \"foo\" \"bar\") \"hi\")")
|
||||
|
||||
;; (Deeply nested) Invalid attribute key: error should pinpoint attr key in 'p txexpr
|
||||
(check-validate-exn-msg
|
||||
'(fine-outer [[type "valid"]] (div (br) (p ((id "top") (class 42)))))
|
||||
"validate-txexpr: attribute value is not a string\n attribute value: 42\n in: '(p ((id \"top\") (class 42)))")
|
||||
|
||||
;; (Deeply nested) Invalid attribute value: error should pinpoint attr val in 'p txexpr
|
||||
(check-validate-exn-msg
|
||||
'(fine-outer [[type "valid"]] (div (br) (p ((id "top") ("class" 42)))))
|
||||
"validate-txexpr: attribute key is not a symbol\n attribute key: \"class\"\n in: '(p ((id \"top\") (\"class\" 42)))")
|
||||
|
||||
;; (Deeply nested) Invalid element type: error should pinpoint element in 'p txexpr
|
||||
(check-validate-exn-msg
|
||||
`(fine-outer [[type "valid"]] (div (br) (p ,(void))))
|
||||
"validate-txexpr: element not a valid element (= txexpr, string, symbol, XML char, cdata, or comment)\n element: #<void>\n in: '(p #<void>)")
|
||||
|
||||
(check-txexprs-equal? (make-txexpr 'p) '(p))
|
||||
(check-txexprs-equal? (make-txexpr 'p '((key "value"))) '(p ((key "value"))))
|
||||
(check-txexprs-equal? (make-txexpr 'p null '("foo" "bar")) '(p "foo" "bar"))
|
||||
(check-txexprs-equal? (make-txexpr 'p '((key "value")) (list "foo" "bar"))
|
||||
'(p ((key "value")) "foo" "bar"))
|
||||
|
||||
(check-txexprs-equal? (txexpr 'p) '(p))
|
||||
(check-txexprs-equal? (txexpr 'p '((key "value"))) '(p ((key "value"))))
|
||||
(check-txexprs-equal? (txexpr 'p null '("foo" "bar")) '(p "foo" "bar"))
|
||||
(check-txexprs-equal? (txexpr 'p '((key "value")) (list "foo" "bar"))
|
||||
'(p ((key "value")) "foo" "bar"))
|
||||
|
||||
(check-txexprs-equal? (txexpr* 'p) '(p))
|
||||
(check-txexprs-equal? (txexpr* 'p '((key "value"))) '(p ((key "value"))))
|
||||
(check-txexprs-equal? (txexpr* 'p null "foo" "bar") '(p "foo" "bar"))
|
||||
(check-txexprs-equal? (txexpr* 'p '((key "value")) "foo" "bar")
|
||||
'(p ((key "value")) "foo" "bar"))
|
||||
|
||||
(check-values=? (txexpr->values '(p))
|
||||
(values 'p null null))
|
||||
(check-values=? (txexpr->values '(p "foo"))
|
||||
(values 'p null '("foo")))
|
||||
(check-values=? (txexpr->values '(p ((key "value"))))
|
||||
(values 'p '((key "value")) null))
|
||||
(check-values=? (txexpr->values '(p ((key "value")) "foo"))
|
||||
(values 'p '((key "value")) '("foo")))
|
||||
|
||||
(check-equal? (values->list (txexpr->values '(p)))
|
||||
(txexpr->list '(p)))
|
||||
(check-equal? (values->list (txexpr->values '(p "foo")))
|
||||
(txexpr->list '(p "foo")))
|
||||
(check-equal? (values->list (txexpr->values '(p ((key "value")))))
|
||||
(txexpr->list '(p ((key "value")))))
|
||||
(check-equal? (values->list (txexpr->values '(p ((key "value")) "foo")))
|
||||
(txexpr->list '(p ((key "value")) "foo")))
|
||||
|
||||
;; testing the match expander success
|
||||
(check-match '(p ((key "value")) "leaf")
|
||||
(txexpr 'p `((key ,val)) (list "leaf"))
|
||||
(string=? val "value"))
|
||||
|
||||
;; testing the match expander failure
|
||||
(check-false (match '(p ((key "value")) "something")
|
||||
[(txexpr 'p _ (list "else")) #true]
|
||||
[_ #false]))
|
||||
(check-false (match "foo"
|
||||
[(txexpr _ _ _) #true]
|
||||
[_ #false]))
|
||||
|
||||
(check-equal? (get-tag '(p ((key "value"))"foo" "bar" (em "square"))) 'p)
|
||||
(check-equal? (get-attrs '(p ((key "value"))"foo" "bar" (em "square"))) '((key "value")))
|
||||
(check-equal? (get-elements '(p ((key "value"))"foo" "bar" (em "square")))
|
||||
'("foo" "bar" (em "square")))
|
||||
|
||||
|
||||
(check-equal? (->txexpr-attr-key "foo") 'foo)
|
||||
(check-equal? (->txexpr-attr-key 'foo) 'foo)
|
||||
(check-equal? (->txexpr-attr-key (string->path "foo")) 'foo)
|
||||
|
||||
(check-equal? (->txexpr-attr-value "foo") "foo")
|
||||
(check-equal? (->txexpr-attr-value 'foo) "foo")
|
||||
(check-equal? (->txexpr-attr-value (string->path "foo")) "foo")
|
||||
|
||||
(check-equal? (attrs->hash '((foo "bar"))) '#hasheq((foo . "bar")))
|
||||
(check-equal? (attrs->hash '((foo "bar") (foo "fraw"))) '#hasheq((foo . "bar")))
|
||||
(check-equal? (attrs->hash #:hash-style? #t '((foo "bar") (foo "fraw"))) '#hasheq((foo . "fraw")))
|
||||
(check-equal? (attrs->hash '((foo "bar")) '(foo "fraw")) '#hasheq((foo . "bar")))
|
||||
(check-equal? (attrs->hash '((foo "bar")) '(foo "fraw") 'foo "dog") '#hasheq((foo . "bar")))
|
||||
(check-exn exn:fail:contract? (λ _ (attrs->hash 'foo "bar" 'zam)))
|
||||
|
||||
(check-equal? (sort (hash->attrs '#hash((foo . "bar")(hee . "haw"))) string<? #:key cadr)
|
||||
(sort '((foo "bar")(hee "haw")) string<? #:key second))
|
||||
|
||||
(check-equal? (attr-ref '(p ((foo "bar"))) 'foo) "bar")
|
||||
(check-exn exn:fail? (λ _ (attr-ref '(p ((foo "bar"))) 'zam)))
|
||||
(check-equal? (attr-ref '(p ((foo "bar"))) 'zam 42) 42)
|
||||
(check-equal? (attr-ref '(p ((foo "bar"))) 'zam (λ _ (* 6 7))) 42)
|
||||
(check-equal? (attr-ref '((foo "bar")) 'foo) "bar")
|
||||
(check-exn exn:fail? (λ _ (attr-ref '((foo "bar")) 'zam)))
|
||||
(check-equal? (attr-ref '((foo "bar")) 'zam 42) 42)
|
||||
(check-equal? (attr-ref '((foo "bar")) 'zam (λ _ (* 6 7))) 42)
|
||||
(check-txexprs-equal? (attr-set '(p ((foo "bar"))) 'foo "fraw") '(p ((foo "fraw"))))
|
||||
(check-txexprs-equal? (attr-set* '(p ((foo "bar"))) 'foo "fraw") '(p ((foo "fraw"))))
|
||||
(check-true (let ([result (attr-set* '(p ((foo "bar"))) 'foo "fraw" 'zim 'zam)])
|
||||
(and (member '(foo "fraw") (get-attrs result))
|
||||
(member '(zim "zam") (get-attrs result)) #t)))
|
||||
(check-txexprs-equal? (attr-join '(p ((foo "bar"))) 'foo "zam") '(p ((foo "bar zam"))))
|
||||
(check-txexprs-equal? (attr-join '(tx ((foo "bar")) baz (p bin)) 'key 'val)
|
||||
'(tx ((foo "bar") (key "val")) baz (p bin)))
|
||||
(check-true (let ([result (attr-join '(p ((foo "bar"))) 'zim "zam")])
|
||||
(and (member '(foo "bar") (get-attrs result))
|
||||
(member '(zim "zam") (get-attrs result)) #t)))
|
||||
|
||||
(check-true (attrs-have-key? '(p ((color "red")(shape "circle"))) 'color))
|
||||
(check-true (attrs-have-key? '(p ((color "red")(shape "circle"))) "color"))
|
||||
(check-false (attrs-have-key? '((color "red")(shape "circle")) 'nonexistent))
|
||||
|
||||
(check-true (attrs-equal? '(p ((color "red")(shape "circle")))
|
||||
'(foo ((color "red")(shape "circle")))))
|
||||
|
||||
(check-false (attrs-equal? '(p ((color "red")(shape "circle")))
|
||||
'(foo ((color "blue")(shape "circle")))))
|
||||
|
||||
(check-true (attrs-equal? '(p ((color "red")(shape "circle")))
|
||||
'(foo ((shape "circle")(color "red")))))
|
||||
|
||||
(check-false (attrs-equal? '(p ((color "red")(shape "circle")))
|
||||
'(foo ((color "red")))))
|
||||
|
||||
(check-true (attrs-equal? '((color "red")(shape "circle"))
|
||||
'((color "red")(shape "circle"))))
|
||||
|
||||
(check-false (attrs-equal? '((color "red")(shape "circle"))
|
||||
'((color "blue")(shape "circle"))))
|
||||
|
||||
(check-true (attrs-equal? '((color "red")(shape "circle"))
|
||||
'((shape "circle")(color "red"))))
|
||||
|
||||
(check-false (attrs-equal? '((color "red")(shape "circle"))
|
||||
'((color "red"))))
|
||||
|
||||
(check-true (attrs-equal? '((foo "bar")(foo "zam")(zing "zong"))
|
||||
'((foo "zam")(zing "zong")(foo "bar"))))
|
||||
(check-false (attrs-equal? '((foo "bar")(foo "zam")(zing "zong"))
|
||||
'((foo "different")(zing "zong")(foo "bar"))))
|
||||
|
||||
|
||||
(define-simple-check (check-attrs-equal? attrs1 attrs2) (attrs-equal? attrs1 attrs2))
|
||||
|
||||
(check-attrs-equal? '((foo "bar")(foo "zam")) '((foo "zam")(foo "bar")))
|
||||
|
||||
(check-txexprs-equal? (remove-attrs '(p ((foo "bar")) "hi")) '(p "hi"))
|
||||
(check-txexprs-equal? (remove-attrs '(p ((foo "bar")) "hi" (p ((foo "bar")) "hi"))) '(p "hi" (p "hi")))
|
||||
|
||||
|
||||
(check-txexprs-equal? (map-elements (λ (x) (if (string? x) "boing" x))
|
||||
'(p ((id "zam")) "foo" "bar" (em "square")))
|
||||
'(p ((id "zam")) "boing" "boing" (em "boing")))
|
||||
|
||||
(check-equal? (attr-set '(p) 'foo "zim") '(p ((foo "zim"))))
|
||||
(check-equal? (attr-set '(p ((foo "bar")(foo "zam"))) 'foo "zim") '(p ((foo "zim"))))
|
||||
|
||||
(check-exn exn:fail:contract? (λ _ (attr-set* '(p) 'foo "bar" 'zam)))
|
||||
|
||||
|
||||
(define split-this-tx '(root (meta "foo" "bar") "hello" "world" (meta "foo2" "bar2")
|
||||
(em "goodnight" "moon" (meta "foo3" "bar3"))))
|
||||
(define split-predicate (λ (x) (and (txexpr? x) (eq? 'meta (get-tag x)))))
|
||||
(check-txexprs-equal? (call-with-values (λ () (splitf-txexpr split-this-tx split-predicate)) list)
|
||||
(list '(root "hello" "world" (em "goodnight" "moon")) '((meta "foo" "bar") (meta "foo2" "bar2") (meta "foo3" "bar3"))))
|
||||
|
||||
(define split-proc (λ (x) '(div "foo")))
|
||||
(check-txexprs-equal? (call-with-values (λ () (splitf-txexpr split-this-tx split-predicate split-proc)) list)
|
||||
(list '(root (div "foo") "hello" "world" (div "foo") (em "goodnight" "moon" (div "foo"))) '((meta "foo" "bar") (meta "foo2" "bar2") (meta "foo3" "bar3"))))
|
||||
|
||||
(define false-pred (λ (x) (and (txexpr? x) (eq? 'nonexistent-tag (get-tag x)))))
|
||||
(check-equal? (findf*-txexpr split-this-tx split-predicate) '((meta "foo" "bar") (meta "foo2" "bar2") (meta "foo3" "bar3")))
|
||||
(check-false (findf*-txexpr split-this-tx false-pred))
|
||||
(check-equal? (findf-txexpr split-this-tx split-predicate) '(meta "foo" "bar"))
|
||||
(check-false (findf-txexpr split-this-tx false-pred))
|
||||
|
||||
(check-equal? (xexpr->html '(root (script "3 > 2") "Why is 3 > 2?"))
|
||||
"<root><script>3 > 2</script>Why is 3 > 2?</root>")
|
||||
|
||||
(check-equal? (xexpr->html '(root (div "<![CDATA[3 > 2]]>") "Why is 3 > 2?"))
|
||||
"<root><div><![CDATA[3 > 2]]></div>Why is 3 > 2?</root>")
|
||||
|
||||
;; comment
|
||||
(check-equal? (xexpr->html '(root "<!-- comment -->" "Why is 3 > 2?"))
|
||||
"<root><!-- comment -->Why is 3 > 2?</root>")
|
||||
|
||||
;; malformed comment: merged with next string
|
||||
(check-equal? (xexpr->html '(root "<!-- comment -->Why is 3 > 2?"))
|
||||
"<root><!-- comment -->Why is 3 > 2?</root>")
|
||||
|
||||
;; malformed comment: missing double hyphen at end
|
||||
(check-equal? (xexpr->html '(root "<!-- comment ->" "Why is 3 > 2?"))
|
||||
"<root><!-- comment ->Why is 3 > 2?</root>"))
|
@ -0,0 +1,195 @@
|
||||
#lang racket/base
|
||||
(require (for-syntax racket/base racket/syntax))
|
||||
|
||||
(define-syntax (eval-as-untyped stx)
|
||||
(syntax-case stx ()
|
||||
[(_ exprs ...)
|
||||
(with-syntax ([sym (generate-temporary)])
|
||||
#'(begin
|
||||
(module sym racket
|
||||
(require rackunit (submod txexpr safe))
|
||||
exprs ...)
|
||||
(require 'sym)))]))
|
||||
|
||||
(define-syntax (eval-as-typed stx)
|
||||
(syntax-case stx ()
|
||||
[(_ exprs ...)
|
||||
(with-syntax ([sym (generate-temporary)])
|
||||
#'(begin
|
||||
(module sym typed/racket
|
||||
(require typed/rackunit typed/txexpr)
|
||||
exprs ...)
|
||||
(require 'sym)))]))
|
||||
|
||||
(define-syntax-rule (eval-as-typed-and-untyped exprs ...)
|
||||
(begin
|
||||
(eval-as-typed exprs ...)
|
||||
(eval-as-untyped exprs ...)))
|
||||
|
||||
|
||||
(eval-as-typed-and-untyped
|
||||
(define-syntax (values->list stx)
|
||||
(syntax-case stx ()
|
||||
[(_ values-expr) #'(call-with-values (λ () values-expr) list)]))
|
||||
(check-true (txexpr-tag? 'foo))
|
||||
(check-false (txexpr-tag? "foo"))
|
||||
(check-false (txexpr-tag? 3))
|
||||
|
||||
(check-false (txexpr-tags? 'foo))
|
||||
(check-true (txexpr-tags? '(foo bar)))
|
||||
|
||||
(check-true (txexpr-attr? '(key "value")))
|
||||
(check-false (txexpr-attr? '(key "value" "another")))
|
||||
(check-false (txexpr-attr? '(key 0 "value")))
|
||||
|
||||
(check-true (txexpr-attrs? '()))
|
||||
(check-true (txexpr-attrs? '((key "value"))))
|
||||
(check-true (txexpr-attrs? '((key "value") (foo "bar"))))
|
||||
(check-false (txexpr-attrs? '((key "value") "foo" "bar"))) ; content, not attr
|
||||
(check-false (txexpr-attrs? '(key "value"))) ; not a nested list
|
||||
(check-false (txexpr-attrs? '(("key" "value")))) ; two strings
|
||||
(check-false (txexpr-attrs? '((key value)))) ; two symbols
|
||||
|
||||
(check-true (txexpr-element? "string"))
|
||||
(check-true (txexpr-element? 'amp))
|
||||
(check-true (txexpr-element? '(p "string")))
|
||||
(check-true (txexpr-element? 65)) ;; a valid-char
|
||||
(check-false (txexpr-element? 0)) ;; not a valid-char
|
||||
|
||||
(check-true (txexpr-elements? '("p" "foo" "123")))
|
||||
(check-true (txexpr-elements? '("p" "foo" 123))) ; includes number
|
||||
(check-true (txexpr-elements? '(p "foo" "123"))) ; includes symbol
|
||||
(check-false (txexpr-elements? "foo")) ; not a list
|
||||
(check-false (txexpr-elements? '(((key "value")) "foo" "bar"))) ; includes attr
|
||||
(check-false (txexpr-elements? '("foo" "bar" ((key "value"))))) ; malformed
|
||||
|
||||
(check-true (txexpr? '(p)))
|
||||
(check-true (txexpr? '(p "foo" "bar")))
|
||||
(check-true (txexpr? '(p ((key "value")) "foo" "bar")))
|
||||
(check-true (txexpr? '(p 123))) ; content is a number
|
||||
(check-false (txexpr? "foo")) ; not a list with symbol
|
||||
(check-false (txexpr? '(p "foo" "bar" ((key "value"))))) ; malformed
|
||||
(check-false (txexpr? '("p" "foo" "bar"))) ; no name
|
||||
|
||||
(check-not-exn (λ _ (validate-txexpr '(p))))
|
||||
(check-not-exn (λ _ (validate-txexpr '(p "foo" "bar"))))
|
||||
(check-not-exn (λ _ (validate-txexpr '(p ((key "value")) "foo" "bar"))))
|
||||
(check-not-exn (λ _ (validate-txexpr '(p 123)))) ; content is a valid-char
|
||||
;(check-exn (λ _ (validate-txexpr "foo"))) ; not a list with symbol
|
||||
;(check-exn (λ _ (validate-txexpr '(p "foo" "bar" ((key "value")))))) ; malformed
|
||||
;(check-exn (λ _ (validate-txexpr '("p" "foo" "bar")))) ; no name
|
||||
|
||||
|
||||
(check-equal? (make-txexpr 'p) '(p))
|
||||
(check-equal? (make-txexpr 'p '((key "value"))) '(p ((key "value"))))
|
||||
(check-equal? (make-txexpr 'p null '("foo" "bar")) '(p "foo" "bar"))
|
||||
(check-equal? (make-txexpr 'p '((key "value")) (list "foo" "bar"))
|
||||
'(p ((key "value")) "foo" "bar"))
|
||||
|
||||
(check-equal? (values->list (txexpr->values '(p)))
|
||||
(values->list (values 'p null null)))
|
||||
(check-equal? (values->list (txexpr->values '(p "foo")))
|
||||
(values->list (values 'p null '("foo"))))
|
||||
(check-equal? (values->list (txexpr->values '(p ((key "value")))))
|
||||
(values->list (values 'p '((key "value")) null)))
|
||||
(check-equal? (values->list (txexpr->values '(p ((key "value")) "foo")))
|
||||
(values->list (values 'p '((key "value")) '("foo"))))
|
||||
|
||||
(check-equal? (values->list (txexpr->values '(p)))
|
||||
(txexpr->list '(p)))
|
||||
(check-equal? (values->list (txexpr->values '(p "foo")))
|
||||
(txexpr->list '(p "foo")))
|
||||
(check-equal? (values->list (txexpr->values '(p ((key "value")))))
|
||||
(txexpr->list '(p ((key "value")))))
|
||||
(check-equal? (values->list (txexpr->values '(p ((key "value")) "foo")))
|
||||
(txexpr->list '(p ((key "value")) "foo")))
|
||||
|
||||
(check-equal? (get-tag '(p ((key "value"))"foo" "bar" (em "square"))) 'p)
|
||||
(check-equal? (get-attrs '(p ((key "value"))"foo" "bar" (em "square"))) '((key "value")))
|
||||
(check-equal? (get-elements '(p ((key "value"))"foo" "bar" (em "square")))
|
||||
'("foo" "bar" (em "square")))
|
||||
|
||||
|
||||
(check-equal? (->txexpr-attr-key "foo") 'foo)
|
||||
(check-equal? (->txexpr-attr-key 'foo) 'foo)
|
||||
|
||||
(check-equal? (->txexpr-attr-value "foo") "foo")
|
||||
(check-equal? (->txexpr-attr-value 'foo) "foo")
|
||||
|
||||
(check-equal? (attrs->hash '((foo "bar"))) '#hash((foo . "bar")))
|
||||
(check-equal? (attrs->hash '((foo "bar")) '(foo "fraw")) '#hash((foo . "fraw")))
|
||||
(check-equal? (attrs->hash '((foo "bar")) '(foo "fraw") 'foo "dog") '#hash((foo . "dog")))
|
||||
|
||||
(check-equal? (hash->attrs '#hash((foo . "bar")(hee . "haw"))) '((foo "bar")(hee "haw")))
|
||||
|
||||
(check-equal? (attr-ref '(p ((foo "bar"))) 'foo) "bar")
|
||||
(check-equal? (attr-set '(p ((foo "bar"))) 'foo "fraw") '(p ((foo "fraw"))))
|
||||
|
||||
(check-true (attrs-have-key? '(p ((color "red")(shape "circle"))) 'color))
|
||||
(check-true (attrs-have-key? '(p ((color "red")(shape "circle"))) "color"))
|
||||
(check-false (attrs-have-key? '((color "red")(shape "circle")) 'nonexistent))
|
||||
|
||||
(check-true (attrs-equal? '(p ((color "red")(shape "circle")))
|
||||
'(foo ((color "red")(shape "circle")))))
|
||||
|
||||
(check-false (attrs-equal? '(p ((color "red")(shape "circle")))
|
||||
'(foo ((color "blue")(shape "circle")))))
|
||||
|
||||
(check-true (attrs-equal? '(p ((color "red")(shape "circle")))
|
||||
'(foo ((shape "circle")(color "red")))))
|
||||
|
||||
(check-false (attrs-equal? '(p ((color "red")(shape "circle")))
|
||||
'(foo ((color "red")))))
|
||||
|
||||
(check-true (attrs-equal? '((color "red")(shape "circle"))
|
||||
'((color "red")(shape "circle"))))
|
||||
|
||||
(check-false (attrs-equal? '((color "red")(shape "circle"))
|
||||
'((color "blue")(shape "circle"))))
|
||||
|
||||
(check-true (attrs-equal? '((color "red")(shape "circle"))
|
||||
'((shape "circle")(color "red"))))
|
||||
|
||||
(check-false (attrs-equal? '((color "red")(shape "circle"))
|
||||
'((color "red"))))
|
||||
|
||||
|
||||
|
||||
(check-equal? (merge-attrs 'foo "bar") '((foo "bar")))
|
||||
(check-equal? (merge-attrs '(foo "bar")) '((foo "bar")))
|
||||
(check-equal? (merge-attrs '((foo "bar"))) '((foo "bar")))
|
||||
(check-equal? (merge-attrs "foo" 'bar) '((foo "bar")))
|
||||
(check-equal? (merge-attrs "foo" "bar" "goo" "gar") '((foo "bar")(goo "gar")))
|
||||
(check-equal? (merge-attrs (merge-attrs "foo" "bar" "goo" "gar") "hee" "haw")
|
||||
'((foo "bar")(goo "gar")(hee "haw")))
|
||||
(check-equal? (merge-attrs '((foo "bar")(goo "gar")) "foo" "haw") '((foo "haw")(goo "gar")))
|
||||
|
||||
|
||||
(check-equal? (remove-attrs '(p ((foo "bar")) "hi")) '(p "hi"))
|
||||
(check-equal? (remove-attrs '(p ((foo "bar")) "hi" (p ((foo "bar")) "hi"))) '(p "hi" (p "hi")))
|
||||
|
||||
|
||||
(check-equal? (map-elements (λ(x) (if (string? x) "boing" x))
|
||||
'(p "foo" "bar" (em "square")))
|
||||
'(p "boing" "boing" (em "boing")))
|
||||
|
||||
|
||||
(check-equal? (attr-ref* '(root ((foo "bar")) "hello" "world" (meta ((foo "zam")) "bar2")
|
||||
(em ((foo "zam")) "goodnight" "moon")) 'foo) '("bar" "zam" "zam"))
|
||||
|
||||
(check-equal? (attr-ref* '(root ((foo "bar")) "hello" "world" (meta ((foo "zam")) "bar2")
|
||||
(em ((foo "zam")) "goodnight" "moon")) 'nonexistent-key) '())
|
||||
|
||||
|
||||
(define split-this-tx '(root (meta "foo" "bar") "hello" "world" (meta "foo2" "bar2")
|
||||
(em "goodnight" "moon" (meta "foo3" "bar3"))))
|
||||
(define split-predicate (λ(x) (and (txexpr? x) (equal? 'meta (car x)))))
|
||||
(check-equal? (call-with-values (λ() (splitf-txexpr split-this-tx split-predicate)) list)
|
||||
(list '(root "hello" "world" (em "goodnight" "moon")) '((meta "foo" "bar") (meta "foo2" "bar2") (meta "foo3" "bar3"))))
|
||||
|
||||
(define split-proc (λ(x) '(div "foo")))
|
||||
(check-equal? (call-with-values (λ() (splitf-txexpr split-this-tx split-predicate split-proc)) list)
|
||||
(list '(root (div "foo") "hello" "world" (div "foo") (em "goodnight" "moon" (div "foo"))) '((meta "foo" "bar") (meta "foo2" "bar2") (meta "foo3" "bar3"))))
|
||||
|
||||
(check-equal? (xexpr->html '(root (script "3 > 2") "Why is 3 > 2?"))
|
||||
"<root><script><![CDATA[3 > 2]]></script>Why is 3 > 2?</root>"))
|
@ -1,39 +0,0 @@
|
||||
#lang racket/base
|
||||
(require "../main.rkt" sugar/define)
|
||||
|
||||
(module+ test
|
||||
(require rackunit "../main.rkt"))
|
||||
|
||||
(define+provide+safe (attr-ref* tx key)
|
||||
(txexpr? can-be-txexpr-attr-key? . -> . txexpr-attr-values?)
|
||||
(define results empty)
|
||||
(let loop ([tx tx])
|
||||
(when (and (txexpr? tx) (attrs-have-key? tx key) (attr-ref tx key))
|
||||
(set! results (cons (attr-ref tx key) results))
|
||||
(map loop (get-elements tx))
|
||||
(void)))
|
||||
(reverse results))
|
||||
|
||||
(module+ test
|
||||
(check-txexprs-equal? (attr-ref* '(root ((foo "bar")) "hello" "world" (meta ((foo "zam")) "bar2")
|
||||
(em ((foo "zam")) "goodnight" "moon")) 'foo) '("bar" "zam" "zam"))
|
||||
|
||||
(check-txexprs-equal? (attr-ref* '(root ((foo "bar")) "hello" "world" (meta ((foo "zam")) "bar2")
|
||||
(em ((foo "zam")) "goodnight" "moon")) 'nonexistent-key) '()))
|
||||
|
||||
|
||||
;; convert list of alternating keys & values to attr
|
||||
;; with override behavior (using hash)
|
||||
(define+provide+safe (merge-attrs . items)
|
||||
(() #:rest list-of-can-be-txexpr-attrs? . ->* . txexpr-attrs?)
|
||||
(hash->attrs (apply (λ xs (attrs->hash #:hash-style? #t xs)) items)))
|
||||
|
||||
(module+ test
|
||||
(check-true (attrs-equal? (merge-attrs 'foo "bar") '((foo "bar"))))
|
||||
(check-true (attrs-equal? (merge-attrs '(foo "bar")) '((foo "bar"))))
|
||||
(check-true (attrs-equal? (merge-attrs '((foo "bar"))) '((foo "bar"))))
|
||||
(check-true (attrs-equal? (merge-attrs "foo" 'bar) '((foo "bar"))))
|
||||
(check-true (attrs-equal? (merge-attrs "foo" "bar" "goo" "gar") '((foo "bar")(goo "gar"))))
|
||||
(check-true (attrs-equal? (merge-attrs (merge-attrs "foo" "bar" "goo" "gar") "hee" "haw")
|
||||
'((foo "bar")(goo "gar")(hee "haw"))))
|
||||
(check-true (attrs-equal? (merge-attrs '((foo "bar")(goo "gar")) "foo" "haw") '((foo "haw")(goo "gar")))))
|
@ -0,0 +1,4 @@
|
||||
#lang typed/racket/base
|
||||
|
||||
(require "txexpr/main.rkt")
|
||||
(provide (all-from-out "txexpr/main.rkt"))
|
@ -0,0 +1,76 @@
|
||||
#lang typed/racket/base
|
||||
(require (for-syntax racket/base) racket/match typed/sugar/define)
|
||||
(provide (all-defined-out))
|
||||
|
||||
; Section 2.2 of XML 1.1
|
||||
; (XML 1.0 is slightly different and more restrictive)
|
||||
(define/typed (valid-char? i)
|
||||
(Any -> Boolean)
|
||||
(and (exact-nonnegative-integer? i)
|
||||
(or (<= #x1 i #xD7FF)
|
||||
(<= #xE000 i #xFFFD)
|
||||
(<= #x10000 i #x10FFFF))))
|
||||
|
||||
(require/typed
|
||||
xml
|
||||
[#:struct location ([line : (Option Natural)]
|
||||
[char : (Option Natural)]
|
||||
[offset : Natural])]
|
||||
[#:struct source ([start : (U location Symbol #f)]
|
||||
[stop : (U location Symbol #f)])]
|
||||
[#:struct (cdata source) ([string : String])]
|
||||
[#:struct comment ([text : String])]
|
||||
[#:struct (p-i source) ([target-name : Symbol]
|
||||
[instruction : String])]
|
||||
[xexpr->string (Xexpr -> String)])
|
||||
(provide (all-from-out xml) cdata? xexpr->string)
|
||||
|
||||
|
||||
(define-type Valid-Char Natural) ;; overinclusive but that's as good as it gets
|
||||
(define-type Txexpr-Tag Symbol)
|
||||
(define-type Txexpr-Attr-Key Symbol)
|
||||
(define-type Txexpr-Attr-Value String)
|
||||
(define-type Txexpr-Attr (List Txexpr-Attr-Key Txexpr-Attr-Value))
|
||||
(define-predicate Txexpr-Attr? Txexpr-Attr)
|
||||
(define-type Can-Be-Txexpr-Attr-Key (U Symbol String))
|
||||
(define-type Can-Be-Txexpr-Attr-Value (U Symbol String))
|
||||
(define-type Txexpr-Attrs (Listof Txexpr-Attr))
|
||||
(define-type Txexpr-Attr-Hash (HashTable Txexpr-Attr-Key Txexpr-Attr-Value))
|
||||
(define-type Txexpr-Element Xexpr)
|
||||
(define-type Txexpr-Elements (Listof Txexpr-Element))
|
||||
(define-type Txexpr-Full (List* Txexpr-Tag Txexpr-Attrs (Listof Xexpr)))
|
||||
(define-type Txexpr-Short (Pairof Txexpr-Tag (Listof Xexpr)))
|
||||
(define-type Txexpr (U Txexpr-Full Txexpr-Short))
|
||||
(define-type Xexpr (Rec X
|
||||
(U String
|
||||
(List* Txexpr-Tag Txexpr-Attrs (Listof X))
|
||||
(Pairof Txexpr-Tag (Listof X))
|
||||
Symbol
|
||||
Valid-Char
|
||||
cdata
|
||||
comment
|
||||
p-i)))
|
||||
|
||||
(define-predicate xexpr? Xexpr)
|
||||
(define-predicate txexpr? Txexpr)
|
||||
(define-predicate txexpr-short? Txexpr-Short)
|
||||
(define-predicate txexpr-tag? Txexpr-Tag)
|
||||
(define-predicate txexpr-tags? (Listof Txexpr-Tag))
|
||||
(define-predicate txexpr-attr? Txexpr-Attr)
|
||||
(define-predicate txexpr-attrs? Txexpr-Attrs)
|
||||
(define-predicate Valid-Char? Valid-Char)
|
||||
(define/typed (txexpr-element? x)
|
||||
(Any -> Boolean)
|
||||
(if (xexpr? x)
|
||||
(if (Valid-Char? x) (valid-char? x) #t)
|
||||
#f))
|
||||
(define-predicate txexpr-elements? (Listof Xexpr))
|
||||
(define-predicate txexpr-attr-key? Txexpr-Attr-Key)
|
||||
(define-predicate txexpr-attr-value? Txexpr-Attr-Value)
|
||||
(define-predicate txexpr-attr-values? (Listof Txexpr-Attr-Value))
|
||||
(define-predicate can-be-txexpr-attr-key? Can-Be-Txexpr-Attr-Key)
|
||||
(define-predicate can-be-txexpr-attr-value? Can-Be-Txexpr-Attr-Value)
|
||||
(define-predicate can-be-txexpr-attr? (List Can-Be-Txexpr-Attr-Key Can-Be-Txexpr-Attr-Value))
|
||||
(define-type Can-Be-Txexpr-Attr (U Txexpr-Attr Txexpr-Attrs Can-Be-Txexpr-Attr-Key Can-Be-Txexpr-Attr-Value))
|
||||
(define-predicate can-be-txexpr-attrs? Can-Be-Txexpr-Attr)
|
||||
(define-predicate list-of-can-be-txexpr-attrs? (Listof Can-Be-Txexpr-Attr))
|
Loading…
Reference in New Issue