r9123: test & capability updates
[clsql.git] / sql / package.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;;
4 ;;;; $Id$
5 ;;;;
6 ;;;; Package definitions for CLSQL. 
7 ;;;;
8 ;;;; This file is part of CLSQL.
9 ;;;;
10 ;;;; CLSQL users are granted the rights to distribute and use this software
11 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
12 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
13 ;;;; *************************************************************************
14
15 (in-package #:cl-user)
16
17 (eval-when (:compile-toplevel :load-toplevel :execute)
18
19 #+sbcl
20   (if (find-package 'sb-mop)
21       (pushnew :clsql-sbcl-mop cl:*features*)
22       (pushnew :clsql-sbcl-pcl cl:*features*))
23
24   #+cmu
25   (if (eq (symbol-package 'pcl:find-class)
26           (find-package 'common-lisp))
27       (pushnew :clsql-cmucl-mop cl:*features*)
28       (pushnew :clsql-cmucl-pcl cl:*features*)))
29
30
31 (eval-when (:compile-toplevel :load-toplevel :execute)
32   (defpackage #:clsql-sys
33     (:use #:common-lisp #:clsql-base-sys
34           #+clsql-sbcl-mop #:sb-mop
35           #+clsql-cmucl-mop #:mop
36           #+allegro #:mop
37           #+lispworks #:clos
38           #+scl #:clos
39           #+openmcl #:openmcl-mop)
40     
41     #+allegro
42     (:shadowing-import-from 
43      #:excl)
44    #+lispworks
45    (:shadowing-import-from 
46     #:clos)
47    #+clsql-sbcl-mop 
48    (:shadowing-import-from 
49     #:sb-pcl
50     #:generic-function-lambda-list)
51    #+clsql-sbcl-pcl
52    (:shadowing-import-from 
53     #:sb-pcl
54     #:name
55     #:class-direct-slots
56     #:class-of #:class-name #:class-slots #:find-class
57     #:slot-boundp
58     #:standard-class
59     #:slot-definition-name #:finalize-inheritance
60     #:standard-direct-slot-definition
61     #:standard-effective-slot-definition #:validate-superclass
62     #:direct-slot-definition-class #:compute-effective-slot-definition
63     #:effective-slot-definition-class
64     #:slot-value-using-class
65     #:class-prototype #:generic-function-method-class #:intern-eql-specializer
66     #:make-method-lambda #:generic-function-lambda-list
67     #:class-precedence-list #:slot-definition-type
68     #:class-direct-superclasses
69     #:compute-class-precedence-list)
70    #+clsql-cmucl-mop 
71    (:shadowing-import-from 
72     #:pcl
73     #:generic-function-lambda-list)
74    #+clsql-cmucl-pcl
75    (:shadowing-import-from 
76     #:pcl
77     #:class-direct-slots
78     #:name
79     #:class-of  #:class-name #:class-slots #:find-class #:standard-class
80     #:slot-boundp
81     #:slot-definition-name #:finalize-inheritance
82     #:standard-direct-slot-definition #:standard-effective-slot-definition
83     #:validate-superclass #:direct-slot-definition-class
84     #:effective-slot-definition-class
85     #:compute-effective-slot-definition
86     #:slot-value-using-class
87     #:class-prototype #:generic-function-method-class #:intern-eql-specializer
88     #:make-method-lambda #:generic-function-lambda-list
89     #:class-precedence-list #:slot-definition-type
90     #:class-direct-superclasses
91     #:compute-class-precedence-list)
92    #+scl
93    (:shadowing-import-from 
94     #:clos
95     #:class-prototype  ;; note: make-method-lambda is not fbound
96     )
97    
98    (:import-from 
99     #:clsql-base-sys
100     .
101     #1=(
102        ;; conditions 
103        #:clsql-condition
104        #:clsql-error
105        #:clsql-simple-error
106        #:clsql-warning
107        #:clsql-simple-warning
108        #:clsql-invalid-spec-error
109        #:clsql-invalid-spec-error-connection-spec
110        #:clsql-invalid-spec-error-database-type
111        #:clsql-invalid-spec-error-template
112        #:clsql-access-error
113        #:clsql-access-error-database-type
114        #:clsql-access-error-connection-spec
115        #:clsql-access-error-error
116        #:clsql-connect-error
117        #:clsql-connect-error-errno
118        #:clsql-sql-error
119        #:clsql-sql-error-database
120        #:clsql-sql-error-expression
121        #:clsql-sql-error-errno
122        #:clsql-sql-error-error
123        #:clsql-database-warning
124        #:clsql-database-warning-database
125        #:clsql-database-warning-message
126        #:clsql-exists-condition
127        #:clsql-exists-condition-new-db
128        #:clsql-exists-condition-old-db
129        #:clsql-exists-warning
130        #:clsql-exists-error
131        #:clsql-closed-error
132        #:clsql-closed-error-database
133        #:clsql-type-error
134        #:clsql-sql-syntax-error
135
136        ;; db-interface
137        #:check-connection-spec
138        #:database-initialize-database-type
139        #:database-type-load-foreign
140        #:database-name-from-spec
141        #:database-create-sequence
142        #:database-drop-sequence
143        #:database-sequence-next
144        #:database-set-sequence-position
145        #:database-query-result-set
146        #:database-dump-result-set
147        #:database-store-next-row
148        #:database-get-type-specifier
149        #:database-list-tables
150        #:database-list-views
151        #:database-list-indexes
152        #:database-list-table-indexes
153        #:database-list-sequences
154        #:database-list-attributes
155        #:database-attribute-type
156        #:database-add-attribute
157        #:database-type 
158
159        ;; initialize
160        #:*loaded-database-types*
161        #:reload-database-types
162        #:*default-database-type*
163        #:*initialized-database-types*
164        #:initialize-database-type
165        ;; classes
166        #:database
167        #:database-name
168        #:command-recording-stream
169        #:result-recording-stream
170        #:database-view-classes
171        #:conn-pool
172        #:print-object 
173        ;; utils
174        #:sql-escape
175
176        ;; database.lisp -- Connection
177        #:*default-database-type*                  ; clsql-base xx
178        #:*default-database*               ; classes    xx
179        #:connect                                  ; database   xx
180        #:*connect-if-exists*              ; database   xx
181        #:connected-databases              ; database   xx
182        #:database                         ; database   xx
183        #:database-name                     ; database   xx
184        #:disconnect                       ; database   xx
185        #:reconnect                         ; database
186        #:find-database                     ; database   xx
187        #:status                            ; database   xx
188        #:with-database
189        #:with-default-database
190        #:create-database
191        #:destroy-database
192        #:probe-database
193        
194        ;; pool.lisp
195        #:disconnect-pooled
196
197        ;; basic-sql.lisp
198        #:query
199        #:execute-command
200        #:write-large-object
201        #:read-large-object
202        #:delete-large-object
203        #:do-query
204        #:map-query
205        #:describe-table
206
207        
208        ;; recording.lisp -- SQL I/O Recording 
209        #:record-sql-action
210        #:add-sql-stream                 ; recording  xx
211        #:delete-sql-stream                ; recording  xx
212        #:list-sql-streams                 ; recording  xx
213        #:sql-recording-p                  ; recording  xx
214        #:sql-stream                       ; recording  xx
215        #:start-sql-recording              ; recording  xx
216        #:stop-sql-recording               ; recording  xx
217        
218        ;; Transactions
219        #:with-transaction
220        #:commit-transaction
221        #:rollback-transaction
222        #:add-transaction-commit-hook
223        #:add-transaction-rollback-hook
224        #:commit                            ; transact   xx
225        #:rollback                         ; transact   xx
226        #:with-transaction                 ; transact   xx               .
227        #:start-transaction                 ; transact   xx
228        #:in-transaction-p                  ; transact   xx
229        #:database-start-transaction
230        #:database-abort-transaction
231        #:database-commit-transaction
232        #:transaction-level
233        #:transaction
234        
235        ;; Database capabilities
236        #:db-type-use-column-on-drop-index?
237        #:db-backend-has-create/destroy-db?
238        #:db-type-has-views?
239        #:db-type-has-subqueries?
240        #:db-type-has-boolean-where?
241        #:db-type-transaction-capable?
242        #:db-type-has-fancy-math?
243        #:database-underlying-type
244        ))
245    (:export
246     ;; "Private" exports for use by interface packages
247     #:check-connection-spec
248     #:database-initialize-database-type
249     #:database-type-load-foreign
250     #:database-name-from-spec
251     #:database-connect
252     #:database-query
253     #:database-execute-command
254     #:database-create-sequence
255     #:database-drop-sequence
256     #:database-sequence-next
257     #:database-set-sequence-position
258     #:database-query-result-set
259     #:database-dump-result-set
260     #:database-store-next-row
261     #:database-get-type-specifier
262     #:database-list-tables
263     #:database-table-exists-p
264     #:database-list-views
265     #:database-view-exists-p
266     #:database-list-indexes
267     #:database-list-table-indexes
268     #:database-index-exists-p
269     #:database-list-sequences
270     #:database-sequence-exists-p
271     #:database-list-attributes
272     #:database-attribute-type
273     #:database-describe-table
274
275     #:db-backend-has-create/destroy-db?
276     #:db-type-has-views?
277     #:db-type-has-subqueries?
278     #:db-type-has-boolean-where?
279     #:db-type-transaction-capable?
280     #:db-type-has-fancy-math?
281     #:database-underlying-type
282    
283    .
284    ;; Shared exports for re-export by CLSQL. 
285    ;; I = Implemented, D = Documented
286    ;;  name                                 file       ID
287    ;;====================================================
288    #2=(;;------------------------------------------------
289        ;; CommonSQL API 
290        ;;------------------------------------------------
291       ;;FDML 
292        #:select                            ; objects    xx
293        #:cache-table-queries               ; 
294        #:*cache-table-queries-default*     ; 
295        #:delete-records                    ; sql               xx
296        #:insert-records                    ; sql        xx
297        #:update-records                    ; sql               xx
298        #:execute-command                          ; sql        xx
299        #:query                             ; sql        xx
300        #:print-query                      ; sql        xx
301        #:do-query                         ; sql        xx
302        #:map-query                        ; sql        xx
303        #:loop                             ; loop-ext   x
304        ;;FDDL
305        #:create-table                     ; table      xx
306        #:drop-table                       ; table      xx
307        #:list-tables                      ; table      xx
308        #:table-exists-p                    ; table      xx 
309        #:list-attributes                          ; table      xx
310        #:attribute-type                    ; table      xx
311        #:list-attribute-types              ; table      xx
312        #:create-view                      ; table      xx
313        #:drop-view                        ; table      xx
314        #:create-index                     ; table      xx               
315        #:drop-index                       ; table      xx               
316        #:truncate-database
317        ;;OODDL
318        #:standard-db-object               ; objects    xx
319        #:def-view-class                    ; objects    xx
320        #:create-view-from-class            ; objects    xx
321        #:drop-view-from-class             ; objects    xx
322        ;;OODML
323        #:instance-refreshed                ;
324        #:update-object-joins               ;
325        #:*default-update-objects-max-len*  ; 
326        #:update-slot-from-record           ; objects    xx
327        #:update-instance-from-records      ; objects    xx
328        #:update-records-from-instance     ; objects    xx
329        #:update-record-from-slot                  ; objects    xx
330        #:update-record-from-slots         ; objects    xx
331        #:list-classes                     ; objects    xx
332        #:delete-instance-records                  ; objects    xx
333        ;;Symbolic SQL Syntax 
334        #:sql                              ; syntax     xx
335        #:sql-expression                    ; syntax     xx
336        #:sql-operation                     ; syntax     xx
337        #:sql-operator                     ; syntax     xx       
338        #:disable-sql-reader-syntax         ; syntax     xx
339        #:enable-sql-reader-syntax          ; syntax     xx
340        #:locally-disable-sql-reader-syntax ; syntax     xx
341        #:locally-enable-sql-reader-syntax  ; syntax     xx
342        #:restore-sql-reader-syntax-state   ; syntax     xx
343
344        ;;------------------------------------------------
345        ;; Miscellaneous Extensions
346        ;;------------------------------------------------
347        ;;Initialization
348        #:*loaded-database-types*           ; clsql-base xx
349        #:reload-database-types             ; clsql-base xx
350        #:database-type                     ; database   x
351        #:is-database-open
352        ;;FDDL 
353        #:list-views                        ; table      xx
354        #:view-exists-p                     ; table      xx
355        #:list-indexes                      ; table      xx
356        #:list-table-indexes                ; table      xx
357        #:index-exists-p                    ; table      xx
358        #:create-sequence                   ; table      xx
359        #:drop-sequence                     ; table      xx
360        #:list-sequences                    ; table      xx
361        #:sequence-exists-p                 ; table      xx
362        #:sequence-next                     ; table      xx
363        #:sequence-last                     ; table      xx
364        #:set-sequence-position             ; table      xx
365        ;;OODDL
366        #:view-table                        ; metaclass  x
367        #:create-sequence-from-class        ; objects    x
368        #:drop-sequence-from-class          ; objects    x       
369        ;;OODML
370        #:add-to-relation                   ; objects    x
371        #:remove-from-relation              ; objects    x
372        #:read-sql-value                    ; objects    x
373        #:database-output-sql-as-type       ; objects    x
374        #:database-get-type-specifier       ; objects    x
375        #:database-output-sql               ; sql/class  xx
376
377        ;;-----------------------------------------------
378        ;; Symbolic Sql Syntax 
379        ;;-----------------------------------------------
380        #:sql-and-qualifier
381        #:sql-escape
382        #:sql-query
383        #:sql-any
384        #:sql-all
385        #:sql-not
386        #:sql-union
387        #:sql-intersection
388        #:sql-minus
389        #:sql-group-by
390        #:sql-having
391        #:sql-null
392        #:sql-not-null
393        #:sql-exists
394        #:sql-*
395        #:sql-+
396        #:sql-/
397        #:sql-like
398        #:sql-uplike
399        #:sql-and
400        #:sql-or
401        #:sql-in
402        #:sql-||
403        #:sql-is
404        #:sql-=
405        #:sql-==
406        #:sql-<
407        #:sql->
408        #:sql->=
409        #:sql-<=
410        #:sql-count
411        #:sql-max
412        #:sql-min
413        #:sql-avg
414        #:sql-sum
415        #:sql-view-class
416        #:sql_slot-value
417
418        . 
419        #1#
420        ))
421   (:documentation "This is the INTERNAL SQL-Interface package of CLSQL."))
422
423
424 ;; see http://thread.gmane.org/gmane.lisp.lispworks.general/681
425 #+lispworks
426 (setf *packages-for-warn-on-redefinition* 
427       (delete "SQL" *packages-for-warn-on-redefinition* :test 'string=))
428
429 (defpackage #:clsql
430   (:use #:common-lisp)
431   (:import-from #:clsql-sys . #2#)
432   (:export . #2#)
433   (:documentation "This is the SQL-Interface package of CLSQL."))
434
435 (defpackage #:clsql-user
436   (:use #:common-lisp)
437   (:import-from #:clsql-sys . #2#)
438   (:export . #2#)
439   (:documentation "This is the user package with CLSQL symbols."))
440
441   ;; This is from USQL's pcl-patch  
442   #+(or clsql-sbcl-pcl clsql-cmucl-pcl)
443   (progn
444     ;; Note that this will no longer required for cmucl as of version 19a. 
445     (in-package #+cmu :pcl #+sbcl :sb-pcl)
446     (defmacro pv-binding1 ((pv calls pv-table-symbol pv-parameters slot-vars) 
447                            &body body)
448       `(pv-env (,pv ,calls ,pv-table-symbol ,pv-parameters)
449         (let (,@(mapcar #'(lambda (slot-var p) `(,slot-var (get-slots-or-nil ,p)))
450                         slot-vars pv-parameters))
451           ,@(mapcar #'(lambda (slot-var) `(declare (ignorable ,slot-var))) slot-vars)
452           ,@body))))
453   
454   
455   #+sbcl
456   (if (find-package 'sb-mop)
457       (setq cl:*features* (delete :clsql-sbcl-mop cl:*features*))
458       (setq cl:*features* (delete :clsql-sbcl-pcl cl:*features*)))
459   
460   #+cmu
461   (if (find-package 'mop)
462       (setq cl:*features* (delete :clsql-cmucl-mop cl:*features*))
463       (setq cl:*features* (delete :clsql-cmucl-pcl cl:*features*)))
464   
465 );eval-when                                      
466
467