1 ;;; PHOROS -- Photogrammetric Road Survey
2 ;;; Copyright (C) 2011, 2012 Bert Burgemeister
4 ;;; This program is free software; you can redistribute it and/or modify
5 ;;; it under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation; either version 2 of the License, or
7 ;;; (at your option) any later version.
9 ;;; This program is distributed in the hope that it will be useful,
10 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ;;; GNU General Public License for more details.
14 ;;; You should have received a copy of the GNU General Public License along
15 ;;; with this program; if not, write to the Free Software Foundation, Inc.,
16 ;;; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 (defmacro defun
* (name lambda-list
&body body
)
22 "Like defun, define a function, but with an additional lambda list
23 keyword &mandatory-key which goes after the &key section or in place
24 of it. &mandatory-key argument definitions are plain symbols (no
25 lists). An error is signalled on function calls where one of those
27 (let ((mandatory-key-position (position '&mandatory-key lambda-list
))
28 (after-key-position (or (position '&allow-other-keys lambda-list
)
29 (position '&aux lambda-list
))))
30 (when mandatory-key-position
32 (append (subseq lambda-list
0 mandatory-key-position
)
33 (unless (position '&key lambda-list
)
37 `(,k
(error ,(format nil
"~A: argument ~A undefined"
40 (1+ mandatory-key-position
)
42 (when after-key-position
43 (subseq lambda-list after-key-position
))))))
44 `(defun ,name
,lambda-list
,@body
))
46 (defmacro logged-query
(message-tag &rest args
)
47 "Act like postmodern:query; additionally log some debug information
48 tagged by the short string message-tag."
49 (cl-utilities:with-unique-names
50 (executed-query query-milliseconds query-result
)
51 `(let* (,executed-query
54 (cl-postgres:*query-callback
*
55 #'(lambda (query-string clock-ticks
)
56 (setf ,query-milliseconds clock-ticks
)
57 (setf ,executed-query query-string
))))
60 (etypecase (car ',args
)
62 (typecase (caar ',args
)
64 (query (sql-compile ',(car args
))
66 (t ;function (supposedly) returning string
74 "[~A] Query ~S~& took ~F seconds and yielded~& ~A."
77 (/ ,query-milliseconds
1000)