r9373: Treat [*] as a column identifier.
[clsql.git] / sql / classes.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;;
4 ;;;; $Id$
5 ;;;;
6 ;;;; Classes defining SQL expressions and methods for formatting the
7 ;;;; appropriate SQL commands.
8 ;;;;
9 ;;;; This file is part of CLSQL.
10 ;;;;
11 ;;;; CLSQL users are granted the rights to distribute and use this software
12 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
13 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
14 ;;;; *************************************************************************
15
16 (in-package #:clsql-sys)
17
18 (defvar +empty-string+ "''")
19
20 (defvar +null-string+ "NULL")
21
22 (defvar *sql-stream* nil
23   "stream which accumulates SQL output")
24
25 (defun sql-output (sql-expr &optional database)
26   (progv '(*sql-stream*)
27       `(,(make-string-output-stream))
28     (output-sql sql-expr database)
29     (get-output-stream-string *sql-stream*)))
30
31
32 (defclass %sql-expression ()
33   ())
34
35 (defmethod output-sql ((expr %sql-expression) database)
36   (declare (ignore database))
37   (write-string +null-string+ *sql-stream*))
38
39 (defmethod print-object ((self %sql-expression) stream)
40   (print-unreadable-object
41    (self stream :type t)
42    (write-string (sql-output self) stream)))
43
44 ;; For straight up strings
45
46 (defclass sql (%sql-expression)
47   ((text
48     :initarg :string
49     :initform ""))
50   (:documentation "A literal SQL expression."))
51
52 (defmethod make-load-form ((sql sql) &optional environment)
53   (declare (ignore environment))
54   (with-slots (text)
55     sql
56     `(make-instance 'sql :string ',text)))
57
58 (defmethod output-sql ((expr sql) database)
59   (declare (ignore database))
60   (write-string (slot-value expr 'text) *sql-stream*)
61   t)
62
63 (defmethod print-object ((ident sql) stream)
64   (format stream "#<~S \"~A\">"
65           (type-of ident)
66           (sql-output ident nil)))
67
68 ;; For SQL Identifiers of generic type
69 (defclass sql-ident (%sql-expression)
70   ((name
71     :initarg :name
72     :initform "NULL"))
73   (:documentation "An SQL identifer."))
74
75 (defmethod make-load-form ((sql sql-ident) &optional environment)
76   (declare (ignore environment))
77   (with-slots (name)
78     sql
79     `(make-instance 'sql-ident :name ',name)))
80
81 (defvar *output-hash* (make-hash-table :test #'equal))
82
83 (defmethod output-sql-hash-key (expr database)
84   (declare (ignore expr database))
85   nil)
86
87 #+ignore
88 (defmethod output-sql :around ((sql t) database)
89   (let* ((hash-key (output-sql-hash-key sql database))
90          (hash-value (when hash-key (gethash hash-key *output-hash*))))
91     (cond ((and hash-key hash-value)
92            (write-string hash-value *sql-stream*))
93           (hash-key
94            (let ((*sql-stream* (make-string-output-stream)))
95              (call-next-method)
96              (setf hash-value (get-output-stream-string *sql-stream*))
97              (setf (gethash hash-key *output-hash*) hash-value))
98            (write-string hash-value *sql-stream*))
99           (t
100            (call-next-method)))))
101
102 (defmethod output-sql ((expr sql-ident) database)
103   (with-slots (name)
104       expr
105     (write-string
106      (convert-to-db-default-case 
107       (etypecase name
108         (string name)
109         (symbol (symbol-name name)))
110       database)
111      *sql-stream*))
112   t)
113
114 ;; For SQL Identifiers for attributes
115
116 (defclass sql-ident-attribute (sql-ident)
117   ((qualifier
118     :initarg :qualifier
119     :initform "NULL")
120    (type
121     :initarg :type
122     :initform "NULL")
123    (params
124     :initarg :params
125     :initform nil))
126   (:documentation "An SQL Attribute identifier."))
127
128 (defmethod collect-table-refs (sql)
129   (declare (ignore sql))
130   nil)
131
132 (defmethod collect-table-refs ((sql sql-ident-attribute))
133   (let ((qual (slot-value sql 'qualifier)))
134     (if (and qual (symbolp (slot-value sql 'qualifier)))
135         (list (make-instance 'sql-ident-table :name
136                              (slot-value sql 'qualifier))))))
137
138 (defmethod make-load-form ((sql sql-ident-attribute) &optional environment)
139   (declare (ignore environment))
140   (with-slots (qualifier type name)
141     sql
142     `(make-instance 'sql-ident-attribute :name ',name
143       :qualifier ',qualifier
144       :type ',type)))
145
146 (defmethod output-sql ((expr sql-ident-attribute) database)
147   (with-slots (qualifier name type params)
148       expr
149     (if (and (not qualifier) (not type))
150         (write-string (sql-escape (convert-to-db-default-case 
151                                    (symbol-name name) database)) *sql-stream*)
152         ;;; KMR: The TYPE field is used by CommonSQL for type conversion -- it
153       ;;; should not be output in SQL statements
154       #+ignore
155       (format *sql-stream* "~@[~A.~]~A~@[ ~A~]"
156               (when qualifier
157                 (convert-to-db-default-case (sql-escape qualifier) database))
158               (sql-escape (convert-to-db-default-case name database))
159               (when type
160                 (convert-to-db-default-case (symbol-name type) database)))
161       (format *sql-stream* "~@[~A.~]~A"
162               (when qualifier
163                 (typecase qualifier 
164                   (string (format nil "~s" qualifier))
165                   (t (convert-to-db-default-case (sql-escape qualifier) 
166                                                  database))))
167               (sql-escape (convert-to-db-default-case name database))))
168     t))
169
170 (defmethod output-sql-hash-key ((expr sql-ident-attribute) database)
171   (declare (ignore database))
172   (with-slots (qualifier name type params)
173     expr
174     (list 'sql-ident-attribute qualifier name type params)))
175
176 ;; For SQL Identifiers for tables
177 (defclass sql-ident-table (sql-ident)
178   ((alias
179     :initarg :table-alias :initform nil))
180   (:documentation "An SQL table identifier."))
181
182 (defmethod make-load-form ((sql sql-ident-table) &optional environment)
183   (declare (ignore environment))
184   (with-slots (alias name)
185     sql
186     `(make-instance 'sql-ident-table :name ',name :table-alias ',alias)))
187
188 (defun generate-sql (expr database)
189   (let ((*sql-stream* (make-string-output-stream)))
190     (output-sql expr database)
191     (get-output-stream-string *sql-stream*)))
192
193 (defmethod output-sql ((expr sql-ident-table) database)
194   (with-slots (name alias)
195     expr
196     (if (null alias)
197         (write-string (sql-escape (convert-to-db-default-case (symbol-name name) database)) *sql-stream*)
198         (progn
199           (write-string (sql-escape (convert-to-db-default-case (symbol-name name) database)) *sql-stream*)
200           (write-char #\Space *sql-stream*)
201           (format *sql-stream* "~s" alias))))
202   t)
203
204 #|
205 (defmethod database-output-sql ((self duration) database)
206   (declare (ignore database))
207   (format nil "'~a'" (duration-timestring self)))
208
209 (defmethod database-output-sql ((self money) database)
210   (database-output-sql (slot-value self 'odcl::units) database))
211 |#
212
213
214 (defmethod output-sql-hash-key ((expr sql-ident-table) database)
215   (declare (ignore database))
216   (with-slots (name alias)
217     expr
218     (list 'sql-ident-table name alias)))
219
220 (defclass sql-relational-exp (%sql-expression)
221   ((operator
222     :initarg :operator
223     :initform nil)
224    (sub-expressions
225     :initarg :sub-expressions
226     :initform nil))
227   (:documentation "An SQL relational expression."))
228
229 (defmethod collect-table-refs ((sql sql-relational-exp))
230   (let ((tabs nil))
231     (dolist (exp (slot-value sql 'sub-expressions))
232       (let ((refs (collect-table-refs exp)))
233         (if refs (setf tabs (append refs tabs)))))
234     (remove-duplicates tabs
235                        :test (lambda (tab1 tab2)
236                                (equal (slot-value tab1 'name)
237                                       (slot-value tab2 'name))))))
238
239
240
241
242 ;; Write SQL for relational operators (like 'AND' and 'OR').
243 ;; should do arity checking of subexpressions
244
245 (defmethod output-sql ((expr sql-relational-exp) database)
246   (with-slots (operator sub-expressions)
247     expr
248     (let ((subs (if (consp (car sub-expressions))
249                     (car sub-expressions)
250                     sub-expressions)))
251       (write-char #\( *sql-stream*)
252       (do ((sub subs (cdr sub)))
253           ((null (cdr sub)) (output-sql (car sub) database))
254         (output-sql (car sub) database)
255         (write-char #\Space *sql-stream*)
256         (output-sql operator database)
257         (write-char #\Space *sql-stream*))
258       (write-char #\) *sql-stream*)))
259   t)
260
261 (defclass sql-upcase-like (sql-relational-exp)
262   ()
263   (:documentation "An SQL 'like' that upcases its arguments."))
264   
265 ;; Write SQL for relational operators (like 'AND' and 'OR').
266 ;; should do arity checking of subexpressions
267   
268 (defmethod output-sql ((expr sql-upcase-like) database)
269   (flet ((write-term (term)
270            (write-string "upper(" *sql-stream*)
271            (output-sql term database)
272            (write-char #\) *sql-stream*)))
273     (with-slots (sub-expressions)
274       expr
275       (let ((subs (if (consp (car sub-expressions))
276                       (car sub-expressions)
277                       sub-expressions)))
278         (write-char #\( *sql-stream*)
279         (do ((sub subs (cdr sub)))
280             ((null (cdr sub)) (write-term (car sub)))
281           (write-term (car sub))
282           (write-string " LIKE " *sql-stream*))
283         (write-char #\) *sql-stream*))))
284   t)
285
286 (defclass sql-assignment-exp (sql-relational-exp)
287   ()
288   (:documentation "An SQL Assignment expression."))
289
290
291 (defmethod output-sql ((expr sql-assignment-exp) database)
292   (with-slots (operator sub-expressions)
293     expr
294     (do ((sub sub-expressions (cdr sub)))
295         ((null (cdr sub)) (output-sql (car sub) database))
296       (output-sql (car sub) database)
297       (write-char #\Space *sql-stream*)
298       (output-sql operator database)
299       (write-char #\Space *sql-stream*)))
300   t)
301
302 (defclass sql-value-exp (%sql-expression)
303   ((modifier
304     :initarg :modifier
305     :initform nil)
306    (components
307     :initarg :components
308     :initform nil))
309   (:documentation
310    "An SQL value expression.")
311   )
312
313 (defmethod collect-table-refs ((sql sql-value-exp))
314   (let ((tabs nil))
315     (if (listp (slot-value sql 'components))
316         (progn
317           (dolist (exp (slot-value sql 'components))
318             (let ((refs (collect-table-refs exp)))
319               (if refs (setf tabs (append refs tabs)))))
320           (remove-duplicates tabs
321                              :test (lambda (tab1 tab2)
322                                      (equal (slot-value tab1 'name)
323                                             (slot-value tab2 'name)))))
324         nil)))
325
326
327
328 (defmethod output-sql ((expr sql-value-exp) database)
329   (with-slots (modifier components)
330     expr
331     (if modifier
332         (progn
333           (write-char #\( *sql-stream*)
334           (output-sql modifier database)
335           (write-char #\Space *sql-stream*)
336           (output-sql components database)
337           (write-char #\) *sql-stream*))
338         (output-sql components database))))
339
340 (defclass sql-typecast-exp (sql-value-exp)
341   ()
342   (:documentation "An SQL typecast expression."))
343
344 (defmethod output-sql ((expr sql-typecast-exp) database)
345   (database-output-sql expr database))
346
347 (defmethod database-output-sql ((expr sql-typecast-exp) database)
348   (with-slots (components)
349     expr
350     (output-sql components database)))
351
352
353 (defmethod collect-table-refs ((sql sql-typecast-exp))
354   (when (slot-value sql 'components)
355     (collect-table-refs (slot-value sql 'components))))
356
357 (defclass sql-function-exp (%sql-expression)
358   ((name
359     :initarg :name
360     :initform nil)
361    (args
362     :initarg :args
363     :initform nil))
364   (:documentation
365    "An SQL function expression."))
366
367 (defmethod collect-table-refs ((sql sql-function-exp))
368   (let ((tabs nil))
369     (dolist (exp (slot-value sql 'components))
370       (let ((refs (collect-table-refs exp)))
371         (if refs (setf tabs (append refs tabs)))))
372     (remove-duplicates tabs
373                        :test (lambda (tab1 tab2)
374                                (equal (slot-value tab1 'name)
375                                       (slot-value tab2 'name))))))
376
377 (defmethod output-sql ((expr sql-function-exp) database)
378   (with-slots (name args)
379     expr
380     (output-sql name database)
381     (when args (output-sql args database)))
382   t)
383
384
385 (defclass sql-between-exp (sql-function-exp)
386   () 
387   (:documentation "An SQL between expression."))
388
389 (defmethod output-sql ((expr sql-between-exp) database)
390   (with-slots (name args)
391       expr 
392     (output-sql (first args) database)
393     (write-string " BETWEEN " *sql-stream*)
394     (output-sql (second args) database)
395     (write-string " AND " *sql-stream*)
396     (output-sql (third args) database))
397   t)
398
399 (defclass sql-query-modifier-exp (%sql-expression) 
400   ((modifier :initarg :modifier :initform nil)
401    (components :initarg :components :initform nil))
402   (:documentation "An SQL query modifier expression."))
403
404 (defmethod output-sql ((expr sql-query-modifier-exp) database)
405   (with-slots (modifier components)
406       expr
407     (output-sql modifier database)
408     (write-string " " *sql-stream*)
409     (output-sql (car components) database)
410     (when components 
411       (mapc #'(lambda (comp) 
412                 (write-string ", " *sql-stream*)
413                 (output-sql comp database))
414             (cdr components))))
415   t)
416
417 (defclass sql-set-exp (%sql-expression)
418   ((operator
419     :initarg :operator
420     :initform nil)
421    (sub-expressions
422     :initarg :sub-expressions
423     :initform nil))
424   (:documentation "An SQL set expression."))
425
426 (defmethod collect-table-refs ((sql sql-set-exp))
427   (let ((tabs nil))
428     (dolist (exp (slot-value sql 'sub-expressions))
429       (let ((refs (collect-table-refs exp)))
430         (if refs (setf tabs (append refs tabs)))))
431     (remove-duplicates tabs
432                        :test (lambda (tab1 tab2)
433                                (equal (slot-value tab1 'name)
434                                       (slot-value tab2 'name))))))
435
436 (defmethod output-sql ((expr sql-set-exp) database)
437   (with-slots (operator sub-expressions)
438       expr
439     (let ((subs (if (consp (car sub-expressions))
440                     (car sub-expressions)
441                     sub-expressions)))
442       (when (= (length subs) 1)
443         (output-sql operator database)
444         (write-char #\Space *sql-stream*))
445       (do ((sub subs (cdr sub)))
446           ((null (cdr sub)) (output-sql (car sub) database))
447         (output-sql (car sub) database)
448         (write-char #\Space *sql-stream*)
449         (output-sql operator database)
450         (write-char #\Space *sql-stream*))))
451   t)
452
453 (defclass sql-query (%sql-expression)
454   ((selections
455     :initarg :selections
456     :initform nil)
457    (all
458     :initarg :all
459     :initform nil)
460    (flatp
461     :initarg :flatp
462     :initform nil)
463    (set-operation
464     :initarg :set-operation
465     :initform nil)
466    (distinct
467     :initarg :distinct
468     :initform nil)
469    (from
470     :initarg :from
471     :initform nil)
472    (where
473     :initarg :where
474     :initform nil)
475    (group-by
476     :initarg :group-by
477     :initform nil)
478    (having
479     :initarg :having
480     :initform nil)
481    (limit
482     :initarg :limit
483     :initform nil)
484    (offset
485     :initarg :offset
486     :initform nil)
487    (order-by
488     :initarg :order-by
489     :initform nil)
490    (order-by-descending
491     :initarg :order-by-descending
492     :initform nil)
493    (inner-join
494     :initarg :inner-join
495     :initform nil)
496    (on
497     :initarg :on
498     :initform nil))
499   (:documentation "An SQL SELECT query."))
500
501 (defclass sql-object-query (%sql-expression)
502   ((objects
503     :initarg :objects
504     :initform nil)
505    (flatp
506     :initarg :flatp
507     :initform nil)
508    (exp
509     :initarg :exp
510     :initform nil)
511    (refresh
512     :initarg :refresh
513     :initform nil)))
514
515 (defmethod collect-table-refs ((sql sql-query))
516   (remove-duplicates (collect-table-refs (slot-value sql 'where))
517                      :test (lambda (tab1 tab2)
518                              (equal (slot-value tab1 'name)
519                                     (slot-value tab2 'name)))))
520
521 (defvar *select-arguments*
522   '(:all :database :distinct :flatp :from :group-by :having :order-by
523     :order-by-descending :set-operation :where :offset :limit
524     :inner-join :on
525     ;; below keywords are not a SQL argument, but these keywords may terminate select
526     :caching :refresh))
527
528 (defun query-arg-p (sym)
529   (member sym *select-arguments*))
530
531 (defun query-get-selections (select-args)
532   "Return two values: the list of select-args up to the first keyword,
533 uninclusive, and the args from that keyword to the end."
534   (let ((first-key-arg (position-if #'query-arg-p select-args)))
535     (if first-key-arg
536         (values (subseq select-args 0 first-key-arg)
537                 (subseq select-args first-key-arg))
538         select-args)))
539
540 (defun make-query (&rest args)
541   (flet ((select-objects (target-args)
542            (and target-args
543                 (every #'(lambda (arg)
544                            (and (symbolp arg)
545                                 (find-class arg nil)))
546                        target-args))))
547     (multiple-value-bind (selections arglist)
548         (query-get-selections args)
549       (if (select-objects selections) 
550           (destructuring-bind (&key flatp refresh &allow-other-keys) arglist
551             (make-instance 'sql-object-query :objects selections
552                            :flatp flatp :refresh refresh
553                            :exp arglist))
554           (destructuring-bind (&key all flatp set-operation distinct from where
555                                     group-by having order-by order-by-descending
556                                     offset limit inner-join on &allow-other-keys)
557               arglist
558             (if (null selections)
559                 (error "No target columns supplied to select statement."))
560             (if (null from)
561                 (error "No source tables supplied to select statement."))
562             (make-instance 'sql-query :selections selections
563                            :all all :flatp flatp :set-operation set-operation
564                            :distinct distinct :from from :where where
565                            :limit limit :offset offset
566                            :group-by group-by :having having :order-by order-by
567                            :order-by-descending order-by-descending
568                            :inner-join inner-join :on on))))))
569
570 (defvar *in-subselect* nil)
571
572 (defmethod output-sql ((query sql-query) database)
573   (with-slots (distinct selections from where group-by having order-by
574                         order-by-descending limit offset inner-join on
575                         all set-operation) 
576       query
577     (when *in-subselect*
578       (write-string "(" *sql-stream*))
579     (write-string "SELECT " *sql-stream*)
580     (when all 
581       (write-string "ALL " *sql-stream*))
582     (when (and distinct (not all))
583       (write-string "DISTINCT " *sql-stream*)
584       (unless (eql t distinct)
585         (write-string "ON " *sql-stream*)
586         (output-sql distinct database)
587         (write-char #\Space *sql-stream*)))
588     (output-sql (apply #'vector selections) database)
589     (when from
590       (write-string " FROM " *sql-stream*)
591       (typecase from 
592         (list (output-sql (apply #'vector from) database))
593         (string (write-string 
594                  (sql-escape 
595                   (convert-to-db-default-case from database)) *sql-stream*))
596         (t (output-sql from database))))
597     (when inner-join
598       (write-string " INNER JOIN " *sql-stream*)
599       (output-sql inner-join database))
600     (when on
601       (write-string " ON " *sql-stream*)
602       (output-sql on database))
603     (when where
604       (write-string " WHERE " *sql-stream*)
605       (let ((*in-subselect* t))
606         (output-sql where database)))
607     (when group-by
608       (write-string " GROUP BY " *sql-stream*)
609       (output-sql group-by database))
610     (when having
611       (write-string " HAVING " *sql-stream*)
612       (output-sql having database))
613     (when order-by
614       (write-string " ORDER BY " *sql-stream*)
615       (if (listp order-by)
616           (do ((order order-by (cdr order)))
617               ((null order))
618             (let ((item (car order)))
619               (typecase item 
620                 (cons 
621                  (output-sql (car item) database)
622                  (format *sql-stream* " ~A" (cadr item)))
623                 (t 
624                  (output-sql item database)))
625               (when (cdr order)
626                 (write-char #\, *sql-stream*))))
627           (output-sql order-by database)))
628     (when order-by-descending
629       (write-string " ORDER BY " *sql-stream*)
630       (if (listp order-by-descending)
631           (do ((order order-by-descending (cdr order)))
632               ((null order))
633             (output-sql (car order) database)
634             (when (cdr order)
635               (write-char #\, *sql-stream*)))
636           (output-sql order-by-descending database))
637       (write-string " DESC " *sql-stream*))
638     (when limit
639       (write-string " LIMIT " *sql-stream*)
640       (output-sql limit database))
641     (when offset
642       (write-string " OFFSET " *sql-stream*)
643       (output-sql offset database))
644     (when *in-subselect*
645       (write-string ")" *sql-stream*))
646     (when set-operation 
647       (write-char #\Space *sql-stream*)
648       (output-sql set-operation database)))
649   t)
650
651 (defmethod output-sql ((query sql-object-query) database)
652   (declare (ignore database))
653   (with-slots (objects)
654       query
655     (when objects
656       (format *sql-stream* "(~{~A~^ ~})" objects))))
657
658
659 ;; INSERT
660
661 (defclass sql-insert (%sql-expression)
662   ((into
663     :initarg :into
664     :initform nil)
665    (attributes
666     :initarg :attributes
667     :initform nil)
668    (values
669     :initarg :values
670     :initform nil)
671    (query
672     :initarg :query
673     :initform nil))
674   (:documentation
675    "An SQL INSERT statement."))
676
677 (defmethod output-sql ((ins sql-insert) database)
678   (with-slots (into attributes values query)
679     ins
680     (write-string "INSERT INTO " *sql-stream*)
681     (output-sql into database)
682     (when attributes
683       (write-char #\Space *sql-stream*)
684       (output-sql attributes database))
685     (when values
686       (write-string " VALUES " *sql-stream*)
687       (output-sql values database))
688     (when query
689       (write-char #\Space *sql-stream*)
690       (output-sql query database)))
691   t)
692
693 ;; DELETE
694
695 (defclass sql-delete (%sql-expression)
696   ((from
697     :initarg :from
698     :initform nil)
699    (where
700     :initarg :where
701     :initform nil))
702   (:documentation
703    "An SQL DELETE statement."))
704
705 (defmethod output-sql ((stmt sql-delete) database)
706   (with-slots (from where)
707     stmt
708     (write-string "DELETE FROM " *sql-stream*)
709     (typecase from
710       (symbol (write-string (sql-escape from) *sql-stream*))
711       (t  (output-sql from database)))
712     (when where
713       (write-string " WHERE " *sql-stream*)
714       (output-sql where database)))
715   t)
716
717 ;; UPDATE
718
719 (defclass sql-update (%sql-expression)
720   ((table
721     :initarg :table
722     :initform nil)
723    (attributes
724     :initarg :attributes
725     :initform nil)
726    (values
727     :initarg :values
728     :initform nil)
729    (where
730     :initarg :where
731     :initform nil))
732   (:documentation "An SQL UPDATE statement."))
733
734 (defmethod output-sql ((expr sql-update) database)
735   (with-slots (table where attributes values)
736     expr
737     (flet ((update-assignments ()
738              (mapcar #'(lambda (a b)
739                          (make-instance 'sql-assignment-exp
740                                         :operator '=
741                                         :sub-expressions (list a b)))
742                      attributes values)))
743       (write-string "UPDATE " *sql-stream*)
744       (output-sql table database)
745       (write-string " SET " *sql-stream*)
746       (output-sql (apply #'vector (update-assignments)) database)
747       (when where
748         (write-string " WHERE " *sql-stream*)
749         (output-sql where database))))
750   t)
751
752 ;; CREATE TABLE
753
754 (defclass sql-create-table (%sql-expression)
755   ((name
756     :initarg :name
757     :initform nil)
758    (columns
759     :initarg :columns
760     :initform nil)
761    (modifiers
762     :initarg :modifiers
763     :initform nil)
764    (transactions
765     :initarg :transactions
766     :initform nil))
767   (:documentation
768    "An SQL CREATE TABLE statement."))
769
770 ;; Here's a real warhorse of a function!
771
772 (declaim (inline listify))
773 (defun listify (x)
774   (if (atom x)
775       (list x)
776       x))
777
778 (defmethod output-sql ((stmt sql-create-table) database)
779   (flet ((output-column (column-spec)
780            (destructuring-bind (name type &optional db-type &rest constraints)
781                column-spec
782              (let ((type (listify type)))
783                (output-sql name database)
784                (write-char #\Space *sql-stream*)
785                (write-string
786                 (if (stringp db-type) db-type ; override definition
787                     (database-get-type-specifier (car type) (cdr type) database))
788                 *sql-stream*)
789                (let ((constraints
790                       (database-constraint-statement constraints database)))
791                  (when constraints
792                    (write-string " " *sql-stream*)
793                    (write-string constraints *sql-stream*)))))))
794     (with-slots (name columns modifiers transactions)
795       stmt
796       (write-string "CREATE TABLE " *sql-stream*)
797       (output-sql name database)
798       (write-string " (" *sql-stream*)
799       (do ((column columns (cdr column)))
800           ((null (cdr column))
801            (output-column (car column)))
802         (output-column (car column))
803         (write-string ", " *sql-stream*))
804       (when modifiers
805         (do ((modifier (listify modifiers) (cdr modifier)))
806             ((null modifier))
807           (write-string ", " *sql-stream*)
808           (write-string (car modifier) *sql-stream*)))
809       (write-char #\) *sql-stream*)
810       (when (and (eq :mysql (database-underlying-type database))
811                  transactions
812                  (db-type-transaction-capable? :mysql database))
813         (write-string " Type=InnoDB" *sql-stream*)))) 
814   t)
815
816
817 ;; CREATE VIEW
818
819 (defclass sql-create-view (%sql-expression)
820   ((name :initarg :name :initform nil)
821    (column-list :initarg :column-list :initform nil)
822    (query :initarg :query :initform nil)
823    (with-check-option :initarg :with-check-option :initform nil))
824   (:documentation "An SQL CREATE VIEW statement."))
825
826 (defmethod output-sql ((stmt sql-create-view) database)
827   (with-slots (name column-list query with-check-option) stmt
828     (write-string "CREATE VIEW " *sql-stream*)
829     (output-sql name database)
830     (when column-list (write-string " " *sql-stream*)
831           (output-sql (listify column-list) database))
832     (write-string " AS " *sql-stream*)
833     (output-sql query database)
834     (when with-check-option (write-string " WITH CHECK OPTION" *sql-stream*))))
835
836
837 ;;
838 ;; Column constraint types
839 ;;
840 (defparameter *constraint-types*
841   (list 
842    (cons (symbol-name-default-case "NOT-NULL") "NOT NULL") 
843    (cons (symbol-name-default-case "PRIMARY-KEY") "PRIMARY KEY")))
844
845 ;;
846 ;; Convert type spec to sql syntax
847 ;;
848
849 (defmethod database-constraint-description (constraint database)
850   (declare (ignore database))
851   (let ((output (assoc (symbol-name constraint) *constraint-types*
852                        :test #'equal)))
853     (if (null output)
854         (error 'clsql-sql-syntax-error
855                :reason (format nil "unsupported column constraint '~a'"
856                                constraint))
857         (cdr output))))
858
859 (defmethod database-constraint-statement (constraint-list database)
860   (declare (ignore database))
861   (make-constraints-description constraint-list))
862   
863 (defun make-constraints-description (constraint-list)
864   (if constraint-list
865       (let ((string ""))
866         (do ((constraint constraint-list (cdr constraint)))
867             ((null constraint) string)
868           (let ((output (assoc (symbol-name (car constraint))
869                                *constraint-types*
870                                :test #'equal)))
871             (if (null output)
872                 (error 'clsql-sql-syntax-error
873                        :reason (format nil "unsupported column constraint '~a'"
874                                        constraint))
875                 (setq string (concatenate 'string string (cdr output))))
876             (if (< 1 (length constraint))
877                 (setq string (concatenate 'string string " "))))))))
878