r9119: Automated commit for Debian build of clsql upstream-version-2.9.2
[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        #:database-underlying-type
243        ))
244    (:export
245     ;; "Private" exports for use by interface packages
246     #:check-connection-spec
247     #:database-initialize-database-type
248     #:database-type-load-foreign
249     #:database-name-from-spec
250     #:database-connect
251     #:database-query
252     #:database-execute-command
253     #:database-create-sequence
254     #:database-drop-sequence
255     #:database-sequence-next
256     #:database-set-sequence-position
257     #:database-query-result-set
258     #:database-dump-result-set
259     #:database-store-next-row
260     #:database-get-type-specifier
261     #:database-list-tables
262     #:database-table-exists-p
263     #:database-list-views
264     #:database-view-exists-p
265     #:database-list-indexes
266     #:database-list-table-indexes
267     #:database-index-exists-p
268     #:database-list-sequences
269     #:database-sequence-exists-p
270     #:database-list-attributes
271     #:database-attribute-type
272     #:database-describe-table
273
274     #:db-backend-has-create/destroy-db?
275     #:db-type-has-views?
276     #:db-type-has-subqueries?
277     #:db-type-has-boolean-where?
278     #:db-type-transaction-capable?
279     #:database-underlying-type
280    
281    .
282    ;; Shared exports for re-export by CLSQL. 
283    ;; I = Implemented, D = Documented
284    ;;  name                                 file       ID
285    ;;====================================================
286    #2=(;;------------------------------------------------
287        ;; CommonSQL API 
288        ;;------------------------------------------------
289       ;;FDML 
290        #:select                            ; objects    xx
291        #:cache-table-queries               ; 
292        #:*cache-table-queries-default*     ; 
293        #:delete-records                    ; sql               xx
294        #:insert-records                    ; sql        xx
295        #:update-records                    ; sql               xx
296        #:execute-command                          ; sql        xx
297        #:query                             ; sql        xx
298        #:print-query                      ; sql        xx
299        #:do-query                         ; sql        xx
300        #:map-query                        ; sql        xx
301        #:loop                             ; loop-ext   x
302        ;;FDDL
303        #:create-table                     ; table      xx
304        #:drop-table                       ; table      xx
305        #:list-tables                      ; table      xx
306        #:table-exists-p                    ; table      xx 
307        #:list-attributes                          ; table      xx
308        #:attribute-type                    ; table      xx
309        #:list-attribute-types              ; table      xx
310        #:create-view                      ; table      xx
311        #:drop-view                        ; table      xx
312        #:create-index                     ; table      xx               
313        #:drop-index                       ; table      xx               
314        #:truncate-database
315        ;;OODDL
316        #:standard-db-object               ; objects    xx
317        #:def-view-class                    ; objects    xx
318        #:create-view-from-class            ; objects    xx
319        #:drop-view-from-class             ; objects    xx
320        ;;OODML
321        #:instance-refreshed                ;
322        #:update-object-joins               ;
323        #:*default-update-objects-max-len*  ; 
324        #:update-slot-from-record           ; objects    xx
325        #:update-instance-from-records      ; objects    xx
326        #:update-records-from-instance     ; objects    xx
327        #:update-record-from-slot                  ; objects    xx
328        #:update-record-from-slots         ; objects    xx
329        #:list-classes                     ; objects    xx
330        #:delete-instance-records                  ; objects    xx
331        ;;Symbolic SQL Syntax 
332        #:sql                              ; syntax     xx
333        #:sql-expression                    ; syntax     xx
334        #:sql-operation                     ; syntax     xx
335        #:sql-operator                     ; syntax     xx       
336        #:disable-sql-reader-syntax         ; syntax     xx
337        #:enable-sql-reader-syntax          ; syntax     xx
338        #:locally-disable-sql-reader-syntax ; syntax     xx
339        #:locally-enable-sql-reader-syntax  ; syntax     xx
340        #:restore-sql-reader-syntax-state   ; syntax     xx
341
342        ;;------------------------------------------------
343        ;; Miscellaneous Extensions
344        ;;------------------------------------------------
345        ;;Initialization
346        #:*loaded-database-types*           ; clsql-base xx
347        #:reload-database-types             ; clsql-base xx
348        #:database-type                     ; database   x
349        #:is-database-open
350        ;;FDDL 
351        #:list-views                        ; table      xx
352        #:view-exists-p                     ; table      xx
353        #:list-indexes                      ; table      xx
354        #:list-table-indexes                ; table      xx
355        #:index-exists-p                    ; table      xx
356        #:create-sequence                   ; table      xx
357        #:drop-sequence                     ; table      xx
358        #:list-sequences                    ; table      xx
359        #:sequence-exists-p                 ; table      xx
360        #:sequence-next                     ; table      xx
361        #:sequence-last                     ; table      xx
362        #:set-sequence-position             ; table      xx
363        ;;OODDL
364        #:view-table                        ; metaclass  x
365        #:create-sequence-from-class        ; objects    x
366        #:drop-sequence-from-class          ; objects    x       
367        ;;OODML
368        #:add-to-relation                   ; objects    x
369        #:remove-from-relation              ; objects    x
370        #:read-sql-value                    ; objects    x
371        #:database-output-sql-as-type       ; objects    x
372        #:database-get-type-specifier       ; objects    x
373        #:database-output-sql               ; sql/class  xx
374
375        ;;-----------------------------------------------
376        ;; Symbolic Sql Syntax 
377        ;;-----------------------------------------------
378        #:sql-and-qualifier
379        #:sql-escape
380        #:sql-query
381        #:sql-any
382        #:sql-all
383        #:sql-not
384        #:sql-union
385        #:sql-intersection
386        #:sql-minus
387        #:sql-group-by
388        #:sql-having
389        #:sql-null
390        #:sql-not-null
391        #:sql-exists
392        #:sql-*
393        #:sql-+
394        #:sql-/
395        #:sql-like
396        #:sql-uplike
397        #:sql-and
398        #:sql-or
399        #:sql-in
400        #:sql-||
401        #:sql-is
402        #:sql-=
403        #:sql-==
404        #:sql-<
405        #:sql->
406        #:sql->=
407        #:sql-<=
408        #:sql-count
409        #:sql-max
410        #:sql-min
411        #:sql-avg
412        #:sql-sum
413        #:sql-view-class
414        #:sql_slot-value
415
416        . 
417        #1#
418        ))
419   (:documentation "This is the INTERNAL SQL-Interface package of CLSQL."))
420
421
422 ;; see http://thread.gmane.org/gmane.lisp.lispworks.general/681
423 #+lispworks
424 (setf *packages-for-warn-on-redefinition* 
425       (delete "SQL" *packages-for-warn-on-redefinition* :test 'string=))
426
427 (defpackage #:clsql
428   (:use #:common-lisp)
429   (:import-from #:clsql-sys . #2#)
430   (:export . #2#)
431   (:documentation "This is the SQL-Interface package of CLSQL."))
432
433 (defpackage #:clsql-user
434   (:use #:common-lisp)
435   (:import-from #:clsql-sys . #2#)
436   (:export . #2#)
437   (:documentation "This is the user package with CLSQL symbols."))
438
439   ;; This is from USQL's pcl-patch  
440   #+(or clsql-sbcl-pcl clsql-cmucl-pcl)
441   (progn
442     ;; Note that this will no longer required for cmucl as of version 19a. 
443     (in-package #+cmu :pcl #+sbcl :sb-pcl)
444     (defmacro pv-binding1 ((pv calls pv-table-symbol pv-parameters slot-vars) 
445                            &body body)
446       `(pv-env (,pv ,calls ,pv-table-symbol ,pv-parameters)
447         (let (,@(mapcar #'(lambda (slot-var p) `(,slot-var (get-slots-or-nil ,p)))
448                         slot-vars pv-parameters))
449           ,@(mapcar #'(lambda (slot-var) `(declare (ignorable ,slot-var))) slot-vars)
450           ,@body))))
451   
452   
453   #+sbcl
454   (if (find-package 'sb-mop)
455       (setq cl:*features* (delete :clsql-sbcl-mop cl:*features*))
456       (setq cl:*features* (delete :clsql-sbcl-pcl cl:*features*)))
457   
458   #+cmu
459   (if (find-package 'mop)
460       (setq cl:*features* (delete :clsql-cmucl-mop cl:*features*))
461       (setq cl:*features* (delete :clsql-cmucl-pcl cl:*features*)))
462   
463 );eval-when                                      
464
465