2013-03-23 00:43:44 +01:00
|
|
|
|
;; Copyright (C) 2013 Tom Willemsen <tom at ryuslash dot org>
|
|
|
|
|
|
|
|
|
|
;; This file is part of CLark
|
|
|
|
|
|
|
|
|
|
;; CLark is free software: you can redistribute it and/or modify it
|
|
|
|
|
;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; CLark is distributed in the hope that it will be useful, but
|
|
|
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
;; General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;; along with CLark. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2013-10-06 14:30:15 +02:00
|
|
|
|
(in-package :clark)
|
2013-03-20 21:58:10 +01:00
|
|
|
|
|
|
|
|
|
(defvar *db* nil
|
|
|
|
|
"The database connection.")
|
|
|
|
|
|
2013-03-22 20:11:31 +01:00
|
|
|
|
(defvar *help-messages* nil
|
2013-03-21 23:41:13 +01:00
|
|
|
|
"Help texts for commands.")
|
|
|
|
|
|
2013-03-22 20:11:31 +01:00
|
|
|
|
(defvar *max-command-name-length* 0
|
2013-03-23 16:53:08 +01:00
|
|
|
|
"Length of the longest command name.")
|
2013-03-22 20:11:31 +01:00
|
|
|
|
|
2013-03-23 17:58:31 +01:00
|
|
|
|
(defvar *script* nil
|
|
|
|
|
"Whether or not to output in a machine-readable format.")
|
|
|
|
|
|
2013-10-06 13:34:24 +02:00
|
|
|
|
(define-condition exiting ()
|
|
|
|
|
((exit-code :initform 0 :initarg :code :reader exit-code)))
|
2013-04-06 17:24:05 +02:00
|
|
|
|
|
2013-03-23 16:37:41 +01:00
|
|
|
|
(defmacro call-command (name &rest args)
|
|
|
|
|
(let ((command-name (make-command-name (symbol-name name))))
|
2013-03-28 00:39:29 +01:00
|
|
|
|
`(,command-name ,@args)))
|
2013-03-23 16:37:41 +01:00
|
|
|
|
|
2013-04-06 17:24:05 +02:00
|
|
|
|
(defmacro defcommand (name (&rest args) sdoc ldoc &body body)
|
2013-03-22 20:11:31 +01:00
|
|
|
|
"Define a new command usable on the command-line."
|
2013-03-23 18:40:54 +01:00
|
|
|
|
(let* ((sname (string-downcase (symbol-name name)))
|
|
|
|
|
(command-name (make-command-name (symbol-name name))))
|
2013-03-22 20:11:31 +01:00
|
|
|
|
`(progn
|
2013-03-28 00:39:29 +01:00
|
|
|
|
(defun ,command-name (,@args)
|
2013-03-23 16:31:22 +01:00
|
|
|
|
,sdoc
|
2013-10-06 13:34:24 +02:00
|
|
|
|
,@body)
|
2013-03-22 20:11:31 +01:00
|
|
|
|
(setf *help-messages*
|
2013-03-23 18:40:54 +01:00
|
|
|
|
(nconc *help-messages* '((,sname ,sdoc ,ldoc)))
|
2013-03-22 20:11:31 +01:00
|
|
|
|
*max-command-name-length*
|
2013-10-06 14:35:39 +02:00
|
|
|
|
(max *max-command-name-length* (length ,sname)))
|
|
|
|
|
(export ',command-name))))
|
2013-03-22 20:11:31 +01:00
|
|
|
|
|
2013-04-06 17:24:05 +02:00
|
|
|
|
(defmacro with-error-and-help (code cmd fmt &rest args)
|
|
|
|
|
"Call `with-error-status' with CODE, format FMT with ARGS and call
|
|
|
|
|
the help command."
|
|
|
|
|
`(with-error-status ,code
|
|
|
|
|
(format t ,fmt ,@args)
|
|
|
|
|
(call-command help ,cmd)))
|
|
|
|
|
|
|
|
|
|
(defmacro with-error-status (code &body body)
|
|
|
|
|
"Bind `*exit-status*' to CODE, `*standard-output*' to
|
|
|
|
|
`*error-output*' and execute BODY."
|
|
|
|
|
`(let ((*standard-output* *error-output*)
|
2013-10-06 13:34:24 +02:00
|
|
|
|
(exit-status ,code))
|
|
|
|
|
,@body
|
|
|
|
|
(when (> exit-status 0)
|
|
|
|
|
(signal 'exiting :code exit-status))))
|
2013-04-06 17:24:05 +02:00
|
|
|
|
|
2013-06-04 01:16:30 +02:00
|
|
|
|
(defparameter version "0.1.1"
|
2013-03-21 00:54:06 +01:00
|
|
|
|
"Clark's version.")
|
|
|
|
|
|
2013-03-23 20:46:19 +01:00
|
|
|
|
(defun add-tags (url-or-id tags)
|
2013-03-21 22:30:55 +01:00
|
|
|
|
"Add tags to the bookmark_tag table and possibly to tag."
|
2013-03-23 20:46:19 +01:00
|
|
|
|
(when url-or-id
|
|
|
|
|
(if (integerp url-or-id)
|
|
|
|
|
(map nil (lambda (tag)
|
|
|
|
|
(let ((tag-id (handler-case (insert-tag tag)
|
|
|
|
|
(sqlite-error () (get-tag-id tag)))))
|
|
|
|
|
(insert-bookmark-tag url-or-id tag-id))) tags)
|
|
|
|
|
(add-tags (get-bookmark-id url-or-id) tags))))
|
|
|
|
|
|
|
|
|
|
(defun clear-tags (url-or-id)
|
|
|
|
|
"Remove all tags from the bookmark URL."
|
|
|
|
|
(when url-or-id
|
|
|
|
|
(if (integerp url-or-id)
|
2013-06-04 01:12:38 +02:00
|
|
|
|
(delete-tags url-or-id)
|
2013-03-23 20:46:19 +01:00
|
|
|
|
(clear-tags (get-bookmark-id url-or-id)))))
|
2013-03-21 22:30:55 +01:00
|
|
|
|
|
2013-03-23 13:24:43 +01:00
|
|
|
|
(defun ensure-db-exists (name)
|
2013-03-20 21:58:10 +01:00
|
|
|
|
"Connect to the database, possibly creating it."
|
|
|
|
|
(let ((db-exists (probe-file name)))
|
2013-03-21 00:54:06 +01:00
|
|
|
|
(setf *db* (connect name))
|
2013-03-20 21:58:10 +01:00
|
|
|
|
(unless db-exists
|
2013-06-04 01:12:38 +02:00
|
|
|
|
(create-table-bookmark)
|
|
|
|
|
(create-table-tag)
|
|
|
|
|
(create-table-bookmark_tag))))
|
2013-03-23 20:46:19 +01:00
|
|
|
|
|
2013-03-23 13:24:43 +01:00
|
|
|
|
(defun get-db-location ()
|
|
|
|
|
"Get the location of the database."
|
2013-04-06 15:39:47 +02:00
|
|
|
|
(let ((xdg (sb-ext:posix-getenv "XDG_DATA_HOME"))
|
|
|
|
|
(home (sb-ext:posix-getenv "HOME")))
|
|
|
|
|
(pathname
|
|
|
|
|
(apply 'concatenate 'string
|
|
|
|
|
(or xdg home)
|
|
|
|
|
(unless xdg "/.local/share")
|
|
|
|
|
'("/clark/bookmarks.db")))))
|
2013-03-23 13:24:43 +01:00
|
|
|
|
|
2013-03-24 21:57:59 +01:00
|
|
|
|
(defun get-rc-location ()
|
|
|
|
|
"Get the location of the RC file."
|
2013-04-06 15:39:47 +02:00
|
|
|
|
(let ((xdg (sb-ext:posix-getenv "XDG_CONFIG_HOME"))
|
|
|
|
|
(home (sb-ext:posix-getenv "HOME")))
|
|
|
|
|
(pathname
|
|
|
|
|
(apply 'concatenate 'string
|
|
|
|
|
(or xdg home)
|
|
|
|
|
(unless xdg "/.config")
|
|
|
|
|
'("/clark/rc.lisp")))))
|
2013-03-24 21:57:59 +01:00
|
|
|
|
|
2013-03-23 16:31:22 +01:00
|
|
|
|
(defun help-message ()
|
|
|
|
|
(format t (concatenate
|
|
|
|
|
'string
|
2013-03-23 20:58:00 +01:00
|
|
|
|
"Usage: clark [options] [<command> [<options> ...]]~%"
|
|
|
|
|
"~%"
|
|
|
|
|
"Possible options:~%"
|
|
|
|
|
"~%"
|
|
|
|
|
" --script Output in a machine-readable format.~%"
|
2013-03-23 16:31:22 +01:00
|
|
|
|
"~%"
|
|
|
|
|
"Possible commands:~%"
|
|
|
|
|
"~%"))
|
|
|
|
|
(map nil (lambda (hlp)
|
|
|
|
|
(destructuring-bind (name short long) hlp
|
|
|
|
|
(declare (ignore long))
|
|
|
|
|
(format t " ~vA ~A~%" *max-command-name-length*
|
|
|
|
|
name short))) *help-messages*)
|
|
|
|
|
(format t "~%~A~%"
|
|
|
|
|
(concatenate 'string "Use `clark help <command>' to get more "
|
|
|
|
|
"information on a command.")))
|
|
|
|
|
|
2013-03-23 13:24:43 +01:00
|
|
|
|
(defun load-db ()
|
|
|
|
|
"Load the database."
|
|
|
|
|
(let ((db-location (get-db-location)))
|
|
|
|
|
(ensure-directories-exist db-location)
|
|
|
|
|
(ensure-db-exists db-location)))
|
|
|
|
|
|
2013-03-24 21:57:59 +01:00
|
|
|
|
(defun load-rc ()
|
|
|
|
|
"Load the RC file."
|
2013-10-06 14:30:15 +02:00
|
|
|
|
(let ((*package* (in-package :clark)))
|
2013-03-24 21:57:59 +01:00
|
|
|
|
(load (get-rc-location) :if-does-not-exist nil)))
|
|
|
|
|
|
2013-04-06 14:58:58 +02:00
|
|
|
|
(eval-when (:compile-toplevel :load-toplevel :execute)
|
2013-03-22 20:11:31 +01:00
|
|
|
|
(defun make-command-name (base)
|
|
|
|
|
"Turn BASE into the name of a possible command."
|
|
|
|
|
(intern (concatenate 'string (string-upcase base) "-COMMAND")
|
2013-10-06 14:30:15 +02:00
|
|
|
|
:clark)))
|
2013-03-21 21:29:43 +01:00
|
|
|
|
|
2013-03-21 21:39:56 +01:00
|
|
|
|
(defun parse-args (args)
|
|
|
|
|
"Parse command-line arguments ARGS.
|
|
|
|
|
|
|
|
|
|
The executable name should already have been removed."
|
2013-03-23 17:58:31 +01:00
|
|
|
|
(loop while (and args (char= (char (car args) 0) #\-))
|
|
|
|
|
do (case (intern (string-upcase (string-left-trim "-" (car args)))
|
2013-10-06 14:30:15 +02:00
|
|
|
|
:clark)
|
2013-04-06 17:24:05 +02:00
|
|
|
|
(script (setf *script* t args (cdr args)))
|
|
|
|
|
(t (with-error-and-help
|
|
|
|
|
1 "help" "Unknown option: ~a~%" (car args)))))
|
2013-03-23 17:58:31 +01:00
|
|
|
|
(if args
|
|
|
|
|
(let ((cmd-name (make-command-name (car args))))
|
|
|
|
|
(if (fboundp cmd-name)
|
2013-03-28 00:39:29 +01:00
|
|
|
|
(handler-case (apply cmd-name (cdr args))
|
|
|
|
|
(sb-int:simple-program-error (err)
|
|
|
|
|
(if (string-equal (format nil "~A" err)
|
|
|
|
|
"invalid number of arguments" :end1 27)
|
2013-04-06 17:24:05 +02:00
|
|
|
|
(with-error-and-help
|
|
|
|
|
1 (car args) "Wrong number of arguments given.~%")
|
2013-03-28 00:39:29 +01:00
|
|
|
|
(signal err))))
|
2013-04-06 17:24:05 +02:00
|
|
|
|
(with-error-and-help
|
|
|
|
|
1 "help" "Unknown command: ~A~%" (car args))))
|
2013-06-04 01:12:38 +02:00
|
|
|
|
(map nil #'print-bookmark (bookmark-list))))
|
2013-03-21 21:39:56 +01:00
|
|
|
|
|
2013-03-21 21:29:43 +01:00
|
|
|
|
(defun print-bookmark (bm)
|
|
|
|
|
"Print information about bookmark BM.
|
|
|
|
|
|
2013-03-23 17:58:31 +01:00
|
|
|
|
BM should be a list containing the url, name and description of the
|
|
|
|
|
bookmark."
|
|
|
|
|
(destructuring-bind (url name description) bm
|
|
|
|
|
(if *script*
|
2013-03-28 00:52:48 +01:00
|
|
|
|
(format t "~A~A~A" url name description)
|
2013-03-23 17:58:31 +01:00
|
|
|
|
(format t "~A~% ~A~% ~A~%~%" url name description))))
|
2013-03-21 21:29:43 +01:00
|
|
|
|
|
2013-03-21 00:54:06 +01:00
|
|
|
|
(defun clark (args)
|
2013-03-21 21:29:43 +01:00
|
|
|
|
"Main function.
|
|
|
|
|
|
|
|
|
|
Connect to the database, parse command-line arguments, execute and
|
|
|
|
|
then disconnect."
|
2013-03-24 21:57:59 +01:00
|
|
|
|
(load-rc)
|
2013-03-23 13:24:43 +01:00
|
|
|
|
(load-db)
|
2013-10-06 13:34:24 +02:00
|
|
|
|
(handler-case
|
|
|
|
|
(unwind-protect (parse-args (cdr args))
|
|
|
|
|
(disconnect *db*))
|
|
|
|
|
(exiting (c) (sb-ext:exit :code (exit-code c)))))
|