1 (in-package #:candle-cli)
3 (defgeneric execute-command (command args))
5 (defmethod execute-command (command args)
6 (format *error-output* "Unknown command '~(~A~)'. See 'candle --help'.~%" command))
8 (defun job-info->line (job-info)
9 (format nil "~A (~A) ~A"
10 (subseq (first job-info) 0 8)
11 (format nil "~{~A/~A/~A ~A:~A~}"
12 (utils:time-as-list (third job-info) :month :date :year :hr :min))
13 (case (second job-info)
14 (:succeeded (format nil "~c[1;32mPassed~c[0m" #\Esc #\Esc))
15 (:failed (format nil "~c[1;31mFailed~c[0m" #\Esc #\Esc))
17 (:no-candle-file "No candle file present")
18 (:in-progress "In progress"))))
20 ;;; Section for ./candle
23 (multiple-value-bind (options remaining-args error) (opera:process-arguments (main-options) (cdr sb-ext:*posix-argv*))
25 ((opera:option-present :help options) (main-usage))
26 ((eql error :unknown-option) (format *error-output* "Unknown option: ~A. See 'candle --help'.~%" (car remaining-args)))
27 ((and (opera:option-present :port options) (not (parse-integer (opera:option-argument :port options) :junk-allowed t)))
28 (format *error-output* "--port requires a number. See 'candle-server -h'~%"))
29 ((not remaining-args) (format *error-output* "Command required. See 'candle --help'.~%"))
32 ((communication:*query-port*
35 (opera:option-present :port options)
36 (parse-integer (opera:option-argument :port options) :junk-allowed t))
38 (execute-command (intern (string-upcase (car remaining-args)) :keyword) (cdr remaining-args)))))))
40 (defun main-options ()
41 '((:name :help :short "h" :long "help" :description "Print this usage.")
42 (:name :port :short "p" :long "port" :takes-argument t :variable-name "PORT"
43 :description "Port on which to listen for commands. Defaults to 25004")
44 (:positional "<command>" :required t :description "Command for candle, see below")))
51 "Interacts with candle server. The available commands are:
52 project Interact with projects
53 job Get information about jobs
54 run Local command. Run candle in the current working directory")))
56 ;;; Section for ./candle project
58 (defmethod execute-command ((command (eql :project)) args)
59 (multiple-value-bind (options remaining-args error) (opera:process-arguments (project-options) args)
61 ((eql error :unknown-option)
62 (format *error-output* "Unknown option: ~A. See 'candle project --help'.~%" (car remaining-args)))
63 ((eql error :required-argument-missing)
64 (format *error-output* "Missing argument for ~A. See 'candle project --help'.~%" (car remaining-args)))
65 ((opera:option-present :help options) (project-usage))
68 ((subcommand (intern (string-upcase (car remaining-args)) :keyword)))
70 (:delete (delete-project (cdr remaining-args)))
71 (:add (add-project (cdr remaining-args)))
72 (:show (show-project (cdr remaining-args)))
73 (:refresh (refresh-project (cdr remaining-args)))
74 (:list (list-projects))
75 (t (project-usage))))))))
77 (defun project-usage ()
82 "Interacts with projects. The available project subcommands are:
83 list List all projects
84 add <name>:<src> Add a project
85 delete <name> Delete a project
86 show <name> Show project branch information
87 refresh <name> Tell the candle server to refresh the project information")))
89 (defun project-options ()
90 '((:name :help :short "h" :long "help" :description "Print this usage.")
91 (:positional "<subcommand>" :description "Project subcommand, see below.")))
93 (defun add-project (args)
96 '((:name :help :short "h" :long "help" :description "Print this usage.")
97 (:positional "<name>:<src>" :description "<name> is the name of the project, which must be alphanumeric (hyphens are allowed), while <src> is the location of the repository for cloning. This location must be accessible by the machine running candle.")))
98 (usage (opera:usage "candle project add" options)))
99 (multiple-value-bind (options remaining-args error) (opera:process-arguments options args)
101 ((eql error :unknown-option) (format *error-output* "Unknown option: ~A. See 'candle project add --help'.~%" (car remaining-args)))
102 ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A. See 'candle project add --help'.~%" (car remaining-args)))
103 ((opera:option-present :help options) (format t "~A" usage))
104 ((not remaining-args) (format *error-output* "Required <name>:<src>. See 'candle project add --help'.~%"))
107 ((project-definition (car remaining-args))
108 (pos (position #\: project-definition)))
110 ((not pos) (format *error-output* "Project definition ~A is not valid. See 'candle project --help'.~%" project-definition))
113 ((name (subseq project-definition 0 pos))
114 (src (subseq project-definition (1+ pos))))
115 (communication:query `(candle:add-project ,name ,src))
116 (format t "Added project ~A at src definition ~A~%" name src))))))))))
118 (defun delete-project (args)
121 '((:name :help :short "h" :long "help" :description "Print this usage.")
122 (:positional "<name>" :description "<name> is the name of the project to delete")))
123 (usage (opera:usage "candle project delete" options)))
124 (multiple-value-bind (options remaining-args error) (opera:process-arguments options args)
126 ((eql error :unknown-option) (format *error-output* "Unknown option: ~A. See 'candle project delete --help'.~%" (car remaining-args)))
127 ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A. See 'candle project delete --help'.~%" (car remaining-args)))
128 ((opera:option-present :help options) (format t "~A" usage))
129 ((not remaining-args) (format *error-output* "Required <name>. See 'candle project delete --help'.~%"))
131 (communication:query `(candle:delete-project ,(car remaining-args)))
132 (format t "Removed project ~A~%" (car remaining-args)))))))
134 (defun show-project (args)
137 '((:name :help :short "h" :long "help" :description "Print this usage.")
138 (:positional "<name>" :description "<name> is the name of the project to show")))
139 (usage (opera:usage "candle project delete" options)))
140 (multiple-value-bind (options remaining-args error) (opera:process-arguments options args)
142 ((eql error :unknown-option) (format *error-output* "Unknown option: ~A. See 'candle project show --help'.~%" (car remaining-args)))
143 ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A. See 'candle project show --help'.~%" (car remaining-args)))
144 ((opera:option-present :help options) (format t "~A" usage))
145 ((not remaining-args) (format *error-output* "Required <name>. See 'candle project show --help'.~%"))
148 ((branch-infos (communication:query `(candle:project-branch-information ,(car remaining-args))))
149 (width (apply #'max (mapcar #'length (mapcar #'car branch-infos)))))
151 (lambda (branch-info)
152 (format t (format nil "~~~A@A: ~~A~~%" width)
154 (job-info->line (second branch-info))))
155 (sort branch-infos #'< :key (lambda (branch-info) (third (second branch-info)))))))))))
157 (defun refresh-project (args)
160 '((:name :help :short "h" :long "help" :description "Print this usage.")
161 (:positional "<name>" :description "<name> is the name of the project to refresh")))
162 (usage (opera:usage "candle project refresh" options)))
163 (multiple-value-bind (options remaining-args error) (opera:process-arguments options args)
165 ((eql error :unknown-option) (format *error-output* "Unknown option: ~A. See 'candle project refresh --help'.~%" (car remaining-args)))
166 ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A. See 'candle project refresh --help'.~%" (car remaining-args)))
167 ((opera:option-present :help options) (format t "~A" usage))
168 ((not remaining-args) (format *error-output* "Required <name>. See 'candle project refresh --help'.~%"))
170 (communication:query `(candle:refresh-project ,(car remaining-args)))
171 (format t "Refreshed project ~A~%" (car remaining-args)))))))
173 (defun list-projects ()
174 (format t "~{~{~A ~A~}~%~}" (communication:query `(candle:list-projects))))
176 ;;; Section for ./candle job
178 (defmethod execute-command ((command (eql :job)) args)
179 (multiple-value-bind (options remaining-args error) (opera:process-arguments (job-options) args)
181 ((eql error :unknown-option) (format *error-output* "Unknown option: ~A. See 'candle job --help'.~%" (car remaining-args)))
182 ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A. See 'candle job --help'.~%" (car remaining-args)))
183 ((opera:option-present :help options) (format t "~A" (opera:usage "candle job" (job-options) "Lists all jobs in PROJECT if no other action is specified")))
184 ((not (opera:option-present :project-name options)) (format *error-output* "Requires --project argument. See 'candle job --help'.~%" ))
185 ((opera:option-present :log options) (job-log (opera:option-argument :project-name options) (opera:option-argument :log options)))
186 (t (project-history (opera:option-argument :project-name options))))))
188 (defun job-options ()
189 '((:name :help :short "h" :long "help" :description "Print this usage.")
190 (:name :project-name :long "project" :takes-argument t
191 :variable-name "PROJECT"
192 :description "The project name for the jobs under consideration. Required argumnet.")
193 (:name :log :long "log" :takes-argument t
195 :description "Show's the processing log for job at sha SHA. SHA can be truncated.")))
197 (defun project-history (name)
201 (sort (communication:query `(candle:project-job-information ,name)) #'< :key #'third))))
203 (defun job-log (project-name sha)
204 (format t "~A~%" (communication:query `(candle:get-job-log ,project-name ,sha))))
206 ;;; Section for ./candle run
208 (defmethod execute-command ((command (eql :run)) args)
209 (multiple-value-bind (options remaining-args error) (opera:process-arguments (run-options) args)
211 ((eql error :unknown-option) (format *error-output* "Unknown option: ~A. See 'candle run --help'.~%" (car remaining-args)))
212 ((eql error :required-argument-missing) (format *error-output* "Missing argument for ~A. See 'candle run --help'.~%" (car remaining-args)))
213 (remaining-args (format *error-output* "Unknown option: ~A. See 'candle run --help'.~%" (car remaining-args)))
214 ((opera:option-present :help options) (format t "~A" (opera:usage "candle run" (run-options))))
215 ((not (candle:run)) (sb-ext:exit :code 1)))))
217 (defun run-options ()
218 '((:name :help :short "h" :long "help" :description "Print this usage.")))