bind *print-length* to nil when printing lists/arrays to the database.
[clsql.git] / sql / oodml.lisp
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;;
4 ;;;; The CLSQL Object Oriented Data Manipulation Language (OODML).
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 (defun find-normalized-key (obj)
16   "Find the first / primary key of a normalized object"
17   (find-slot-if obj #'key-slot-p T T))
18
19 (defun normalized-key-value (obj)
20   "Normalized classes share a single key for all their key slots"
21   (when (normalizedp (class-of obj))
22     (easy-slot-value obj (find-normalized-key obj))))
23
24 (defun key-qualifier-for-instance (obj &key (database *default-database*) this-class)
25   "Generate a boolean sql-expression that identifies an object by its keys"
26   (let* ((obj-class (or this-class (class-of obj)))
27          (keys (keyslots-for-class obj-class))
28          (normal-db-value (normalized-key-value obj)))
29     (when keys
30       (labels ((db-value (k)
31                  (or normal-db-value
32                      (db-value-from-slot
33                       k
34                       (easy-slot-value obj k)
35                       database)))
36                (key-equal-exp (k)
37                  (sql-operation '== (generate-attribute-reference obj-class k database)
38                                 (db-value k))))
39         (clsql-ands (mapcar #'key-equal-exp keys))))))
40
41 (defun generate-attribute-reference (vclass slotdef &optional (database *default-database*))
42   "Turns key class and slot-def into a sql-expression representing the
43    table and column it comes from
44
45    used by things like make-select-list, update-slot-from-record"
46   (when (key-or-base-slot-p slotdef)
47     (sql-expression :attribute (database-identifier slotdef database)
48                     :table (database-identifier vclass database))))
49
50 (defun get-join-slots (class &optional retrieval-method)
51   "Returns list of join slots for a class.
52
53    if a retrieval method is specified only return slots of that type
54    if the retrieval method is T, nil or :all return all join slots"
55   (assert (member retrieval-method '(nil t :all :immediate :deferred)))
56   (setf class (to-class class))
57   (let ((all? (member retrieval-method '(nil t :all))))
58     (loop for slot in (ordered-class-slots class)
59           when (and (join-slot-p slot)
60                     (or all? (eql (join-slot-retrieval-method slot) retrieval-method)))
61           collect slot)))
62
63 (defun immediate-join-slots (class)
64   (get-join-slots class :immediate))
65
66 (defmethod choose-database-for-instance ((obj standard-db-object) &optional database)
67   "Determine which database connection to use for a standard-db-object.
68         Errs if none is available."
69   (or (find-if #'(lambda (db)
70                    (and db (is-database-open db)))
71                (list (view-database obj)
72                      database
73                      *default-database*))
74       (signal-no-database-error nil)))
75
76
77
78 (defmethod update-slot-with-null ((object standard-db-object) slotdef)
79   "sets a slot to the void value of the slot-def (usually nil)"
80   (setf (easy-slot-value object slotdef)
81         (slot-value slotdef 'void-value)))
82
83 (defmethod update-slot-from-db-value ((instance standard-db-object) slotdef value)
84   "This gets a value from the database and turns it itno a lisp value
85    based on the slot's slot-db-reader or baring that read-sql-value"
86   (declare (optimize (speed 3) #+cmu (extensions:inhibit-warnings 3)))
87   (let* ((slot-reader (view-class-slot-db-reader slotdef))
88          (slot-type   (specified-type slotdef)))
89     (cond
90       ((null value) (update-slot-with-null instance slotdef))
91       ((null slot-reader)
92        (setf (easy-slot-value instance slotdef)
93              (read-sql-value value (delistify slot-type)
94                              (choose-database-for-instance instance)
95                              (database-underlying-type
96                               (choose-database-for-instance instance)))))
97       (t (etypecase slot-reader
98            ((or symbol function)
99             (setf (easy-slot-value instance slotdef)
100                   (apply slot-reader (list value))))
101            (string
102             (setf (easy-slot-value instance slotdef)
103                   (format nil slot-reader value))))))))
104
105 (defmethod key-value-from-db (slotdef value database)
106   "TODO: is this deprecated? there are no uses anywhere in clsql"
107   (declare (optimize (speed 3) #+cmu (extensions:inhibit-warnings 3)))
108   (let ((slot-reader (view-class-slot-db-reader slotdef))
109         (slot-type (specified-type slotdef)))
110     (cond ((and value (null slot-reader))
111            (read-sql-value value (delistify slot-type) database
112                            (database-underlying-type database)))
113           ((null value)
114            nil)
115           ((typep slot-reader 'string)
116            (format nil slot-reader value))
117           ((typep slot-reader '(or symbol function))
118            (apply slot-reader (list value)))
119           (t
120            (error "Slot reader is of an unusual type.")))))
121
122 (defun db-value-from-slot (slotdef val database)
123   (let ((dbwriter (view-class-slot-db-writer slotdef))
124         (dbtype (specified-type slotdef)))
125     (typecase dbwriter
126       (string (format nil dbwriter val))
127       ((and (or symbol function) (not null)) (apply dbwriter (list val)))
128       (t
129        (database-output-sql-as-type
130         (typecase dbtype
131           (cons (car dbtype))
132           (t dbtype))
133         val database (database-underlying-type database))))))
134
135 (defun check-slot-type (slotdef val)
136   (let* ((slot-type (specified-type slotdef))
137          (basetype (if (listp slot-type) (car slot-type) slot-type)))
138     (when (and slot-type val)
139       (unless (typep val basetype)
140         (error 'sql-user-error
141                :message
142                (format nil "Invalid value ~A in slot ~A, not of type ~A."
143                        val (slot-definition-name slotdef) slot-type))))))
144
145 (defmethod get-slot-values-from-view (obj slotdeflist values)
146   "Used to copy values from the database into the object
147    used by things like find-all and select"
148   (loop for slot in slotdeflist
149         for value in values
150         do (update-slot-from-db-value obj slot value))
151   obj)
152
153 (defclass class-and-slots ()
154   ((view-class :accessor view-class :initarg :view-class :initform nil)
155    (slot-defs :accessor slot-defs :initarg :slot-defs :initform nil))
156   (:documentation "A helper class to keep track of which slot-defs from a
157    table need to be updated, a normalized class might have many of these
158    because each of its parent classes might represent some other table and we
159    need to match which slots came from which parent class/table"))
160
161 (defun make-class-and-slots (c &optional s)
162   "Create a new class-and-slots object"
163   (make-instance 'class-and-slots :view-class c :slot-defs (listify s) ))
164
165 (defmethod view-table ((o class-and-slots))
166   "get the view-table of the view-class of o"
167   (view-table (view-class o)))
168
169 (defmethod view-table-exp ((o class-and-slots))
170   (sql-expression :table (view-table o)))
171
172 (defmethod view-table-exp ((o standard-db-class))
173   (sql-expression :table (view-table o)))
174
175 (defmethod attribute-references ((o class-and-slots))
176   "build sql-ident-attributes for a given class-and-slots"
177   (loop
178     with class = (view-class o)
179     for sd in (slot-defs o)
180     collect (generate-attribute-reference class sd)))
181
182 (defmethod attribute-value-pairs ((def class-and-slots) (o standard-db-object)
183                                   database)
184   "for a given class-and-slots and object, create the sql-expression & value pairs
185    that need to be sent to the database"
186   (loop for s in (slot-defs def)
187         for n = (to-slot-name s)
188         when (slot-boundp o n)
189         collect (make-attribute-value-pair s (slot-value o n) database)))
190
191 (defmethod view-classes-and-slots-by-name ((obj standard-db-object) slots-to-match)
192   "If it's normalized, find the class that actually contains
193    the slot that's tied to the db,
194
195    otherwise just search the current class
196   "
197   (let* ((view-class (class-of obj))
198          (normalizedp (normalizedp view-class))
199          rtns)
200     (labels ((get-c&s-obj (class)
201                (or (find class rtns :key #'view-class)
202                    (first (push (make-class-and-slots class) rtns))))
203              (associate-slot-with-class (class slot)
204                "Find the best class to associate with the slot. If it is
205                 normalized then it needs to be a direct slot otherwise it just
206                 needs to be on the class."
207                (let ((sd (find-slot-by-name class slot normalizedp nil)))
208                  (if sd
209                      ;;we found it directly or it's (not normalized)
210                      (pushnew sd (slot-defs (get-c&s-obj class)))
211                      (when normalizedp
212                        (loop for parent in (class-direct-superclasses class)
213                              until (associate-slot-with-class parent slot))))
214                  sd)))
215       (loop
216         for in-slot in (listify slots-to-match)
217         do (associate-slot-with-class view-class in-slot)))
218     rtns))
219
220 (defun update-auto-increments-keys (class obj database)
221   " handle pulling any autoincrement values into the object
222     Also handles normalized key chaining"
223   (let ((pk-slots (keyslots-for-class class))
224         (table (view-table class))
225         new-pk-value)
226     (labels ((do-update (slot &aux (val (easy-slot-value obj slot)))
227                (if val
228                    (setf new-pk-value val)
229                    (update-slot-from-db-value
230                     obj slot
231                     (or new-pk-value
232                         (setf new-pk-value
233                               (database-last-auto-increment-id
234                                database table slot))))))
235              ;; NB: This interacts very strangely with autoincrement keys
236              ;; (see changelog 2014-01-30)
237              (chain-primary-keys (in-class)
238                "This seems kindof wrong, but this is mostly how it was working, so
239                   its here to keep the normalized code path working"
240                (when (typep in-class 'standard-db-class)
241                  (loop for slot in (ordered-class-slots in-class)
242                        when (key-slot-p slot)
243                        do (do-update slot)))))
244       (loop for slot in pk-slots do (do-update slot))
245       (let ((direct-class (to-class obj)))
246         (when (and new-pk-value (normalizedp direct-class))
247           (chain-primary-keys direct-class)))
248       new-pk-value)))
249
250 (defmethod %update-instance-helper
251     (class-and-slots obj database
252      &aux (avps (attribute-value-pairs class-and-slots obj database)))
253   "A function to help us update a given table (based on class-and-slots)
254    with values from an object"
255   ;; we dont actually need to update anything on this particular
256   ;; class / parent class
257   (unless avps (return-from %update-instance-helper))
258
259   (let* ((view-class (view-class class-and-slots))
260          (table (view-table view-class))
261          (table-sql (sql-expression :table table)))
262
263     ;; view database is the flag we use to tell it was pulled from a database
264     ;; and thus probably needs an update instead of an insert
265     (cond ((view-database obj)
266            (let ((where (key-qualifier-for-instance
267                          obj :database database :this-class view-class)))
268              (unless where
269                (error "update-record-from-*: could not generate a where clause for ~a using ~A"
270                       obj view-class))
271              (update-records table-sql
272                              :av-pairs avps
273                              :where where
274                              :database database)))
275           (T ;; was not pulled from the db so insert it
276            ;; avps MUST contain any primary key slots set
277            ;; by previous inserts of the same object into different
278            ;; tables (ie: normalized stuff)
279            (insert-records :into table-sql
280                            :av-pairs avps
281                            :database database)
282            ;; also handles normalized-class key chaining
283            (update-auto-increments-keys view-class obj database)
284            ;; we dont set view database here, because there could be
285            ;; N of these for each call to update-record-from-* because
286            ;; of normalized classes
287            ))
288     (update-slot-default-values obj class-and-slots)))
289
290 (defmethod update-record-from-slots ((obj standard-db-object) slots
291                                      &key (database *default-database*))
292   "For a given list of slots, update all records associated with those slots
293    and classes.
294
295    Generally this will update the single record associated with this object,
296    but for normalized classes might update as many records as there are
297    inheritances "
298   (setf slots (listify slots))
299   (let* ((classes-and-slots (view-classes-and-slots-by-name obj slots))
300          (database (choose-database-for-instance obj database)))
301     (loop for class-and-slots in classes-and-slots
302           do (%update-instance-helper class-and-slots obj database))
303     (setf (slot-value obj 'view-database) database))
304   (values))
305
306 (defmethod update-record-from-slot
307     ((obj standard-db-object) slot &key (database *default-database*))
308   "just call update-records-from-slots which now handles this.
309
310    This function is only here to maintain backwards compatibility in
311    the public api"
312   (update-record-from-slots obj slot :database database))
313
314 (defmethod view-classes-and-storable-slots (class &key to-database-p)
315   "Get a list of all the tables we need to update and the slots on them
316
317    for non normalized classes we return the class and all its storable slots
318
319    for normalized classes we return a list of direct slots and the class they
320    came from for each normalized view class
321
322    to-database-p is provided so that we can read / write different data
323    to the database in different circumstances
324    (specifically clsql-helper:dirty-db-slots-mixin which only updates slots
325     that have changed )
326   "
327   (setf class (to-class class))
328   (let* (rtns)
329     (labels ((storable-slots (class)
330                (loop for sd in (slots-for-possibly-normalized-class class)
331                      when (and (key-or-base-slot-p sd)
332                                ;; we dont want to insert/update auto-increments
333                                ;; but we do read them
334                                (not (and to-database-p (auto-increment-column-p sd))))
335                      collect sd))
336              (get-classes-and-slots (class &aux (normalizedp (normalizedp class)))
337                (let ((slots (storable-slots class)))
338                  (when slots
339                    (push (make-class-and-slots class slots) rtns)))
340                (when normalizedp
341                  (loop for new-class in (class-direct-superclasses class)
342                        do (when (typep new-class 'standard-db-class)
343                             (get-classes-and-slots new-class))))))
344       (get-classes-and-slots class))
345     rtns))
346
347 (defmethod primary-key-slot-values ((obj standard-db-object)
348                                     &key class slots )
349   "Returns the values of all key-slots for a given class"
350   (defaulting class (class-of obj)
351               slots (keyslots-for-class class))
352   (loop for slot in slots
353         collect (easy-slot-value obj slot)))
354
355 (defmethod update-slot-default-values ((obj standard-db-object)
356                                        classes-and-slots)
357   "Makes sure that if a class has unfilled slots that claim to have a default,
358    that we retrieve those defaults from the database
359
360    TODO: use update-slots-from-record (doesnt exist) instead to batch this!"
361   (loop for class-and-slots in (listify classes-and-slots)
362         do (loop for slot in (slot-defs class-and-slots)
363                  do (when (and (slot-has-default-p slot)
364                                (not (easy-slot-value obj slot)))
365                       (update-slot-from-record obj (to-slot-name slot))))))
366
367 (defmethod update-records-from-instance ((obj standard-db-object)
368                                          &key (database *default-database*))
369   "Updates the records in the database associated with this object if
370    view-database slot on the object is nil then the object is assumed to be
371    new and is inserted"
372   (let ((database (choose-database-for-instance obj database))
373         (classes-and-slots (view-classes-and-storable-slots obj :to-database-p t)))
374     (loop for class-and-slots in classes-and-slots
375           do (%update-instance-helper class-and-slots obj database))
376     (setf (slot-value obj 'view-database) database)
377     (primary-key-slot-values obj)))
378
379 (defmethod delete-instance-records ((instance standard-db-object) &key database)
380   "Removes the records associated with a given instance
381    (as determined by key-qualifier-for-instance)
382
383    TODO: Doesnt handle normalized classes at all afaict"
384   (let ((database (choose-database-for-instance instance database))
385         (vt (sql-expression :table (view-table (class-of instance)))))
386     (if database
387         (let ((qualifier (key-qualifier-for-instance instance :database database)))
388           (delete-records :from vt :where qualifier :database database)
389           (setf (record-caches database) nil)
390           (setf (slot-value instance 'view-database) nil)
391           (values))
392         (signal-no-database-error database))))
393
394 (defmethod update-instance-from-records ((instance standard-db-object)
395                                          &key (database *default-database*))
396   "Updates a database object with the current values stored in the database
397
398    TODO: Should this update immediate join slots similar to build-objects?
399          Can we just call build-objects?, update-objects-joins?
400   "
401
402   (let* ((classes-and-slots (view-classes-and-storable-slots
403                              instance :to-database-p nil))
404          (vd (choose-database-for-instance instance database)))
405     (labels ((do-update (class-and-slots)
406                (let* ((select-list (make-select-list class-and-slots
407                                                      :do-joins-p nil
408                                                      :database database))
409                       (view-table (sql-table select-list))
410                       (view-qual (key-qualifier-for-instance
411                                   instance :database vd
412                                   :this-class (view-class select-list)))
413                       (res (when view-qual
414                              (first
415                               (apply #'select
416                                      (append (full-select-list select-list)
417                                              (list :from view-table
418                                                    :where view-qual
419                                                    :result-types nil
420                                                    :database vd)))))))
421                  (when res
422                    (setf (slot-value instance 'view-database) vd)
423                    (get-slot-values-from-view instance (slot-list select-list) res))
424                  )))
425       (loop for class-and-slots in classes-and-slots
426             do (do-update class-and-slots)))))
427
428
429 (defmethod get-slot-value-from-record ((instance standard-db-object)
430                                        slot &key (database *default-database*))
431   (let* ((class-and-slot
432            (first
433             (view-classes-and-slots-by-name instance slot)))
434          (view-class (view-class class-and-slot))
435          (slot-def (first (slot-defs class-and-slot)))
436          (vd (choose-database-for-instance instance database))
437          (att-ref (first (attribute-references class-and-slot)))
438          (res (first
439                (select att-ref
440                  :from (view-table-exp class-and-slot)
441                  :where (key-qualifier-for-instance
442                          instance
443                          :database vd
444                          :this-class view-class)
445                  :result-types nil
446                  :flatp T))))
447     (values res slot-def)))
448
449 (defmethod update-slot-from-record ((instance standard-db-object)
450                                     slot &key (database *default-database*))
451   "Pulls the value of a given slot form the database and stores that in the
452    appropriate slot on instance"
453   (multiple-value-bind (res slot-def)
454       (get-slot-value-from-record instance slot :database database)
455     (let ((vd (choose-database-for-instance instance database)))
456       (setf (slot-value instance 'view-database) vd)
457       (update-slot-from-db-value instance slot-def res))))
458
459
460 (defvar +no-slot-value+ '+no-slot-value+)
461
462 (defsql sql-slot-value (:symbol "slot-value") (classname slot &optional (value +no-slot-value+) (database *default-database*))
463         (let* ((class (find-class classname))
464                (sld (slotdef-for-slot-with-class slot class)))
465           (if sld
466               (if (eq value +no-slot-value+)
467                   (sql-expression :attribute (database-identifier sld database)
468                                   :table (view-table class))
469                   (db-value-from-slot
470                    sld
471                    value
472                    database))
473               (error "Unknown slot ~A for class ~A" slot classname))))
474
475 (defsql sql-view-class (:symbol "view-class") (classname &optional (database *default-database*))
476         (declare (ignore database))
477         (let* ((class (find-class classname)))
478           (unless (view-table class)
479             (error "No view-table for class ~A"  classname))
480           (sql-expression :table (view-table class))))
481
482 (deftype tinyint ()
483   "An 8-bit integer, this width may vary by SQL implementation."
484   'integer)
485
486 (deftype smallint ()
487   "An integer smaller than a 32-bit integer. this width may vary by SQL implementation."
488   'integer)
489
490 (deftype mediumint ()
491   "An integer smaller than a 32-bit integer, but may be larger than a smallint. This width may vary by SQL implementation."
492   'integer)
493
494 (deftype bigint ()
495   "An integer larger than a 32-bit integer, this width may vary by SQL implementation."
496   'integer)
497
498 (deftype varchar (&optional size)
499   "A variable length string for the SQL varchar type."
500   (declare (ignore size))
501   'string)
502
503 (deftype universal-time ()
504   "A positive integer as returned by GET-UNIVERSAL-TIME."
505   '(integer 1 *))
506
507 (deftype generalized-boolean ()
508   "A type which outputs a SQL boolean value, though any lisp type can be stored in the slot."
509   t)
510
511 #+ignore
512 (deftype char (&optional len)
513   "A lisp type for the SQL CHAR type."
514   `(string ,len))
515
516 (defmethod database-get-type-specifier ((type string) args database (db-type t))
517   "Pass through the literal type as defined in the type string"
518   (declare (ignore args database db-type))
519   type)
520
521
522 (defmethod database-get-type-specifier ((type symbol) args database db-type)
523   (case type
524     (char (if args
525               (format nil "CHAR(~D)" (first args))
526               "CHAR(1)"))
527     ((varchar string)
528      (if args
529          (format nil "VARCHAR(~A)" (car args))
530          (format nil "VARCHAR(~D)" *default-string-length*)))
531     ((longchar text) "text")
532     (integer (if args
533                  (format nil "INT(~A)" (car args))
534                  "INT"))
535     ((tinyint smallint mediumint) "INT")
536     ((long-float float)
537      (if args
538          (format nil "FLOAT(~A)" (car args))
539          "FLOAT"))
540     ((bigint universal-time) "BIGINT")
541     (number
542      (cond
543        ((and (consp args) (= (length args) 2))
544         (format nil "NUMBER(~D,~D)" (first args) (second args)))
545        ((and (consp args) (= (length args) 1))
546         (format nil "NUMBER(~D)" (first args)))
547        (t
548         "NUMBER")))
549     (wall-time "TIMESTAMP")
550     (date "DATE")
551     (duration "VARCHAR")
552     (money "INT8")
553     ((boolean generalized-boolean) "BOOL")
554     (t (warn "Could not determine a valid ~A type specifier for ~A ~A ~A, defaulting to VARCHAR "
555              db-type type args database)
556      (format nil "VARCHAR(~D)" *default-string-length*))))
557
558 (defmethod database-output-sql-as-type (type val database db-type)
559   (declare (ignore type database db-type))
560   val)
561
562 (defmethod database-output-sql-as-type ((type symbol) val database db-type)
563   (declare (ignore database))
564   (case type ;; booleans handle null differently
565     ((boolean generalized-boolean)
566      (case db-type
567        ;; done here so it can be done once
568        ((:mssql :mysql) (if val 1 0))
569        (otherwise (if val "t" "f"))))
570     (otherwise
571      ;; in all other cases if we have nil give everyone else a shot at it,
572      ;; which by default returns nil
573      (if (null val)
574          (call-next-method)
575          (case type
576            (symbol
577             (format nil "~A::~A"
578                     (package-name (symbol-package val))
579                     (symbol-name val)))
580            (keyword (symbol-name val))
581            (string val)
582            (char (etypecase val
583                    (character (write-to-string val))
584                    (string val)))
585            (float (format nil "~F" val))
586            ((list vector array)
587             (let* ((*print-circle* t)
588                    (*print-array* t)
589                    (*print-length* nil)
590                    (value (prin1-to-string val)))
591               value))
592            (otherwise (call-next-method)))))))
593
594 (defmethod read-sql-value (val type database db-type
595                            &aux *read-eval*)
596   (declare (ignore database db-type))
597   ;; TODO: All the read-from-strings in here do not check that
598   ;; what we read was of the correct type, should this change?
599
600   ;; TODO: Should this case `(typep val type)=>t` be an around
601   ;; method that short ciruits?
602   (cond
603     ((null type) val) ;;we have no desired type, just give the value
604     ((typep val type) val) ;;check that it hasn't already been converted.
605     ((typep val 'string) (read-from-string val)) ;;maybe read will just take care of it?
606     (T (error "Unable to read-sql-value ~a as type ~a" val type))))
607
608 (defmethod read-sql-value (val (type symbol) database db-type
609                            ;; never eval while reading values
610                            &aux *read-eval*)
611   ;; TODO: All the read-from-strings in here do not check that
612   ;; what we read was of the correct type, should this change?
613   (unless (or (equalp "nil" val) (eql 'null val))
614     (case type
615       ((string varchar) val)
616       (char (etypecase val
617               (string (schar val 0))
618               (character val)))
619       (keyword
620        (when (< 0 (length val))
621          (intern (symbol-name-default-case val) :keyword)))
622       (symbol
623        (when (< 0 (length val))
624          (intern (symbol-name-default-case val))))
625       ((smallint mediumint bigint integer universal-time)
626        (etypecase val
627          (string (parse-integer val))
628          (number val)))
629       ((double-float float)
630        ;; ensure that whatever we got is coerced to a float of the correct
631        ;; type (eg: 1=>1.0d0)
632        (float
633         (etypecase val
634           (string (let ((*read-default-float-format*
635                           (ecase type
636                             (float 'single-float)
637                             (double-float 'double-float))))
638                     (read-from-string val)))
639           (float val))
640         (if (eql type 'double-float) 1.0d0 1.0s0)))
641       (number
642        (etypecase val
643          (string (read-from-string val))
644          (number val)))
645       ((boolean generalized-boolean)
646        (if (member val '(nil t))
647            val
648            (etypecase val
649              (string
650               (when (member val '("1" "t" "true" "y") :test #'string-equal)
651                 t))
652              (number (not (zerop val))))))
653       ((wall-time duration)
654        (parse-timestring val))
655       (date
656        (parse-datestring val))
657       (t (call-next-method)))))
658
659 ;; ------------------------------------------------------------
660 ;; Logic for 'faulting in' :join slots
661
662 ;; this works, but is inefficient requiring (+ 1 n-rows)
663 ;; SQL queries
664 #+ignore
665 (defun fault-join-target-slot (class object slot-def)
666   (let* ((res (fault-join-slot-raw class object slot-def))
667          (dbi (view-class-slot-db-info slot-def))
668          (target-name (gethash :target-slot dbi))
669          (target-class (find-class target-name)))
670     (when res
671       (mapcar (lambda (obj)
672                 (list
673                  (car
674                   (fault-join-slot-raw
675                    target-class
676                    obj
677                    (find target-name (class-slots (class-of obj))
678                          :key #'slot-definition-name)))
679                  obj))
680               res)
681       #+ignore ;; this doesn't work when attempting to call slot-value
682       (mapcar (lambda (obj)
683                 (cons obj (slot-value obj ts))) res))))
684
685 (defun fault-join-target-slot (class object slot-def)
686   (let* ((dbi (view-class-slot-db-info slot-def))
687          (ts (gethash :target-slot dbi))
688          (jc  (gethash :join-class dbi))
689          (jc-view-table (view-table (find-class jc)))
690          (tdbi (view-class-slot-db-info
691                 (find ts (class-slots (find-class jc))
692                       :key #'slot-definition-name)))
693          (retrieval (gethash :retrieval tdbi))
694          (tsc (gethash :join-class tdbi))
695          (ts-view-table (view-table (find-class tsc)))
696          (jq (join-qualifier class object slot-def))
697          (key (slot-value object (gethash :home-key dbi))))
698
699     (when jq
700       (ecase retrieval
701         (:immediate
702          (let ((res
703                 (find-all (list tsc)
704                           :inner-join (sql-expression :table jc-view-table)
705                           :on (sql-operation
706                                '==
707                                (sql-expression
708                                 :attribute (gethash :foreign-key tdbi)
709                                 :table ts-view-table)
710                                (sql-expression
711                                 :attribute (gethash :home-key tdbi)
712                                 :table jc-view-table))
713                           :where jq
714                           :result-types :auto
715                           :database (choose-database-for-instance object))))
716            (mapcar #'(lambda (i)
717                        (let* ((instance (car i))
718                               (jcc (make-instance jc :view-database (choose-database-for-instance instance))))
719                          (setf (slot-value jcc (gethash :foreign-key dbi))
720                                key)
721                          (setf (slot-value jcc (gethash :home-key tdbi))
722                                (slot-value instance (gethash :foreign-key tdbi)))
723                          (list instance jcc)))
724                    res)))
725         (:deferred
726          ;; just fill in minimal slots
727          (mapcar
728           #'(lambda (k)
729               (let ((instance (make-instance tsc :view-database (choose-database-for-instance object)))
730                     (jcc (make-instance jc :view-database (choose-database-for-instance object)))
731                     (fk (car k)))
732                 (setf (slot-value instance (gethash :home-key tdbi)) fk)
733                 (setf (slot-value jcc (gethash :foreign-key dbi))
734                       key)
735                 (setf (slot-value jcc (gethash :home-key tdbi))
736                       fk)
737                 (list instance jcc)))
738           (select (sql-expression :attribute (gethash :foreign-key tdbi) :table jc-view-table)
739                   :from (sql-expression :table jc-view-table)
740                   :where jq
741                   :database (choose-database-for-instance object))))))))
742
743
744 ;;; Remote Joins
745
746 (defvar *default-update-objects-max-len* nil
747   "The default value to use for the MAX-LEN keyword argument to
748   UPDATE-OBJECT-JOINS.")
749
750 (defun %update-objects-joins-slot-defs (class slot-names)
751   "Get the slot definitions for the joins slots specified as slot-names
752    if slot-names is :immediate, :deferred or (or :all t) return all of
753    that type of slot definitions"
754   (setf class (to-class class))
755   (when (eq t slot-names) (setf slot-names :all))
756   (etypecase slot-names
757     (null nil)
758     (keyword
759      ;; slot-names is the retrieval type of the join-slot or :all
760      (get-join-slots class slot-names))
761     ((or symbol list)
762      (loop for slot in (listify slot-names)
763            for def = (find-slot-by-name class slot)
764            when (and def (join-slot-p def))
765            collecting def
766            unless (and def (join-slot-p def))
767            do (warn "Unable to find join slot named ~S in class ~S." slot class)))))
768
769 (defun get-joined-objects (objects slotdef &key force-p
770                                            (batch-size *default-update-objects-max-len*))
771   "Given a list of objects and a join slot-def get the objects that need to be
772    joined to the input objects
773
774    we will query in batches as large as batch-size"
775   (when (join-slot-p slotdef)
776     (let* ((slot-name (to-slot-name slotdef))
777            (join-class (join-slot-class-name slotdef))
778            (home-key (join-slot-info-value slotdef :home-key))
779            (foreign-key (join-slot-info-value slotdef :foreign-key))
780            (foreign-key-values
781              (remove-duplicates
782               (loop for object in (listify objects)
783                     for hk = (slot-value object home-key)
784                     when (or force-p
785                              (not (slot-boundp object slot-name)))
786                     collect hk)
787               :test #'equal)))
788       ;; we want to retrieve at most batch-size objects per query
789       (flet ((fetch (keys)
790                (find-all
791                 (list join-class)
792                 :where (make-instance
793                         'sql-relational-exp
794                         :operator 'in
795                         :sub-expressions (list (sql-expression :attribute foreign-key)
796                                                keys))
797                 :result-types :auto
798                 :flatp t)))
799         (if (null batch-size)
800             (fetch foreign-key-values)
801             (loop
802               for keys = (pop-n foreign-key-values batch-size)
803               while keys
804               nconcing (fetch keys)))))))
805
806 (defun %object-joins-from-list (object slot joins force-p )
807   "Given a list of objects that we are trying to join to, pull the correct
808    ones for this object"
809   (when (or force-p (not (slot-boundp object (to-slot-name slot))))
810     (let ((home-key (join-slot-info-value slot :home-key))
811           (foreign-key (join-slot-info-value slot :foreign-key)))
812       (loop for join in joins
813             when (equal (slot-value join foreign-key)
814                         (slot-value object home-key))
815             collect join))))
816
817 (defun update-objects-joins (objects &key (slots :immediate) (force-p t)
818                                      class-name (max-len *default-update-objects-max-len*))
819   "Updates from the records of the appropriate database tables the join slots
820    specified by SLOTS in the supplied list of View Class instances OBJECTS.
821
822    A simpler method of causing a join-slot to be requeried is to set it to
823    unbound, then request it again.  This function has efficiency gains where
824    join-objects are shared among the `objects` (querying all join-objects,
825    then attaching them appropriately to each of the `objects`)
826
827    SLOTS can be one of:
828
829     * :immediate (DEFAULT) - refresh join slots created with :retrieval :immediate
830     * :deferred - refresh join slots created with :retrieval :deferred
831     * :all,t - refresh all join slots regardless of :retrieval
832     * list of symbols - which explicit slots to refresh
833     * a single symobl - what slot to refresh
834
835    CLASS-NAME is used to specify the View Class of all instance in OBJECTS and
836    default to nil which means that the class of the first instance in OBJECTS
837    is used.
838
839    FORCE-P is t by default which means that all join slots are updated whereas
840    a value of nil means that only unbound join slots are updated.
841
842    MAX-LEN defaults to *DEFAULT-UPDATE-OBJECTS-MAX-LEN* When non-nil this is
843    essentially a batch size for the max number of objects to query from the
844    database at a time.  If we need more than max-len we loop till we have all
845    the objects"
846   (assert (or (null max-len) (plusp max-len)))
847   (when objects
848     (defaulting class-name (class-name (class-of (first objects))))
849     (let* ((class (find-class class-name))
850            (slotdefs (%update-objects-joins-slot-defs class slots)))
851       (loop for slotdef in slotdefs
852             ;; all the joins we will need for *all* the objects
853             ;; which then get filtered below for each object
854             for joins = (unless (join-slot-info-value slotdef :target-slot)
855                           (get-joined-objects objects slotdef
856                                               :force-p force-p :batch-size max-len))
857             do (loop for object in objects
858                      for these-joins = ;; the joins just for this object (filtered from above)
859                                        ;; or retrieved via fault-join-target-slot
860                         (or (%object-joins-from-list object slotdef joins force-p)
861                             (when (join-slot-info-value slotdef :target-slot)
862                               (fault-join-target-slot class object slotdef)))
863                      ;; when this object has joined-objects copy them in to the correct slot
864                      do (when these-joins
865                           (setf (easy-slot-value object slotdef)
866                                 (if (join-slot-info-value slotdef :set)
867                                     these-joins
868                                     (first these-joins))))))))
869   (values))
870
871 (defun fault-join-slot-raw (class object slot-def)
872   (let* ((dbi (view-class-slot-db-info slot-def))
873          (jc (gethash :join-class dbi)))
874     (let ((jq (join-qualifier class object slot-def)))
875       (when jq
876         (select jc :where jq :flatp t :result-types nil
877                 :database (choose-database-for-instance object))))))
878
879 (defun fault-join-slot (class object slot-def)
880   (let* ((dbi (view-class-slot-db-info slot-def))
881          (ts (gethash :target-slot dbi))
882          (dbi-set (gethash :set dbi)))
883     (if (and ts dbi-set)
884         (fault-join-target-slot class object slot-def)
885         (let ((res (fault-join-slot-raw class object slot-def)))
886           (when res
887             (cond
888               ((and ts (not dbi-set))
889                (mapcar (lambda (obj) (slot-value obj ts)) res))
890               ((and (not ts) (not dbi-set))
891                (car res))
892               ((and (not ts) dbi-set)
893                res)))))))
894
895 (defun update-fault-join-normalized-slot (class object slot-def)
896   (if (and (normalizedp class) (key-slot-p slot-def))
897       (setf (easy-slot-value object slot-def)
898             (normalized-key-value object))
899       (update-slot-from-record object slot-def)))
900
901 (defun all-home-keys-have-values-p (object slot-def)
902   "Do all of the home-keys have values ?"
903   (let ((home-keys (join-slot-info-value slot-def :home-key)))
904     (loop for key in (listify home-keys)
905           always (easy-slot-value object key))))
906
907 (defun join-qualifier (class object slot-def)
908   "Builds the join where clause based on the keys of the join slot and values
909    of the object"
910   (declare (ignore class))
911   (let* ((jc (join-slot-class slot-def))
912          ;;(ts (gethash :target-slot dbi))
913          ;;(tsdef (if ts (slotdef-for-slot-with-class ts jc)))
914          (foreign-keys (listify (join-slot-info-value slot-def :foreign-key)))
915          (home-keys (listify (join-slot-info-value slot-def :home-key))))
916     (when (all-home-keys-have-values-p object slot-def)
917       (clsql-ands
918        (loop for hk in home-keys
919              for fk in foreign-keys
920              for fksd = (slotdef-for-slot-with-class fk jc)
921              for fk-sql = (typecase fk
922                             (symbol
923                              (sql-expression
924                               :attribute (database-identifier fksd nil)
925                               :table (database-identifier jc nil)))
926                             (t fk))
927              for hk-val = (typecase hk
928                             ((or symbol
929                                  view-class-effective-slot-definition
930                                  view-class-direct-slot-definition)
931                              (easy-slot-value object hk))
932                             (t hk))
933              collect (sql-operation '== fk-sql hk-val))))))
934
935 (defmethod select-table-sql-expr ((table T))
936   "Turns an object representing a table into the :from part of the sql expression that will be executed "
937   (sql-expression :table (view-table table)))
938
939 (defun select-reference-equal (r1 r2)
940   "determines if two sql select references are equal
941    using database identifier equal"
942   (flet ((id-of (r)
943            (etypecase r
944              (cons (cdr r))
945              (sql-ident-attribute r))))
946     (database-identifier-equal (id-of r1) (id-of r2))))
947
948 (defun join-slot-qualifier (class join-slot)
949   "Creates a sql-expression expressing the join between the home-key on the table
950    and its respective key on the joined-to-table"
951   (sql-operation
952    '==
953    (sql-expression
954     :attribute (join-slot-info-value join-slot :foreign-key)
955     :table (view-table (join-slot-class join-slot)))
956    (sql-expression
957     :attribute (join-slot-info-value join-slot :home-key)
958     :table (view-table class))))
959
960 (defun all-immediate-join-classes-for (classes)
961   "returns a list of all join-classes needed for a list of classes"
962   (loop for class in (listify classes)
963         appending (loop for slot in (immediate-join-slots class)
964                         collect (join-slot-class slot))))
965
966 (defun %tables-for-query (classes from where inner-joins)
967   "Given lists of classes froms wheres and inner-join compile a list
968    of tables that should appear in the FROM section of the query.
969
970    This includes any immediate join classes from each of the classes"
971   (let ((inner-join-tables (collect-table-refs (listify inner-joins))))
972     (loop for tbl in (append
973                       (mapcar #'select-table-sql-expr classes)
974                       (mapcar #'select-table-sql-expr
975                               (all-immediate-join-classes-for classes))
976                       (collect-table-refs (listify where))
977                       (collect-table-refs (listify from)))
978           when (and tbl
979                     (not (find tbl rtn :test #'database-identifier-equal))
980                     ;; TODO: inner-join is currently hacky as can be
981                     (not (find tbl inner-join-tables :test #'database-identifier-equal)))
982           collect tbl into rtn
983           finally (return rtn))))
984
985
986 (defclass select-list ()
987   ((view-class :accessor view-class :initarg :view-class :initform nil)
988    (select-list :accessor select-list :initarg :select-list :initform nil)
989    (slot-list :accessor slot-list :initarg :slot-list :initform nil)
990    (joins :accessor joins :initarg :joins :initform nil)
991    (join-slots :accessor join-slots :initarg :join-slots :initform nil))
992   (:documentation
993    "Collects the classes, slots and their respective sql representations
994     so that update-instance-from-recors, find-all, build-objects can share this
995     info and calculate it once.  Joins are select-lists for each immediate join-slot
996     but only if make-select-list is called with do-joins-p"))
997
998 (defmethod view-table ((o select-list))
999   (view-table (view-class o)))
1000
1001 (defmethod sql-table ((o select-list))
1002   (sql-expression :table (view-table o)))
1003
1004 (defmethod filter-select-list ((c clsql-sys::standard-db-object)
1005                                (sl clsql-sys::select-list)
1006                                database)
1007   sl)
1008
1009 (defun make-select-list (class-and-slots &key (do-joins-p nil)
1010                                          (database *default-database*))
1011   "Make a select-list for the current class (or class-and-slots) object."
1012   (let* ((class-and-slots
1013            (etypecase class-and-slots
1014              (class-and-slots class-and-slots)
1015              ((or symbol standard-db-class)
1016               ;; find the first class with slots for us to select (this should be)
1017               ;; the first of its classes / parent-classes with slots
1018               (first (reverse (view-classes-and-storable-slots
1019                                (to-class class-and-slots)
1020                                 :to-database-p nil))))))
1021          (class (view-class class-and-slots))
1022          (join-slots (when do-joins-p (immediate-join-slots class))))
1023     (multiple-value-bind (slots sqls)
1024         (loop for slot in (slot-defs class-and-slots)
1025               for sql = (generate-attribute-reference class slot)
1026               collect slot into slots
1027               collect sql into sqls
1028               finally (return (values slots sqls)))
1029       (unless slots
1030         (error "No slots of type :base in view-class ~A" (class-name class)))
1031       (let ((sl (make-instance
1032                  'select-list
1033                  :view-class class
1034                  :select-list sqls
1035                  :slot-list slots
1036                  :join-slots join-slots
1037                  ;; only do a single layer of join objects
1038                  :joins (when do-joins-p
1039                           (loop for js in join-slots
1040                                 collect (make-select-list
1041                                          (join-slot-class js)
1042                                          :do-joins-p nil
1043                                          :database database))))))
1044         (filter-select-list (make-instance class) sl database)
1045         sl))))
1046
1047 (defun full-select-list ( select-lists )
1048   "Returns a list of sql-ref of things to select for the given classes
1049
1050    THIS NEEDS TO MATCH THE ORDER OF build-objects
1051   "
1052   (loop for s in (listify select-lists)
1053         appending (select-list s)
1054         appending (loop for join in (joins s)
1055                         appending (select-list join))))
1056
1057 (defun build-objects (select-lists row database &optional existing-instances)
1058   "Used by find-all to build objects.
1059
1060    THIS NEEDS TO MATCH THE ORDER OF FULL-SELECT-LIST
1061
1062    TODO: this caching scheme seems bad for a number of reasons
1063     * order is not guaranteed so references being held by one object
1064       might change to represent a different database row (seems HIGHLY
1065       suspect)
1066     * also join objects are overwritten rather than refreshed
1067
1068    TODO: the way we handle immediate joins seems only valid if it is a single
1069       object.  I suspect that making a :set :immediate join column would result
1070       in an invalid number of objects returned from the database, because there
1071       would be multiple rows per object, but we would return an object per row
1072    "
1073   (setf existing-instances (listify existing-instances))
1074   (loop
1075     for select-list in select-lists
1076     for class = (view-class select-list)
1077     for existing = (pop existing-instances)
1078     for object = (or existing
1079                      (make-instance class :view-database database))
1080     do (loop for slot in (slot-list select-list)
1081              do (update-slot-from-db-value object slot (pop row)))
1082     do (loop for join-slot in (join-slots select-list)
1083              for join in (joins select-list)
1084              for join-class = (view-class join)
1085              for join-object =
1086                 (setf (easy-slot-value object join-slot)
1087                       (make-instance join-class))
1088              do (loop for slot in (slot-list join)
1089                       do (update-slot-from-db-value join-object slot (pop row))))
1090     do (when existing (instance-refreshed object))
1091         collect object))
1092
1093 (defun find-all (view-classes
1094                  &rest args
1095                  &key all set-operation distinct from where group-by having
1096                  order-by offset limit refresh flatp result-types
1097                  inner-join on
1098                  (database *default-database*)
1099                  instances parameters)
1100   "Called by SELECT to generate object query results when the
1101   View Classes VIEW-CLASSES are passed as arguments to SELECT.
1102
1103    TODO: the caching scheme of passing in instances and overwriting their
1104          values seems bad for a number of reasons
1105     * order is not guaranteed so references being held by one object
1106       might change to represent a different database row (seems HIGHLY
1107       suspect)
1108
1109    TODO: the way we handle immediate joins seems only valid if it is a single
1110       object.  I suspect that making a :set :immediate join column would result
1111       in an invalid number of objects returned from the database, because there
1112       would be multiple objects returned from the database
1113   "
1114   (declare (ignore all set-operation group-by having offset limit on parameters
1115                    distinct order-by)
1116            (dynamic-extent args))
1117   (let* ((args (filter-plist
1118                 args :from :where :flatp :additional-fields :result-types :instances))
1119          (*db-deserializing* t)
1120          (sclasses (mapcar #'to-class view-classes))
1121          (tables (%tables-for-query sclasses from where inner-join))
1122          (join-where
1123            (loop for class in sclasses
1124                  appending (loop for slot in (immediate-join-slots class)
1125                                  collect (join-slot-qualifier class slot))))
1126          (select-lists (loop for class in sclasses
1127                              collect (make-select-list class :do-joins-p t :database database)))
1128          (full-select-list (full-select-list select-lists))
1129          (where (clsql-ands (append (listify where) (listify join-where))))
1130          #|
1131           (_ (format t "~&sclasses: ~W~%ijc: ~W~%tables: ~W~%"
1132                     sclasses immediate-join-classes tables))
1133          |#
1134          (rows (apply #'select
1135                       (append full-select-list
1136                               (list :from tables
1137                                     :result-types result-types
1138                                     :where where)
1139                               args)))
1140          (return-objects
1141            (loop for row in rows
1142                  for old-objs = (pop instances)
1143                  for objs = (build-objects select-lists row database
1144                                            (when refresh old-objs))
1145                  collecting (if flatp
1146                                 (delist-if-single objs)
1147                                 objs))))
1148     return-objects))
1149
1150 (defmethod instance-refreshed ((instance standard-db-object)))
1151
1152 (defvar *default-caching* t
1153   "Controls whether SELECT caches objects by default. The CommonSQL
1154 specification states caching is on by default.")
1155
1156 (defun select (&rest select-all-args)
1157   "Executes a query on DATABASE, which has a default value of
1158 *DEFAULT-DATABASE*, specified by the SQL expressions supplied
1159 using the remaining arguments in SELECT-ALL-ARGS. The SELECT
1160 argument can be used to generate queries in both functional and
1161 object oriented contexts.
1162
1163 In the functional case, the required arguments specify the
1164 columns selected by the query and may be symbolic SQL expressions
1165 or strings representing attribute identifiers. Type modified
1166 identifiers indicate that the values selected from the specified
1167 column are converted to the specified lisp type. The keyword
1168 arguments ALL, DISTINCT, FROM, GROUP-by, HAVING, ORDER-BY,
1169 SET-OPERATION and WHERE are used to specify, using the symbolic
1170 SQL syntax, the corresponding components of the SQL query
1171 generated by the call to SELECT. RESULT-TYPES is a list of
1172 symbols which specifies the lisp type for each field returned by
1173 the query. If RESULT-TYPES is nil all results are returned as
1174 strings whereas the default value of :auto means that the lisp
1175 types are automatically computed for each field. FIELD-NAMES is t
1176 by default which means that the second value returned is a list
1177 of strings representing the columns selected by the query. If
1178 FIELD-NAMES is nil, the list of column names is not returned as a
1179 second value.
1180
1181 In the object oriented case, the required arguments to SELECT are
1182 symbols denoting View Classes which specify the database tables
1183 to query. In this case, SELECT returns a list of View Class
1184 instances whose slots are set from the attribute values of the
1185 records in the specified table. Slot-value is a legal operator
1186 which can be employed as part of the symbolic SQL syntax used in
1187 the WHERE keyword argument to SELECT. REFRESH is nil by default
1188 which means that the View Class instances returned are retrieved
1189 from a cache if an equivalent call to SELECT has previously been
1190 issued. If REFRESH is true, the View Class instances returned are
1191 updated as necessary from the database and the generic function
1192 INSTANCE-REFRESHED is called to perform any necessary operations
1193 on the updated instances.
1194
1195 In both object oriented and functional contexts, FLATP has a
1196 default value of nil which means that the results are returned as
1197 a list of lists. If FLATP is t and only one result is returned
1198 for each record selected in the query, the results are returned
1199 as elements of a list."
1200   (multiple-value-bind (target-args qualifier-args)
1201       (query-get-selections select-all-args)
1202     (unless (or *default-database* (getf qualifier-args :database))
1203       (signal-no-database-error nil))
1204
1205     (let ((caching (getf qualifier-args :caching *default-caching*))
1206           (result-types (getf qualifier-args :result-types :auto))
1207           (refresh (getf qualifier-args :refresh nil))
1208           (database (getf qualifier-args :database *default-database*)))
1209
1210       (cond
1211         ((and target-args
1212               (every #'(lambda (arg)
1213                          (and (symbolp arg)
1214                               (find-class arg nil)))
1215                      target-args))
1216
1217          (setf qualifier-args (filter-plist qualifier-args :caching :refresh :result-types))
1218
1219          ;; Add explicity table name to order-by if not specified and only
1220          ;; one selected table. This is required so FIND-ALL won't duplicate
1221          ;; the field
1222          (let ((order-by (getf qualifier-args :order-by)))
1223            (when (and order-by (= 1 (length target-args)))
1224              (let ((table-name (view-table (find-class (car target-args))))
1225                    (order-by-list (copy-seq (listify order-by))))
1226                (labels ((sv (val name) (ignore-errors (slot-value val name)))
1227                         (set-table-if-needed (val)
1228                           (typecase val
1229                             (sql-ident-attribute
1230                              (handler-case
1231                                  (if (sv val 'qualifier)
1232                                      val
1233                                      (make-instance 'sql-ident-attribute
1234                                                     :name (sv val 'name)
1235                                                     :qualifier table-name))
1236                                (simple-error ()
1237                                  ;; TODO: Check for a specific error we expect
1238                                  )))
1239                             (cons (cons (set-table-if-needed (car val))
1240                                         (cdr val)))
1241                             (t val))))
1242                  (setf order-by-list
1243                        (loop for i from 0 below (length order-by-list)
1244                              for id in order-by-list
1245                              collect (set-table-if-needed id))))
1246                (setf (getf qualifier-args :order-by) order-by-list))))
1247
1248          (cond
1249            ((null caching)
1250             (apply #'find-all target-args :result-types result-types :refresh refresh qualifier-args))
1251            (t
1252             (let ((cached (records-cache-results target-args qualifier-args database)))
1253               (if (and cached (not refresh))
1254                   cached
1255                   (let ((results (apply #'find-all target-args
1256                                         :result-types :auto :refresh refresh
1257                                         :instances cached
1258                                         qualifier-args)))
1259                     (setf (records-cache-results target-args qualifier-args database) results)
1260
1261                     results))))))
1262         (t
1263          (let* ((expr (apply #'make-query select-all-args))
1264                 (parameters (second (member :parameters select-all-args)))
1265                 (specified-types
1266                   (mapcar #'(lambda (attrib)
1267                               (if (typep attrib 'sql-ident-attribute)
1268                                   (let ((type (slot-value attrib 'type)))
1269                                     (if type
1270                                         type
1271                                         t))
1272                                   t))
1273                           (slot-value expr 'selections)))
1274                 (flatp (getf qualifier-args :flatp))
1275                 (field-names (getf qualifier-args :field-names t)))
1276
1277            (when parameters
1278              (setf expr (command-object (sql-output expr database) parameters)))
1279            (query expr :flatp flatp
1280                        :result-types
1281                        ;; specifying a type for an attribute overrides result-types
1282                        (if (some #'(lambda (x) (not (eq t x))) specified-types)
1283                            specified-types
1284                            result-types)
1285                        :field-names field-names
1286                        :database database)))))))
1287
1288 (defun compute-records-cache-key (targets qualifiers)
1289   (list targets
1290         (do ((args *select-arguments* (cdr args))
1291              (results nil))
1292             ((null args) results)
1293           (let* ((arg (car args))
1294                  (value (getf qualifiers arg)))
1295             (when value
1296               (push (list arg
1297                           (typecase value
1298                             (cons (cons (sql (car value)) (cdr value)))
1299                             (%sql-expression (sql value))
1300                             (t value)))
1301                     results))))))
1302
1303 (defun records-cache-results (targets qualifiers database)
1304   (when (record-caches database)
1305     (gethash (compute-records-cache-key targets qualifiers) (record-caches database))))
1306
1307 (defun (setf records-cache-results) (results targets qualifiers database)
1308   (unless (record-caches database)
1309     (setf (record-caches database)
1310           (make-weak-hash-table :test 'equal)))
1311   (setf (gethash (compute-records-cache-key (copy-list targets) qualifiers)
1312                  (record-caches database)) results)
1313   results)
1314
1315
1316
1317 ;;; Serialization functions
1318
1319 (defun write-instance-to-stream (obj stream)
1320   "Writes an instance to a stream where it can be later be read.
1321 NOTE: an error will occur if a slot holds a value which can not be written readably."
1322   (let* ((class (class-of obj))
1323          (alist '()))
1324     (dolist (slot (ordered-class-slots (class-of obj)))
1325       (let ((name (slot-definition-name slot)))
1326         (when (and (not (eq 'view-database name))
1327                    (slot-boundp obj name))
1328           (push (cons name (slot-value obj name)) alist))))
1329     (setq alist (reverse alist))
1330     (write (cons (class-name class) alist) :stream stream :readably t))
1331   obj)
1332
1333 (defun read-instance-from-stream (stream)
1334   (let ((raw (read stream nil nil)))
1335     (when raw
1336       (let ((obj (make-instance (car raw))))
1337         (dolist (pair (cdr raw))
1338           (setf (slot-value obj (car pair)) (cdr pair)))
1339         obj))))