Add project failures command
[candle] / src / main / cli.lisp
index c7a079e64dc718199ccf365729f18574b878eecd..d0a5c2157989c189ca02c4d5de3d67d56bd30783 100644 (file)
@@ -72,6 +72,7 @@
       (:show (show-project (cdr remaining-args)))
       (:refresh (refresh-project (cdr remaining-args)))
       (:list (list-projects))
+      (:failures (project-failures (cdr remaining-args)))
       (t (project-usage))))))))
 
 (defun project-usage ()
 (defun list-projects ()
  (format t "~{~{~A  ~A~}~%~}" (communication:query `(candle:list-projects))))
 
+(defun project-failures (args)
+ (let*
+  ((options
+   '((:name :help :short "h" :long "help" :description "Print this usage.")
+     (:name :project :long "project" :variable-name "PROJECT" :takes-argument t :description "Restrict failures to project named by PROJECT")))
+    (usage (opera:usage "candle project failures" options)))
+  (multiple-value-bind (options remaining-args error) (opera:process-arguments options args)
+   (cond
+    ((eql error :unknown-option) (format *error-output* "Unknown option: ~A.  See 'candle project failures --help'.~%" (car remaining-args)))
+    ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A.  See 'candle project failures --help'.~%" (car remaining-args)))
+    ((opera:option-present :help options) (format t "~A" usage))
+    (t
+     (format t "~A"
+      (communication:query
+       `(candle:failures ,(when (opera:option-present :project options) (opera:option-argument :project options))))))))))
+
 ;;; Section for ./candle job
 
 (defmethod execute-command ((command (eql :job)) args)