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/optional.rkt

49 lines
1.5 KiB
Racket

6 years ago
#lang debug racket/base
6 years ago
(require "helper.rkt" racket/class)
6 years ago
(provide (all-defined-out))
6 years ago
#|
approximates
https://github.com/mbutterick/restructure/blob/master/src/Optional.coffee
|#
6 years ago
(define xoptional%
(class xenobase%
(super-new)
(init-field type condition)
6 years ago
6 years ago
(unless (xenomorphic-type? type)
6 years ago
(raise-argument-error '+xoptional"xenomorphic type" type))
6 years ago
(define (resolve-condition parent)
(define maybe-proc condition)
(if (procedure? maybe-proc)
(maybe-proc parent)
maybe-proc))
(define/augment (xxdecode port parent)
(when (resolve-condition parent)
(send type xxdecode port parent)))
(define/augment (xxencode val port [parent #f])
(when (resolve-condition parent)
(send type xxencode val port parent)))
(define/augment (xxsize [val #f] [parent #f])
(if (resolve-condition parent)
(send type xxsize val parent)
0))))
6 years ago
(define no-val (gensym))
(define (+xoptional [type-arg #f] [cond-arg no-val]
#:type [type-kwarg #f]
6 years ago
#:condition [cond-kwarg no-val]
#:subclass [class xoptional%])
6 years ago
(define type (or type-arg type-kwarg))
(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]))
6 years ago
(new class [type type] [condition condition]))