Major rewrite of table/column name output escaping system wide.
[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
181         (setf attlen (parse-integer attlen :junk-allowed t)
182               atttypmod (parse-integer atttypmod :junk-allowed t))
183
184         (let ((coltype (ensure-keyword typname))
185               (colnull (if (string-equal "f" attnull) 1 0))
186               collen
187               colprec)
188            (setf (values collen colprec)
189                  (case coltype
190                    ((:numeric :decimal)
191                     (if (= -1 atttypmod)
192                         (values nil nil)
193                         (values (ash (- atttypmod 4) -16)
194                                 (boole boole-and (- atttypmod 4) #xffff))))
195                    (otherwise
196                     (values
197                      (cond ((and (= -1 attlen) (= -1 atttypmod)) nil)
198                            ((= -1 attlen) (- atttypmod 4))
199                            (t attlen))
200                      nil))))
201            (values coltype collen colprec colnull))))))
202
203 (defmethod database-create-sequence (sequence-name
204                                      (database generic-postgresql-database))
205   (let ((cmd (concatenate
206               'string "CREATE SEQUENCE " (escaped-database-identifier sequence-name database))))
207   (database-execute-command cmd database)))
208
209 (defmethod database-drop-sequence (sequence-name
210                                    (database generic-postgresql-database))
211   (database-execute-command
212    (concatenate 'string "DROP SEQUENCE " (escaped-database-identifier sequence-name database))
213    database))
214
215 (defmethod database-list-sequences ((database generic-postgresql-database)
216                                     &key (owner nil))
217   (database-list-objects-of-type database "S" owner))
218
219 (defmethod database-set-sequence-position (name (position integer)
220                                                 (database generic-postgresql-database))
221   (values
222    (parse-integer
223     (caar
224      (database-query
225       (format nil "SELECT SETVAL ('~A', ~A)" (escaped-database-identifier name) position)
226       database nil nil)))))
227
228 (defmethod database-sequence-next (sequence-name
229                                    (database generic-postgresql-database))
230   (values
231    (parse-integer
232     (caar
233      (database-query
234       (concatenate 'string "SELECT NEXTVAL ('" (escaped-database-identifier sequence-name) "')")
235       database nil nil)))))
236
237 (defmethod database-sequence-last (sequence-name (database generic-postgresql-database))
238   (values
239    (parse-integer
240     (caar
241      (database-query
242       (concatenate 'string "SELECT LAST_VALUE FROM " (escaped-database-identifier sequence-name))
243       database nil nil)))))
244
245 (defmethod auto-increment-sequence-name (table column (database generic-postgresql-database))
246   (let* ((sequence-name (or (database-identifier (slot-value column 'autoincrement-sequence))
247                             (combine-database-identifiers
248                              (list table column 'seq)
249                              database))))
250     (when (search "'" (escaped-database-identifier sequence-name)
251                   :test #'string-equal)
252       (signal-database-too-strange
253        "PG Sequence names shouldnt contain single quotes for the sake of sanity"))
254     sequence-name))
255
256 (defmethod database-last-auto-increment-id ((database generic-postgresql-database) table column)
257   (let ((seq-name (auto-increment-sequence-name table column database)))
258     (first (clsql:query (format nil "SELECT currval ('~a')"
259                                 (escaped-database-identifier seq-name))
260                         :flatp t
261                         :database database
262                         :result-types '(:int)))))
263
264 (defmethod database-generate-column-definition
265     (class slotdef (database generic-postgresql-database))
266   (when (member (view-class-slot-db-kind slotdef) '(:base :key))
267     (let ((cdef
268             (list (sql-expression :attribute (database-identifier slotdef database))
269                   (specified-type slotdef)
270                   (view-class-slot-db-type slotdef)))
271           (const (listify (view-class-slot-db-constraints slotdef)))
272           (seq (auto-increment-sequence-name class slotdef database)))
273       (when seq
274         (setf const (remove :auto-increment const))
275         (unless (member :default const)
276           (let* ((next (format nil "nextval('~a')" (escaped-database-identifier seq))))
277             (setf const (append const (list :default next))))))
278       (append cdef const))))
279
280 (defmethod database-add-autoincrement-sequence
281     ((self standard-db-class) (database generic-postgresql-database))
282   (let ((ordered-slots (if (normalizedp self)
283                            (ordered-class-direct-slots self)
284                            (ordered-class-slots self))))
285     (dolist (slotdef ordered-slots)
286
287       ;; ensure that referenceed sequences actually exist before referencing them
288       (let ((sequence-name (auto-increment-sequence-name self slotdef database)))
289         (when (and sequence-name
290                    (not (sequence-exists-p sequence-name :database database)))
291           (create-sequence sequence-name :database database))))))
292
293 (defmethod database-remove-autoincrement-sequence
294     ((table standard-db-class)
295      (database generic-postgresql-database))
296   (let ((ordered-slots
297           (if (normalizedp table)
298               (ordered-class-direct-slots table)
299               (ordered-class-slots table))))
300     (dolist (slotdef ordered-slots)
301       ;; ensure that referenceed sequences are dropped with the table
302       (let ((sequence-name (auto-increment-sequence-name table slotdef database)))
303         (when sequence-name (drop-sequence sequence-name))))))
304
305 (defun postgresql-database-list (connection-spec type)
306   (destructuring-bind (host name &rest other-args) connection-spec
307     (declare (ignore name))
308     (let ((database (database-connect (list* host "template1" other-args)
309                                       type)))
310       (unwind-protect
311            (progn
312              (setf (slot-value database 'clsql-sys::state) :open)
313              (mapcar #'car (database-query "select datname from pg_database"
314                                            database nil nil)))
315         (progn
316           (database-disconnect database)
317           (setf (slot-value database 'clsql-sys::state) :closed))))))
318
319 (defmethod database-list (connection-spec (type (eql :postgresql)))
320   (postgresql-database-list connection-spec type))
321
322 (defmethod database-list (connection-spec (type (eql :postgresql-socket)))
323   (postgresql-database-list connection-spec type))
324
325 #+nil
326 (defmethod database-describe-table ((database generic-postgresql-database) table)
327   ;; MTP: LIST-ATTRIBUTE-TYPES currently executes separate queries for
328   ;; each attribute. It would be more efficient to have a single SQL
329   ;; query return the type data for all attributes. This code is
330   ;; retained as an example of how to do this for PostgreSQL.
331   (database-query
332    (format nil "select a.attname, t.typname
333                                from pg_class c, pg_attribute a, pg_type t
334                                where c.relname = '~a'
335                                    and a.attnum > 0
336                                    and a.attrelid = c.oid
337                                    and a.atttypid = t.oid"
338            (sql-escape (string-downcase table)))
339    database :auto nil))
340
341 ;;; Prepared statements
342
343 (defvar *next-prepared-id-num* 0)
344 (defun next-prepared-id ()
345   (let ((num (incf *next-prepared-id-num*)))
346     (format nil "CLSQL_PS_~D" num)))
347
348 (defclass postgresql-stmt ()
349   ((database :initarg :database :reader database)
350    (id :initarg :id :reader id)
351    (bindings :initarg :bindings :reader bindings)
352    (field-names :initarg :field-names :accessor stmt-field-names)
353    (result-types :initarg :result-types :reader result-types)))
354
355 (defun clsql-type->postgresql-type (type)
356   (cond
357     ((in type :int :integer) "INT4")
358     ((in type :short) "INT2")
359     ((in type :bigint) "INT8")
360     ((in type :float :double :number) "NUMERIC")
361     ((and (consp type) (in (car type) :char :varchar)) "VARCHAR")
362     (t
363      (error 'sql-user-error
364             :message
365             (format nil "Unknown clsql type ~A." type)))))
366
367 (defun prepared-sql-to-postgresql-sql (sql)
368   ;; FIXME: Convert #\? to "$n". Don't convert within strings
369   (declare (simple-string sql))
370   (with-output-to-string (out)
371     (do ((len (length sql))
372          (param 0)
373          (in-str nil)
374          (pos 0 (1+ pos)))
375         ((= len pos))
376       (declare (fixnum len param pos))
377       (let ((c (schar sql pos)))
378         (declare (character c))
379         (cond
380          ((or (char= c #\") (char= c #\'))
381           (setq in-str (not in-str))
382           (write-char c out))
383          ((and (char= c #\?) (not in-str))
384           (write-char #\$ out)
385           (write-string (write-to-string (incf param)) out))
386          (t
387           (write-char c out)))))))
388
389 (defmethod database-prepare (sql-stmt types (database generic-postgresql-database) result-types field-names)
390   (let ((id (next-prepared-id)))
391     (database-execute-command
392      (format nil "PREPARE ~A (~{~A~^,~}) AS ~A"
393              id
394              (mapcar #'clsql-type->postgresql-type types)
395              (prepared-sql-to-postgresql-sql sql-stmt))
396      database)
397     (make-instance 'postgresql-stmt
398                    :id id
399                    :database database
400                    :result-types result-types
401                    :field-names field-names
402                    :bindings (make-list (length types)))))
403
404 (defmethod database-bind-parameter ((stmt postgresql-stmt) position value)
405   (setf (nth (1- position) (bindings stmt)) value))
406
407 (defun binding-to-param (binding)
408   (typecase binding
409     (string
410      (concatenate 'string "'" (sql-escape-quotes binding) "'"))
411     (t
412      binding)))
413
414 (defmethod database-run-prepared ((stmt postgresql-stmt))
415   (with-slots (database id bindings field-names result-types) stmt
416     (let ((query (format nil "EXECUTE ~A (~{~A~^,~})"
417                          id (mapcar #'binding-to-param bindings))))
418       (cond
419        ((and field-names (not (consp field-names)))
420         (multiple-value-bind (res names)
421             (database-query query database result-types field-names)
422           (setf field-names names)
423           (values res names)))
424        (field-names
425         (values (nth-value 0 (database-query query database result-types nil))
426                 field-names))
427        (t
428         (database-query query database result-types field-names))))))
429
430 ;;; Capabilities
431
432 (defmethod db-type-has-fancy-math? ((db-type (eql :postgresql)))
433   t)
434
435 (defmethod db-type-default-case ((db-type (eql :postgresql)))
436   :lower)
437
438 (defmethod db-type-has-prepared-stmt? ((db-type (eql :postgresql)))
439   t)
440
441 (defmethod db-type-has-prepared-stmt? ((db-type (eql :postgresql-socket)))
442   t)
443
444 (defmethod db-type-has-auto-increment? ((db-type (eql :postgresql)))
445   t)