aboutsummaryrefslogtreecommitdiff
path: root/src/property/os.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-03-18 09:31:43 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-03-18 09:55:57 -0700
commit9288d579cce868af02e442ad8d910c06b710ef53 (patch)
treee20d924c6c7be9ebe2b138c746438ffcc17cc485 /src/property/os.lisp
parent415ce75b066526125c5647e54b0db4821f4ddc54 (diff)
downloadconsfigurator-9288d579cce868af02e442ad8d910c06b710ef53.tar.gz
add OS:HOST-TYPECASE
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/os.lisp')
-rw-r--r--src/property/os.lisp33
1 files changed, 30 insertions, 3 deletions
diff --git a/src/property/os.lisp b/src/property/os.lisp
index 67d0ebd..db4c2a2 100644
--- a/src/property/os.lisp
+++ b/src/property/os.lisp
@@ -79,10 +79,37 @@
;;;; Property combinators
-;; TODO should move OS-TYPECASE* here, once figure out API for property
-;; combinator helper macros
+(define-function-property-combinator os-typecase* (host &rest cases)
+ (flet ((choose-propapp ()
+ (or (loop with os = (class-of (if host
+ (car (getf (hostattrs host) :os))
+ (get-hostattrs-car :os)))
+ for (type propapp) on cases by #'cddr
+ when (subtypep os type) return propapp)
+ (inapplicable-property
+ "Host's OS ~S fell through OS:TYPECASE."
+ (class-of (get-hostattrs-car :os))))))
+ (:retprop :type (collapse-types (loop for propapp in (cdr cases) by #'cddr
+ collect (propapptype propapp)))
+ :desc (lambda (&rest args)
+ (declare (ignore args))
+ (propappdesc (choose-propapp)))
+ :check (lambda (&rest args)
+ (declare (ignore args))
+ (propappcheck (choose-propapp)))
+ :apply (lambda (&rest args)
+ (declare (ignore args))
+ (propappapply (choose-propapp)))
+ :unapply (lambda (&rest args)
+ (declare (ignore args))
+ (propappunapply (choose-propapp))))))
+
(defmacro typecase (&rest cases)
- `(consfigurator::os-typecase*
+ `(host-typecase nil ,@cases))
+
+(defmacro host-typecase (host &rest cases)
+ `(os-typecase*
+ ,host
,@(loop for case in cases
collect `',(intern (symbol-name (car case))
(find-package :consfigurator.property.os))