Hash :
6eda9e1d
Author :
Thomas de Grivel
Date :
2024-07-11T14:42:10
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
;; cl-unix-cybernetics
;; Copyright 2013-2022 Thomas de Grivel <thodg@kmx.io>
;;
;; Permission is hereby granted to use this software granted
;; the above copyright notice and this permission paragraph
;; are included in all copies and substantial portions of this
;; software.
;;
;; THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
;; PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
;; AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
;; THIS SOFTWARE.
(in-package :cl-unix-cybernetics)
;; Operation methods
(defmethod operation-generic-function ((op operation))
(symbol-function (operation-name op)))
(defmethod print-object ((op operation) stream)
(print-unreadable-object (op stream :type t :identity (not *print-pretty*))
(format stream "~S (~{~A~^ ~})"
(operation-name op)
(operation-properties op))))
;; Relate operations to properties in each resource class
(defmethod operation-class ((rc resource-class))
'operation)
(defmethod compute-operations ((rc resource-class))
(let ((class-precedence-list (closer-mop:class-precedence-list rc))
(ops))
(loop
(when (endp class-precedence-list)
(return))
(let* ((class (pop class-precedence-list))
(direct-ops (when (typep class 'resource-class)
(direct-operations class))))
(dolist (op-definition direct-ops)
(let ((op (apply #'make-instance (operation-class rc)
:name op-definition)))
(push op ops)))))
(nreverse ops)))
(defmethod operation-properties ((rc resource-class))
(let ((properties nil))
(dolist (op (operations-of rc))
(dolist (property (operation-properties op))
(pushnew property properties)))
(sort properties #'string<)))
;; Probing resources
(defmethod operation-properties ((r resource))
(operation-properties (class-of r)))
(defmethod operations-of ((r resource))
(operations-of (class-of r)))
(defmethod find-operation ((r resource)
(property symbol)
os)
(some (lambda (op)
(when (find property (operation-properties op) :test #'eq)
(let ((f (operation-generic-function op)))
(when (compute-applicable-methods f (list r os))
op))))
(operations-of r)))
(defmethod list-operations (res plist os)
(let (operations)
(loop
(when (endp plist)
(return))
(let* ((property (pop plist))
(value (pop plist))
(op (find-operation res property os)))
(declare (ignore value))
(unless op
(error 'resource-operation-not-found
:resource res
:property property
:host *host*
:os os))
(pushnew (the operation op) operations)))
(nreverse operations)))
(defgeneric resource-op-properties (resource))
(defgeneric op-property-before-p (resource p1 p2))
(defgeneric operation-before-p (resource op1 op2))
(defgeneric sort-operations (resource operations))
(defmethod resource-op-properties ((res resource))
(op-properties (class-of res)))
(defmethod op-property-before-p ((res resource) (p1 symbol) (p2 symbol))
(dolist (prop (resource-op-properties res))
(cond ((endp prop) (return nil))
((eq p1 (first prop)) (return t))
((eq p2 (first prop)) (return nil)))
(pop prop)))
(defmethod operation-before-p ((res resource) (op1 operation)
(op2 operation))
(declare (type operation op1 op2))
(let ((op1-properties (operation-properties op1)))
(loop (when (endp op1-properties) (return))
(let ((p1 (pop op1-properties))
(op2-properties (operation-properties op2))
(before-p t))
(loop (when (endp op2-properties) (return))
(let ((p2 (pop op2-properties)))
(unless (op-property-before-p res p1 p2)
(setf before-p nil)
(return))))
(when before-p
(return-from operation-before-p t)))))
(find op1 (the list (operations-before op2))))
(defmethod sort-operations ((res resource) (operations list))
(sort operations (lambda (op1 op2)
(operation-before-p res op1 op2))))
(defmethod operate ((res resource) (plist list))
(let* ((os (host-os (current-host)))
(operations (list-operations res plist os))
(sorted-ops (sort-operations res operations))
(results))
(loop
(when (endp sorted-ops)
(return))
(let* ((op (pop sorted-ops))
(result (apply (operation-generic-function op)
res os plist)))
(push result results)))
(nreverse results)))
;; Conditions
(defmethod print-object ((c resource-operation-not-found) stream)
(if *print-escape*
(call-next-method)
(with-slots (resource property host os) c
(format stream "Operation not found~%resource ~A~%property ~A~%host ~S~%~A"
resource property (hostname host)
(class-name (class-of os))))))
(defun print-list (x stream)
(write-char #\( stream)
(let ((first t))
(dolist (item x)
(if first
(setq first nil)
(write-char #\Space stream))
(if (consp item)
(print-list item stream)
(prin1 item stream))))
(write-char #\) stream))
(defun print-diff (stream diff)
(dolist (item diff)
(destructuring-bind (property expected probed) item
(declare (type symbol property))
(write-str stream property #\Newline
" expected ")
(prin1 expected stream)
(write-str stream #\Newline
" probed ")
(prin1 probed stream)
(write-str stream #\Newline))))
(defmethod print-object ((c resource-operation-failed) stream)
(if *print-escape*
(call-next-method)
(let ((*print-level*))
(with-slots (operation resource diff host os) c
(write-str stream (operation-name operation)
" failed for (resource '"
(string-downcase (class-name (class-of resource)))
" " (prin1-to-string (resource-id resource))
") on (host " (prin1-to-string (hostname host))
") " (class-name (class-of os))
"." #\Newline
"Conflicting values :" #\Newline)
(print-diff stream diff)))))