You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
typesetting/xenomorph/xenomorph/redo/optional.rkt

60 lines
2.2 KiB
Racket

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

#lang debug racket/base
(require "helper.rkt")
(provide (all-defined-out))
#|
approximates
https://github.com/mbutterick/restructure/blob/master/src/Optional.coffee
|#
(define (resolve-condition xo parent)
(define maybe-proc (xoptional-condition xo))
(if (procedure? maybe-proc)
(maybe-proc parent)
maybe-proc))
(define/post-decode (xoptional-decode xo [port-arg (current-input-port)] #:parent [parent #f])
(define port (->input-port port-arg))
(parameterize ([current-input-port port])
(when (resolve-condition xo parent)
(decode (xoptional-type xo) #:parent parent))))
(define/pre-encode (xoptional-encode xo val [port-arg (current-output-port)] #:parent [parent #f])
(define port (if (output-port? port-arg) port-arg (open-output-bytes)))
(parameterize ([current-output-port port])
(when (resolve-condition xo parent)
(encode (xoptional-type xo) val #:parent parent))
(unless port-arg (get-output-bytes port))))
(define/finalize-size (xoptional-size xo [val #f] #:parent [parent #f])
(when (resolve-condition xo parent)
(size (xoptional-type xo) val #:parent parent)))
(struct xoptional xbase (type condition) #:transparent
#:methods gen:xenomorphic
[(define decode xoptional-decode)
(define encode xoptional-encode)
(define size xoptional-size)])
#;(define (+xoptional [type-arg #f] [cond-arg #f]
#:type [type-kwarg #f]
#:condition [cond-kwarg #f])
(define type (or type-arg type-kwarg))
(unless (xenomorphic? type)
(raise-argument-error '+xoptional"xenomorphic type" type))
(define condition (or cond-arg cond-kwarg))
(xoptional type condition))
(define no-val (gensym))
(define (+xoptional [type-arg #f] [cond-arg no-val]
#:type [type-kwarg #f]
#:condition [cond-kwarg no-val])
(define type (or type-arg type-kwarg))
(unless (xenomorphic? type)
(raise-argument-error '+xoptional"xenomorphic type" type))
(define condition (cond
[(and (eq? cond-arg no-val) (eq? cond-kwarg no-val)) #true]
[(not (eq? cond-arg no-val)) cond-arg]
[(not (eq? cond-kwarg no-val)) cond-kwarg]))
(xoptional type condition))