refactor the way oodml find-all and select deal with their keyword args.
[clsql.git] / sql / generic-postgresql.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;;
4 ;;;; Generic postgresql layer, used by db-postgresql and db-postgresql-socket
5 ;;;;
6 ;;;; This file is part of CLSQL.
7 ;;;;
8 ;;;; CLSQL users are granted the rights to distribute and use this software
9 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
10 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
11 ;;;; *************************************************************************
12
13 (in-package #:clsql-sys)
14
15 (defclass generic-postgresql-database (database)
16   ((has-table-pg_roles :type boolean :reader has-table-pg_roles :initform nil))
17   (:documentation "Encapsulate same behavior across postgresql and postgresql-socket backends."))
18
19
20
21 ;; Object functions
22
23 (defmethod database-get-type-specifier (type args database
24                                         (db-type (eql :postgresql)))
25   (declare (ignore type args database))
26   "VARCHAR")
27
28 (defmethod database-get-type-specifier ((type (eql 'string)) args database
29                                         (db-type (eql :postgresql)))
30   (declare (ignore database))
31   (if args
32       (format nil "CHAR(~A)" (car args))
33     "VARCHAR"))
34
35 (defmethod database-get-type-specifier ((type (eql 'tinyint)) args database
36                                         (db-type (eql :postgresql)))
37   (declare (ignore args database))
38   "INT2")
39
40 (defmethod database-get-type-specifier ((type (eql 'smallint)) args database
41                                         (db-type (eql :postgresql)))
42   (declare (ignore args database))
43   "INT2")
44
45 (defmethod database-get-type-specifier ((type (eql 'wall-time)) args database
46                                         (db-type (eql :postgresql)))
47   (declare (ignore args database))
48   "TIMESTAMP WITHOUT TIME ZONE")
49
50 (defmethod database-get-type-specifier ((type (eql 'number)) args database
51                                         (db-type (eql :postgresql)))
52   (declare (ignore database))
53   (cond
54    ((and (consp args) (= (length args) 2))
55     (format nil "NUMERIC(~D,~D)" (first args) (second args)))
56    ((and (consp args) (= (length args) 1))
57     (format nil "NUMERIC(~D)" (first args)))
58    (t
59     "NUMERIC")))
60
61 ;;; Backend functions
62
63 (defun owner-clause (owner)
64   (cond
65    ((stringp owner)
66     (format
67      nil
68      " AND (relowner=(SELECT usesysid FROM pg_user WHERE (usename='~A')))"
69      owner))
70    ((null owner)
71     (format nil " AND (relowner<>(SELECT usesysid FROM pg_user WHERE usename='postgres'))"))
72    (t "")))
73
74 (defun has-table (name database)
75   (let ((name-retrieved
76          (caar (database-query
77                 (format nil "SELECT relname FROM pg_class WHERE relname='~A'"
78                         name)
79                 database nil nil))))
80     (if (and (stringp name-retrieved) (plusp (length name-retrieved)))
81         t
82         nil)))
83
84 (defmethod slot-unbound (class (obj generic-postgresql-database)
85                          (slot (eql 'has-table-pg_roles)))
86   ;; Lazily cache slot value
87   (declare (ignore class))
88   (setf (slot-value obj 'has-table-pg_roles) (has-table "pg_roles" obj)))
89
90 (defun database-list-objects-of-type (database type owner)
91   (mapcar #'car
92           (database-query
93            (format nil
94                    (if (and (has-table-pg_roles database)
95                             (not (eq owner :all)))
96                        "
97  SELECT c.relname
98  FROM pg_catalog.pg_class c
99       LEFT JOIN pg_catalog.pg_roles r ON r.oid = c.relowner
100       LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace
101  WHERE c.relkind IN ('~A','')
102        AND n.nspname NOT IN ('pg_catalog', 'pg_toast')
103        AND pg_catalog.pg_table_is_visible(c.oid)
104        ~A"
105                        "SELECT relname FROM pg_class WHERE (relkind =
106 '~A')~A")
107                    type
108                    (owner-clause owner))
109            database nil nil)))
110
111 (defmethod database-list-tables ((database generic-postgresql-database)
112                                  &key (owner nil))
113   (database-list-objects-of-type database "r" owner))
114
115 (defmethod database-list-views ((database generic-postgresql-database)
116                                 &key (owner nil))
117   (database-list-objects-of-type database "v" owner))
118
119 (defmethod database-list-indexes ((database generic-postgresql-database)
120                                   &key (owner nil))
121   (database-list-objects-of-type database "i" owner))
122
123
124 (defmethod database-list-table-indexes (table (database generic-postgresql-database)
125                                         &key (owner nil))
126   (let ((indexrelids
127          (database-query
128           (format
129            nil
130            "select indexrelid from pg_index where indrelid=(select relfilenode from pg_class where LOWER(relname)='~A'~A)"
131            (string-downcase (unescaped-database-identifier table))
132            (owner-clause owner))
133           database :auto nil))
134         (result nil))
135     (dolist (indexrelid indexrelids (nreverse result))
136       (push
137        (caar (database-query
138               (format nil "select relname from pg_class where relfilenode='~A'"
139                       (car indexrelid))
140               database nil nil))
141        result))))
142
143 (defmethod database-list-attributes ((table string)
144                                      (database generic-postgresql-database)
145                                      &key (owner nil))
146   (let* ((owner-clause
147           (cond ((stringp owner)
148                  (format nil " AND (relowner=(SELECT usesysid FROM pg_user WHERE usename='~A'))" owner))
149                 ((null owner) " AND (not (relowner=1))")
150                 (t "")))
151          (result
152           (mapcar #'car
153                   (database-query
154                    (format nil "SELECT attname FROM pg_class,pg_attribute WHERE pg_class.oid=attrelid AND attisdropped = FALSE AND relname='~A'~A"
155                            (string-downcase table)
156                            owner-clause)
157                    database nil nil))))
158     (if result
159         (remove-if #'(lambda (it) (member it '("cmin"
160                                                "cmax"
161                                                "xmax"
162                                                "xmin"
163                                                "oid"
164                                                "ctid"
165                                                ;; kmr -- added tableoid
166                                                "tableoid") :test #'equal))
167                    result))))
168
169 (defmethod database-attribute-type (attribute (table string)
170                                     (database generic-postgresql-database)
171                                     &key (owner nil))
172   (let ((row (car (database-query
173                    (format nil "SELECT pg_type.typname,pg_attribute.attlen,pg_attribute.atttypmod,pg_attribute.attnotnull FROM pg_type,pg_class,pg_attribute WHERE pg_class.oid=pg_attribute.attrelid AND pg_class.relname='~A' AND pg_attribute.attname='~A' AND pg_attribute.atttypid=pg_type.oid~A"
174                            (string-downcase table)
175                            (string-downcase attribute)
176                            (owner-clause owner))
177                    database nil nil))))
178     (when row
179       (destructuring-bind (typname attlen atttypmod attnull) row
180         (setf attlen (%get-int attlen)
181               atttypmod (%get-int atttypmod))
182         (let ((coltype (ensure-keyword typname))
183               (colnull (typecase attnull
184                          (string (if (string-equal "f" attnull) 1 0))
185                          (null 1)
186                          (T 0)))
187               collen
188               colprec)
189           (setf (values collen colprec)
190                 (case coltype
191                   ((:numeric :decimal)
192                    (if (= -1 atttypmod)
193                        (values nil nil)
194                        (values (ash (- atttypmod 4) -16)
195                                (boole boole-and (- atttypmod 4) #xffff))))
196                   (otherwise
197                    (values
198                     (cond ((and (= -1 attlen) (= -1 atttypmod)) nil)
199                           ((= -1 attlen) (- atttypmod 4))
200                           (t attlen))
201                     nil))))
202           (values coltype collen colprec colnull))))))
203
204 (defmethod database-create-sequence (sequence-name
205                                      (database generic-postgresql-database))
206   (let ((cmd (concatenate
207               'string "CREATE SEQUENCE " (escaped-database-identifier sequence-name database))))
208   (database-execute-command cmd database)))
209
210 (defmethod database-drop-sequence (sequence-name
211                                    (database generic-postgresql-database))
212   (database-execute-command
213    (concatenate 'string "DROP SEQUENCE " (escaped-database-identifier sequence-name database))
214    database))
215
216 (defmethod database-list-sequences ((database generic-postgresql-database)
217                                     &key (owner nil))
218   (database-list-objects-of-type database "S" owner))
219
220 (defmethod database-set-sequence-position (name (position integer)
221                                                 (database generic-postgresql-database))
222   (values
223    (%get-int
224     (caar
225      (database-query
226       (format nil "SELECT SETVAL ('~A', ~A)" (escaped-database-identifier name) position)
227       database nil nil)))))
228
229 (defmethod database-sequence-next (sequence-name
230                                    (database generic-postgresql-database))
231   (values
232    (%get-int
233     (caar
234      (database-query
235       (concatenate 'string "SELECT NEXTVAL ('" (escaped-database-identifier sequence-name) "')")
236       database nil nil)))))
237
238 (defmethod database-sequence-last (sequence-name (database generic-postgresql-database))
239   (values
240    (%get-int
241     (caar
242      (database-query
243       (concatenate 'string "SELECT LAST_VALUE FROM " (escaped-database-identifier sequence-name))
244       database nil nil)))))
245
246 (defmethod auto-increment-sequence-name (table column (database generic-postgresql-database))
247   (let* ((sequence-name (or (database-identifier (slot-value column 'autoincrement-sequence))
248                             (combine-database-identifiers
249                              (list table column 'seq)
250                              database))))
251     (when (search "'" (escaped-database-identifier sequence-name)
252                   :test #'string-equal)
253       (signal-database-too-strange
254        "PG Sequence names shouldnt contain single quotes for the sake of sanity"))
255     sequence-name))
256
257 (defmethod database-last-auto-increment-id ((database generic-postgresql-database) table column)
258   (let ((seq-name (auto-increment-sequence-name table column database)))
259     (first (clsql:query (format nil "SELECT currval ('~a')"
260                                 (escaped-database-identifier seq-name))
261                         :flatp t
262                         :database database
263                         :result-types '(:int)))))
264
265 (defmethod database-generate-column-definition
266     (class slotdef (database generic-postgresql-database))
267   (when (member (view-class-slot-db-kind slotdef) '(:base :key))
268     (let ((cdef
269             (list (sql-expression :attribute (database-identifier slotdef database))
270                   (specified-type slotdef)
271                   (view-class-slot-db-type slotdef)))
272           (const (listify (view-class-slot-db-constraints slotdef)))
273           (seq (auto-increment-sequence-name class slotdef database)))
274       (when seq
275         (setf const (remove :auto-increment const))
276         (unless (member :default const)
277           (let* ((next (format nil "nextval('~a')" (escaped-database-identifier seq))))
278             (setf const (append const (list :default next))))))
279       (append cdef const))))
280
281 (defmethod database-add-autoincrement-sequence
282     ((self standard-db-class) (database generic-postgresql-database))
283   (let ((ordered-slots (if (normalizedp self)
284                            (ordered-class-direct-slots self)
285                            (ordered-class-slots self))))
286     (dolist (slotdef ordered-slots)
287
288       ;; ensure that referenceed sequences actually exist before referencing them
289       (let ((sequence-name (auto-increment-sequence-name self slotdef database)))
290         (when (and sequence-name
291                    (not (sequence-exists-p sequence-name :database database)))
292           (create-sequence sequence-name :database database))))))
293
294 (defmethod database-remove-autoincrement-sequence
295     ((table standard-db-class)
296      (database generic-postgresql-database))
297   (let ((ordered-slots
298           (if (normalizedp table)
299               (ordered-class-direct-slots table)
300               (ordered-class-slots table))))
301     (dolist (slotdef ordered-slots)
302       ;; ensure that referenceed sequences are dropped with the table
303       (let ((sequence-name (auto-increment-sequence-name table slotdef database)))
304         (when sequence-name (drop-sequence sequence-name))))))
305
306 (defun postgresql-database-list (connection-spec type)
307   (destructuring-bind (host name &rest other-args) connection-spec
308     (declare (ignore name))
309     (let ((database (database-connect (list* host "template1" other-args)
310                                       type)))
311       (unwind-protect
312            (progn
313              (setf (slot-value database 'clsql-sys::state) :open)
314              (mapcar #'car (database-query "select datname from pg_database"
315                                            database nil nil)))
316         (progn
317           (database-disconnect database)
318           (setf (slot-value database 'clsql-sys::state) :closed))))))
319
320 (defmethod database-list (connection-spec (type (eql :postgresql)))
321   (postgresql-database-list connection-spec type))
322
323 (defmethod database-list (connection-spec (type (eql :postgresql-socket)))
324   (postgresql-database-list connection-spec type))
325
326 #+nil
327 (defmethod database-describe-table ((database generic-postgresql-database) table)
328   ;; MTP: LIST-ATTRIBUTE-TYPES currently executes separate queries for
329   ;; each attribute. It would be more efficient to have a single SQL
330   ;; query return the type data for all attributes. This code is
331   ;; retained as an example of how to do this for PostgreSQL.
332   (database-query
333    (format nil "select a.attname, t.typname
334                                from pg_class c, pg_attribute a, pg_type t
335                                where c.relname = '~a'
336                                    and a.attnum > 0
337                                    and a.attrelid = c.oid
338                                    and a.atttypid = t.oid"
339            (sql-escape (string-downcase table)))
340    database :auto nil))
341
342 ;;; Prepared statements
343
344 (defvar *next-prepared-id-num* 0)
345 (defun next-prepared-id ()
346   (let ((num (incf *next-prepared-id-num*)))
347     (format nil "CLSQL_PS_~D" num)))
348
349 (defclass postgresql-stmt ()
350   ((database :initarg :database :reader database)
351    (id :initarg :id :reader id)
352    (bindings :initarg :bindings :reader bindings)
353    (field-names :initarg :field-names :accessor stmt-field-names)
354    (result-types :initarg :result-types :reader result-types)))
355
356 (defun clsql-type->postgresql-type (type)
357   (cond
358     ((in type :int :integer) "INT4")
359     ((in type :short) "INT2")
360     ((in type :bigint) "INT8")
361     ((in type :float :double :number) "NUMERIC")
362     ((and (consp type) (in (car type) :char :varchar)) "VARCHAR")
363     (t
364      (error 'sql-user-error
365             :message
366             (format nil "Unknown clsql type ~A." type)))))
367
368 (defun prepared-sql-to-postgresql-sql (sql)
369   ;; FIXME: Convert #\? to "$n". Don't convert within strings
370   (declare (simple-string sql))
371   (with-output-to-string (out)
372     (do ((len (length sql))
373          (param 0)
374          (in-str nil)
375          (pos 0 (1+ pos)))
376         ((= len pos))
377       (declare (fixnum len param pos))
378       (let ((c (schar sql pos)))
379         (declare (character c))
380         (cond
381          ((or (char= c #\") (char= c #\'))
382           (setq in-str (not in-str))
383           (write-char c out))
384          ((and (char= c #\?) (not in-str))
385           (write-char #\$ out)
386           (write-string (write-to-string (incf param)) out))
387          (t
388           (write-char c out)))))))
389
390 (defmethod database-prepare (sql-stmt types (database generic-postgresql-database) result-types field-names)
391   (let ((id (next-prepared-id)))
392     (database-execute-command
393      (format nil "PREPARE ~A (~{~A~^,~}) AS ~A"
394              id
395              (mapcar #'clsql-type->postgresql-type types)
396              (prepared-sql-to-postgresql-sql sql-stmt))
397      database)
398     (make-instance 'postgresql-stmt
399                    :id id
400                    :database database
401                    :result-types result-types
402                    :field-names field-names
403                    :bindings (make-list (length types)))))
404
405 (defmethod database-bind-parameter ((stmt postgresql-stmt) position value)
406   (setf (nth (1- position) (bindings stmt)) value))
407
408 (defun binding-to-param (binding)
409   (typecase binding
410     (string
411      (concatenate 'string "'" (sql-escape-quotes binding) "'"))
412     (t
413      binding)))
414
415 (defmethod database-run-prepared ((stmt postgresql-stmt))
416   (with-slots (database id bindings field-names result-types) stmt
417     (let ((query (format nil "EXECUTE ~A (~{~A~^,~})"
418                          id (mapcar #'binding-to-param bindings))))
419       (cond
420        ((and field-names (not (consp field-names)))
421         (multiple-value-bind (res names)
422             (database-query query database result-types field-names)
423           (setf field-names names)
424           (values res names)))
425        (field-names
426         (values (nth-value 0 (database-query query database result-types nil))
427                 field-names))
428        (t
429         (database-query query database result-types field-names))))))
430
431 ;;; Capabilities
432
433 (defmethod db-type-has-fancy-math? ((db-type (eql :postgresql)))
434   t)
435
436 (defmethod db-type-default-case ((db-type (eql :postgresql)))
437   :lower)
438
439 (defmethod db-type-has-prepared-stmt? ((db-type (eql :postgresql)))
440   t)
441
442 (defmethod db-type-has-prepared-stmt? ((db-type (eql :postgresql-socket)))
443   t)
444
445 (defmethod db-type-has-auto-increment? ((db-type (eql :postgresql)))
446   t)