Add project --show
[candle] / src / main / cli.lisp
1 (in-package #:candle-cli)
2
3 (defun main-options ()
4  '((:name :help :short "h" :long "help" :description "Print this usage.")
5    (:name :port :short "p" :long "port" :takes-argument t :variable-name "PORT"
6     :description "Port on which to listen for commands.  Defaults to 25004")
7    (:positional "<command>" :required t :description "Command to send to candle server")))
8
9 (defun project-options ()
10  '((:name :help :short "h" :long "help" :description "Print this usage.")
11    (:name :add :long "add" :takes-argument t :description
12     "Add a project.  NAME is the name of the project, which must not include colons, while SRC is the location of the repository for cloning.  This location must be accessible by the machine running candle."
13     :variable-name "NAME:SRC")
14    (:name :show :long "show" :takes-argument t :description
15     "Show branch information for a project named by NAME."
16     :variable-name "NAME")
17    (:name :delete :long "delete" :takes-argument t :description
18     "Delete a project named by NAME."
19     :variable-name "NAME")))
20
21 (defun job-options ()
22  '((:name :help :short "h" :long "help" :description "Print this usage.")
23    (:name :project-name :long "project" :takes-argument t :description "The project name for the jobs under consideration.")))
24
25 (defun run-options ()
26  '((:name :help :short "h" :long "help" :description "Print this usage.")))
27
28 (defun main-usage ()
29  (format t "~A"
30   (opera:usage
31    "candle"
32    (main-options)
33    "Interacts with candle server.  The available commands are:
34   project   List, show or add projects
35   job       List or show jobs
36   run       Local command.  Run candle in the current working directory")))
37
38 (defgeneric execute-command (command args))
39
40 (defmethod execute-command (command args)
41  (format *error-output* "Unknown command '~(~A~)'.  See 'candle --help'.~%" command))
42
43 (defun add-project (project-definition)
44  (let
45   ((pos (position #\: project-definition)))
46   (cond
47    ((not pos) (format *error-output* "Project definition ~A is not valid.  See 'candle project --help'.~%" project-definition))
48    (t
49     (let*
50      ((name (subseq project-definition 0 pos))
51       (src (subseq project-definition (1+ pos))))
52      (communication:query `(candle:add-project ,name ,src))
53      (format t "Added project ~A at src definition ~A~%" name src))))))
54
55 (defun delete-project (name)
56  (communication:query `(candle:delete-project ,name))
57  (format t "Removed project ~A~%" name))
58
59 (defun show-project (name)
60  (mapcar
61   (lambda (branch-info)
62    (format t "~A: ~A at ~A~%"
63     (first branch-info)
64     (case (second branch-info)
65      (:succeeded (format nil "~c[1;32mPassed~c[0m" #\Esc #\Esc))
66      (:failed (format nil "~c[1;31mFailed~c[0m" #\Esc #\Esc))
67      (:queued "In queue")
68      (:no-candle-file "No candle file present")
69      (:in-progress "In progress"))
70     (format nil "~{~A/~A/~A ~A:~A~}"
71      (utils:time-as-list (third branch-info) :month :date :year :hr :min))))
72   (sort (communication:query `(candle:project-branch-information ,name)) #'< :key #'third)))
73
74 (defmethod execute-command ((command (eql :project)) args)
75  (multiple-value-bind (options remaining-args error) (opera:process-arguments (project-options) args)
76   (cond
77    ((eql error :unknown-option) (format *error-output* "Unknown option: ~A.  See 'candle project --help'.~%" (car remaining-args)))
78    ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A.  See 'candle project --help'.~%" (car remaining-args)))
79    ((opera:option-present :help options) (format t "~A" (opera:usage "candle project" (project-options))))
80    ((opera:option-present :delete options) (delete-project (opera:option-argument :delete options)))
81    ((opera:option-present :show options) (show-project (opera:option-argument :show options)))
82    ((opera:option-present :add options) (add-project (opera:option-argument :add options))))))
83
84 (defmethod execute-command ((command (eql :job)) args)
85  (multiple-value-bind (options remaining-args error) (opera:process-arguments (job-options) args)
86   (cond
87    ((eql error :unknown-option) (format *error-output* "Unknown option: ~A.  See 'candle job --help'.~%" (car remaining-args)))
88    ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A.  See 'candle job --help'.~%" (car remaining-args)))
89    ((opera:option-present :help options) (format t "~A" (opera:usage "candle job" (job-options)))))))
90
91 (defmethod execute-command ((command (eql :run)) args)
92  (multiple-value-bind (options remaining-args error) (opera:process-arguments (run-options) args)
93   (cond
94    ((eql error :unknown-option) (format *error-output* "Unknown option: ~A.  See 'candle run --help'.~%" (car remaining-args)))
95    ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A.  See 'candle run --help'.~%" (car remaining-args)))
96    (remaining-args (format *error-output* "Unknown option: ~A. See 'candle run --help'.~%" (car remaining-args)))
97    ((opera:option-present :help options) (format t "~A" (opera:usage "candle run" (run-options))))
98    ((not (candle:run)) (sb-ext:exit :code 1)))))
99
100 (defun run ()
101  (multiple-value-bind (options remaining-args error) (opera:process-arguments (main-options) (cdr sb-ext:*posix-argv*))
102   (cond
103    ((opera:option-present :help options) (main-usage))
104    ((eql error :unknown-option) (format *error-output* "Unknown option: ~A.  See 'candle --help'.~%" (car remaining-args)))
105    ((and (opera:option-present :port options) (not (parse-integer (opera:option-argument :port options) :junk-allowed t)))
106     (format *error-output* "--port requires a number.  See 'candle-server -h'~%"))
107    ((not remaining-args) (format *error-output* "Command required.  See 'candle --help'.~%"))
108    (t
109     (let
110      ((communication:*query-port*
111        (or
112         (and
113          (opera:option-present :port options)
114          (parse-integer (opera:option-argument :port options) :junk-allowed t))
115         25004)))
116      (execute-command (intern (string-upcase (car remaining-args)) :keyword) (cdr remaining-args)))))))