Added tests for symbols valued slots, and better printer/reader bindings
[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 symbol keyword)
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 (defun print-readable-symbol (in &aux (*package* (find-package :keyword))
559                                  (*print-readably* t))
560   (prin1-to-string in))
561
562 (defmethod database-output-sql-as-type
563     (type val database db-type
564      &aux
565      (*print-circle* t) (*print-array* t)
566      (*print-length* nil) (*print-base* #10r10))
567   (declare (ignore database))
568   (cond 
569     ((null type) val)
570     ((member type '(boolean generalized-boolean))
571      ;; booleans handle null differently
572      (case db-type
573        ;; done here so it can be done once
574        ((:mssql :mysql) (if val 1 0))
575        (otherwise (if val "t" "f"))))
576     ((null val)
577      (when (next-method-p)
578        (call-next-method)))
579     (t
580      (case type
581        ((or symbol keyword)
582         (print-readable-symbol val))
583        (string val)
584        (char (etypecase val
585                (character (write-to-string val))
586                (string val)))
587        (float (format nil "~F" val))
588        ((list vector array)
589         (prin1-to-string val))
590        (otherwise
591         (if (next-method-p)
592             (call-next-method)
593             val))))))
594
595
596 (defmethod read-sql-value :around
597     (val type database db-type
598      ;; never eval while reading values, always read base 10
599      &aux *read-eval* (*read-base* #10r10))
600   (declare (ignore db-type))
601   (cond
602     ;; null value or type
603     ((or (equalp "nil" val) (eql 'null val)) nil) 
604     
605     ;; no specified type or already the right type
606     ((or (null type)
607          (ignore-errors (typep val type)))
608      val)
609
610     ;; actually convert
611     (t 
612      (let ((res (handler-bind
613                     ;; all errors should be converted to sql-value-conversion-error
614                     ((error (lambda (c)
615                               (when *debugger-hook*
616                                 (invoke-debugger c))
617                               (unless (typep c 'sql-value-conversion-error)
618                                 (error-converting-value val type database)))))
619                   (call-next-method))))
620        ;; if we didnt get the right type after converting, we should probably
621        ;; error right away
622        (maybe-error-converting-value
623         res val type database)))))
624
625 (defmethod read-sql-value (val type database db-type)
626   ;; errors, nulls and preconverted types are already handled in around
627   (typecase type
628     (symbol
629      (case type
630        ((string varchar) val)
631        (char (string (schar val 0)))
632        ((or keyword symbol)
633         (read-from-string val))
634        ((smallint mediumint bigint integer universal-time)
635         (parse-integer val))
636        ((double-float float)
637         ;; ensure that whatever we got is coerced to a float of the correct
638         ;; type (eg: 1=>1.0d0)
639         (float
640          (etypecase val
641            (string (let ((*read-default-float-format*
642                            (ecase type
643                              (float 'single-float)
644                              (double-float 'double-float))))
645                      (read-from-string val)))
646            ;; maybe wrong type of float
647            (float val)) 
648          (if (eql type 'double-float) 1.0d0 1.0s0)))
649        (number (read-from-string val))
650        ((boolean generalized-boolean)
651         (if (member val '(nil t))
652             val
653             (etypecase val
654               (string
655                (when (member val '("1" "t" "true" "y") :test #'string-equal)
656                  t))
657               (number (not (zerop val))))))
658        ((wall-time duration) (parse-timestring val))
659        (date (parse-datestring val))
660        (t (call-next-method))))
661     (t (typecase val
662          (string (read-from-string val))
663          (t (error-converting-value val type database))))))
664
665 ;; ------------------------------------------------------------
666 ;; Logic for 'faulting in' :join slots
667
668 ;; this works, but is inefficient requiring (+ 1 n-rows)
669 ;; SQL queries
670 #+ignore
671 (defun fault-join-target-slot (class object slot-def)
672   (let* ((res (fault-join-slot-raw class object slot-def))
673          (dbi (view-class-slot-db-info slot-def))
674          (target-name (gethash :target-slot dbi))
675          (target-class (find-class target-name)))
676     (when res
677       (mapcar (lambda (obj)
678                 (list
679                  (car
680                   (fault-join-slot-raw
681                    target-class
682                    obj
683                    (find target-name (class-slots (class-of obj))
684                          :key #'slot-definition-name)))
685                  obj))
686               res)
687       #+ignore ;; this doesn't work when attempting to call slot-value
688       (mapcar (lambda (obj)
689                 (cons obj (slot-value obj ts))) res))))
690
691 (defun fault-join-target-slot (class object slot-def)
692   (let* ((dbi (view-class-slot-db-info slot-def))
693          (ts (gethash :target-slot dbi))
694          (jc  (gethash :join-class dbi))
695          (jc-view-table (view-table (find-class jc)))
696          (tdbi (view-class-slot-db-info
697                 (find ts (class-slots (find-class jc))
698                       :key #'slot-definition-name)))
699          (retrieval (gethash :retrieval tdbi))
700          (tsc (gethash :join-class tdbi))
701          (ts-view-table (view-table (find-class tsc)))
702          (jq (join-qualifier class object slot-def))
703          (key (slot-value object (gethash :home-key dbi))))
704
705     (when jq
706       (ecase retrieval
707         (:immediate
708          (let ((res
709                 (find-all (list tsc)
710                           :inner-join (sql-expression :table jc-view-table)
711                           :on (sql-operation
712                                '==
713                                (sql-expression
714                                 :attribute (gethash :foreign-key tdbi)
715                                 :table ts-view-table)
716                                (sql-expression
717                                 :attribute (gethash :home-key tdbi)
718                                 :table jc-view-table))
719                           :where jq
720                           :result-types :auto
721                           :database (choose-database-for-instance object))))
722            (mapcar #'(lambda (i)
723                        (let* ((instance (car i))
724                               (jcc (make-instance jc :view-database (choose-database-for-instance instance))))
725                          (setf (slot-value jcc (gethash :foreign-key dbi))
726                                key)
727                          (setf (slot-value jcc (gethash :home-key tdbi))
728                                (slot-value instance (gethash :foreign-key tdbi)))
729                          (list instance jcc)))
730                    res)))
731         (:deferred
732          ;; just fill in minimal slots
733          (mapcar
734           #'(lambda (k)
735               (let ((instance (make-instance tsc :view-database (choose-database-for-instance object)))
736                     (jcc (make-instance jc :view-database (choose-database-for-instance object)))
737                     (fk (car k)))
738                 (setf (slot-value instance (gethash :home-key tdbi)) fk)
739                 (setf (slot-value jcc (gethash :foreign-key dbi))
740                       key)
741                 (setf (slot-value jcc (gethash :home-key tdbi))
742                       fk)
743                 (list instance jcc)))
744           (select (sql-expression :attribute (gethash :foreign-key tdbi) :table jc-view-table)
745                   :from (sql-expression :table jc-view-table)
746                   :where jq
747                   :database (choose-database-for-instance object))))))))
748
749
750 ;;; Remote Joins
751
752 (defvar *default-update-objects-max-len* nil
753   "The default value to use for the MAX-LEN keyword argument to
754   UPDATE-OBJECT-JOINS.")
755
756 (defun %update-objects-joins-slot-defs (class slot-names)
757   "Get the slot definitions for the joins slots specified as slot-names
758    if slot-names is :immediate, :deferred or (or :all t) return all of
759    that type of slot definitions"
760   (setf class (to-class class))
761   (when (eq t slot-names) (setf slot-names :all))
762   (etypecase slot-names
763     (null nil)
764     (keyword
765      ;; slot-names is the retrieval type of the join-slot or :all
766      (get-join-slots class slot-names))
767     ((or symbol list)
768      (loop for slot in (listify slot-names)
769            for def = (find-slot-by-name class slot)
770            when (and def (join-slot-p def))
771            collecting def
772            unless (and def (join-slot-p def))
773            do (warn "Unable to find join slot named ~S in class ~S." slot class)))))
774
775 (defun get-joined-objects (objects slotdef &key force-p
776                                            (batch-size *default-update-objects-max-len*))
777   "Given a list of objects and a join slot-def get the objects that need to be
778    joined to the input objects
779
780    we will query in batches as large as batch-size"
781   (when (join-slot-p slotdef)
782     (let* ((slot-name (to-slot-name slotdef))
783            (join-class (join-slot-class-name slotdef))
784            (home-key (join-slot-info-value slotdef :home-key))
785            (foreign-key (join-slot-info-value slotdef :foreign-key))
786            (foreign-key-values
787              (remove-duplicates
788               (loop for object in (listify objects)
789                     for hk = (slot-value object home-key)
790                     when (or force-p
791                              (not (slot-boundp object slot-name)))
792                     collect hk)
793               :test #'equal)))
794       ;; we want to retrieve at most batch-size objects per query
795       (flet ((fetch (keys)
796                (find-all
797                 (list join-class)
798                 :where (make-instance
799                         'sql-relational-exp
800                         :operator 'in
801                         :sub-expressions (list (sql-expression :attribute foreign-key)
802                                                keys))
803                 :result-types :auto
804                 :flatp t)))
805         (if (null batch-size)
806             (fetch foreign-key-values)
807             (loop
808               for keys = (pop-n foreign-key-values batch-size)
809               while keys
810               nconcing (fetch keys)))))))
811
812 (defun %object-joins-from-list (object slot joins force-p )
813   "Given a list of objects that we are trying to join to, pull the correct
814    ones for this object"
815   (when (or force-p (not (slot-boundp object (to-slot-name slot))))
816     (let ((home-key (join-slot-info-value slot :home-key))
817           (foreign-key (join-slot-info-value slot :foreign-key)))
818       (loop for join in joins
819             when (equal (slot-value join foreign-key)
820                         (slot-value object home-key))
821             collect join))))
822
823 (defun update-objects-joins (objects &key (slots :immediate) (force-p t)
824                                      class-name (max-len *default-update-objects-max-len*))
825   "Updates from the records of the appropriate database tables the join slots
826    specified by SLOTS in the supplied list of View Class instances OBJECTS.
827
828    A simpler method of causing a join-slot to be requeried is to set it to
829    unbound, then request it again.  This function has efficiency gains where
830    join-objects are shared among the `objects` (querying all join-objects,
831    then attaching them appropriately to each of the `objects`)
832
833    SLOTS can be one of:
834
835     * :immediate (DEFAULT) - refresh join slots created with :retrieval :immediate
836     * :deferred - refresh join slots created with :retrieval :deferred
837     * :all,t - refresh all join slots regardless of :retrieval
838     * list of symbols - which explicit slots to refresh
839     * a single symobl - what slot to refresh
840
841    CLASS-NAME is used to specify the View Class of all instance in OBJECTS and
842    default to nil which means that the class of the first instance in OBJECTS
843    is used.
844
845    FORCE-P is t by default which means that all join slots are updated whereas
846    a value of nil means that only unbound join slots are updated.
847
848    MAX-LEN defaults to *DEFAULT-UPDATE-OBJECTS-MAX-LEN* When non-nil this is
849    essentially a batch size for the max number of objects to query from the
850    database at a time.  If we need more than max-len we loop till we have all
851    the objects"
852   (assert (or (null max-len) (plusp max-len)))
853   (when objects
854     (defaulting class-name (class-name (class-of (first objects))))
855     (let* ((class (find-class class-name))
856            (slotdefs (%update-objects-joins-slot-defs class slots)))
857       (loop for slotdef in slotdefs
858             ;; all the joins we will need for *all* the objects
859             ;; which then get filtered below for each object
860             for joins = (unless (join-slot-info-value slotdef :target-slot)
861                           (get-joined-objects objects slotdef
862                                               :force-p force-p :batch-size max-len))
863             do (loop for object in objects
864                      for these-joins = ;; the joins just for this object (filtered from above)
865                                        ;; or retrieved via fault-join-target-slot
866                         (or (%object-joins-from-list object slotdef joins force-p)
867                             (when (join-slot-info-value slotdef :target-slot)
868                               (fault-join-target-slot class object slotdef)))
869                      ;; when this object has joined-objects copy them in to the correct slot
870                      do (when these-joins
871                           (setf (easy-slot-value object slotdef)
872                                 (if (join-slot-info-value slotdef :set)
873                                     these-joins
874                                     (first these-joins))))))))
875   (values))
876
877 (defun fault-join-slot-raw (class object slot-def)
878   (let* ((dbi (view-class-slot-db-info slot-def))
879          (jc (gethash :join-class dbi)))
880     (let ((jq (join-qualifier class object slot-def)))
881       (when jq
882         (select jc :where jq :flatp t :result-types nil
883                 :database (choose-database-for-instance object))))))
884
885 (defun fault-join-slot (class object slot-def)
886   (let* ((dbi (view-class-slot-db-info slot-def))
887          (ts (gethash :target-slot dbi))
888          (dbi-set (gethash :set dbi)))
889     (if (and ts dbi-set)
890         (fault-join-target-slot class object slot-def)
891         (let ((res (fault-join-slot-raw class object slot-def)))
892           (when res
893             (cond
894               ((and ts (not dbi-set))
895                (mapcar (lambda (obj) (slot-value obj ts)) res))
896               ((and (not ts) (not dbi-set))
897                (car res))
898               ((and (not ts) dbi-set)
899                res)))))))
900
901 (defun update-fault-join-normalized-slot (class object slot-def)
902   (if (and (normalizedp class) (key-slot-p slot-def))
903       (setf (easy-slot-value object slot-def)
904             (normalized-key-value object))
905       (update-slot-from-record object slot-def)))
906
907 (defun all-home-keys-have-values-p (object slot-def)
908   "Do all of the home-keys have values ?"
909   (let ((home-keys (join-slot-info-value slot-def :home-key)))
910     (loop for key in (listify home-keys)
911           always (easy-slot-value object key))))
912
913 (defun join-qualifier (class object slot-def)
914   "Builds the join where clause based on the keys of the join slot and values
915    of the object"
916   (declare (ignore class))
917   (let* ((jc (join-slot-class slot-def))
918          ;;(ts (gethash :target-slot dbi))
919          ;;(tsdef (if ts (slotdef-for-slot-with-class ts jc)))
920          (foreign-keys (listify (join-slot-info-value slot-def :foreign-key)))
921          (home-keys (listify (join-slot-info-value slot-def :home-key))))
922     (when (all-home-keys-have-values-p object slot-def)
923       (clsql-ands
924        (loop for hk in home-keys
925              for fk in foreign-keys
926              for fksd = (slotdef-for-slot-with-class fk jc)
927              for fk-sql = (typecase fk
928                             (symbol
929                              (sql-expression
930                               :attribute (database-identifier fksd nil)
931                               :table (database-identifier jc nil)))
932                             (t fk))
933              for hk-val = (typecase hk
934                             ((or symbol
935                                  view-class-effective-slot-definition
936                                  view-class-direct-slot-definition)
937                              (easy-slot-value object hk))
938                             (t hk))
939              collect (sql-operation '== fk-sql hk-val))))))
940
941 (defmethod select-table-sql-expr ((table T))
942   "Turns an object representing a table into the :from part of the sql expression that will be executed "
943   (sql-expression :table (view-table table)))
944
945 (defun select-reference-equal (r1 r2)
946   "determines if two sql select references are equal
947    using database identifier equal"
948   (flet ((id-of (r)
949            (etypecase r
950              (cons (cdr r))
951              (sql-ident-attribute r))))
952     (database-identifier-equal (id-of r1) (id-of r2))))
953
954 (defun join-slot-qualifier (class join-slot)
955   "Creates a sql-expression expressing the join between the home-key on the table
956    and its respective key on the joined-to-table"
957   (sql-operation
958    '==
959    (sql-expression
960     :attribute (join-slot-info-value join-slot :foreign-key)
961     :table (view-table (join-slot-class join-slot)))
962    (sql-expression
963     :attribute (join-slot-info-value join-slot :home-key)
964     :table (view-table class))))
965
966 (defun all-immediate-join-classes-for (classes)
967   "returns a list of all join-classes needed for a list of classes"
968   (loop for class in (listify classes)
969         appending (loop for slot in (immediate-join-slots class)
970                         collect (join-slot-class slot))))
971
972 (defun %tables-for-query (classes from where inner-joins)
973   "Given lists of classes froms wheres and inner-join compile a list
974    of tables that should appear in the FROM section of the query.
975
976    This includes any immediate join classes from each of the classes"
977   (let ((inner-join-tables (collect-table-refs (listify inner-joins))))
978     (loop for tbl in (append
979                       (mapcar #'select-table-sql-expr classes)
980                       (mapcar #'select-table-sql-expr
981                               (all-immediate-join-classes-for classes))
982                       (collect-table-refs (listify where))
983                       (collect-table-refs (listify from)))
984           when (and tbl
985                     (not (find tbl rtn :test #'database-identifier-equal))
986                     ;; TODO: inner-join is currently hacky as can be
987                     (not (find tbl inner-join-tables :test #'database-identifier-equal)))
988           collect tbl into rtn
989           finally (return rtn))))
990
991
992 (defclass select-list ()
993   ((view-class :accessor view-class :initarg :view-class :initform nil)
994    (select-list :accessor select-list :initarg :select-list :initform nil)
995    (slot-list :accessor slot-list :initarg :slot-list :initform nil)
996    (joins :accessor joins :initarg :joins :initform nil)
997    (join-slots :accessor join-slots :initarg :join-slots :initform nil))
998   (:documentation
999    "Collects the classes, slots and their respective sql representations
1000     so that update-instance-from-recors, find-all, build-objects can share this
1001     info and calculate it once.  Joins are select-lists for each immediate join-slot
1002     but only if make-select-list is called with do-joins-p"))
1003
1004 (defmethod view-table ((o select-list))
1005   (view-table (view-class o)))
1006
1007 (defmethod sql-table ((o select-list))
1008   (sql-expression :table (view-table o)))
1009
1010 (defmethod filter-select-list ((c clsql-sys::standard-db-object)
1011                                (sl clsql-sys::select-list)
1012                                database)
1013   sl)
1014
1015 (defun make-select-list (class-and-slots &key (do-joins-p nil)
1016                                          (database *default-database*))
1017   "Make a select-list for the current class (or class-and-slots) object."
1018   (let* ((class-and-slots
1019            (etypecase class-and-slots
1020              (class-and-slots class-and-slots)
1021              ((or symbol standard-db-class)
1022               ;; find the first class with slots for us to select (this should be)
1023               ;; the first of its classes / parent-classes with slots
1024               (first (reverse (view-classes-and-storable-slots
1025                                (to-class class-and-slots)
1026                                 :to-database-p nil))))))
1027          (class (view-class class-and-slots))
1028          (join-slots (when do-joins-p (immediate-join-slots class))))
1029     (multiple-value-bind (slots sqls)
1030         (loop for slot in (slot-defs class-and-slots)
1031               for sql = (generate-attribute-reference class slot)
1032               collect slot into slots
1033               collect sql into sqls
1034               finally (return (values slots sqls)))
1035       (unless slots
1036         (error "No slots of type :base in view-class ~A" (class-name class)))
1037       (let ((sl (make-instance
1038                  'select-list
1039                  :view-class class
1040                  :select-list sqls
1041                  :slot-list slots
1042                  :join-slots join-slots
1043                  ;; only do a single layer of join objects
1044                  :joins (when do-joins-p
1045                           (loop for js in join-slots
1046                                 collect (make-select-list
1047                                          (join-slot-class js)
1048                                          :do-joins-p nil
1049                                          :database database))))))
1050         (filter-select-list (make-instance class) sl database)
1051         sl))))
1052
1053 (defun full-select-list ( select-lists )
1054   "Returns a list of sql-ref of things to select for the given classes
1055
1056    THIS NEEDS TO MATCH THE ORDER OF build-objects
1057   "
1058   (loop for s in (listify select-lists)
1059         appending (select-list s)
1060         appending (loop for join in (joins s)
1061                         appending (select-list join))))
1062
1063 (defun build-objects (select-lists row database &optional existing-instances)
1064   "Used by find-all to build objects.
1065
1066    THIS NEEDS TO MATCH THE ORDER OF FULL-SELECT-LIST
1067
1068    TODO: this caching scheme seems bad for a number of reasons
1069     * order is not guaranteed so references being held by one object
1070       might change to represent a different database row (seems HIGHLY
1071       suspect)
1072     * also join objects are overwritten rather than refreshed
1073
1074    TODO: the way we handle immediate joins seems only valid if it is a single
1075       object.  I suspect that making a :set :immediate join column would result
1076       in an invalid number of objects returned from the database, because there
1077       would be multiple rows per object, but we would return an object per row
1078    "
1079   (setf existing-instances (listify existing-instances))
1080   (loop
1081     for select-list in select-lists
1082     for class = (view-class select-list)
1083     for existing = (pop existing-instances)
1084     for object = (or existing
1085                      (make-instance class :view-database database))
1086     do (loop for slot in (slot-list select-list)
1087              do (update-slot-from-db-value object slot (pop row)))
1088     do (loop for join-slot in (join-slots select-list)
1089              for join in (joins select-list)
1090              for join-class = (view-class join)
1091              for join-object =
1092                 (setf (easy-slot-value object join-slot)
1093                       (make-instance join-class))
1094              do (loop for slot in (slot-list join)
1095                       do (update-slot-from-db-value join-object slot (pop row))))
1096     do (when existing (instance-refreshed object))
1097         collect object))
1098
1099 (defun find-all (view-classes
1100                  &rest args
1101                  &key all set-operation distinct from where group-by having
1102                  order-by offset limit refresh flatp result-types
1103                  inner-join on
1104                  (database *default-database*)
1105                  instances parameters)
1106   "Called by SELECT to generate object query results when the
1107   View Classes VIEW-CLASSES are passed as arguments to SELECT.
1108
1109    TODO: the caching scheme of passing in instances and overwriting their
1110          values seems bad for a number of reasons
1111     * order is not guaranteed so references being held by one object
1112       might change to represent a different database row (seems HIGHLY
1113       suspect)
1114
1115    TODO: the way we handle immediate joins seems only valid if it is a single
1116       object.  I suspect that making a :set :immediate join column would result
1117       in an invalid number of objects returned from the database, because there
1118       would be multiple objects returned from the database
1119   "
1120   (declare (ignore all set-operation group-by having offset limit on parameters
1121                    distinct order-by)
1122            (dynamic-extent args))
1123   (let* ((args (filter-plist
1124                 args :from :where :flatp :additional-fields :result-types :instances))
1125          (*db-deserializing* t)
1126          (sclasses (mapcar #'to-class view-classes))
1127          (tables (%tables-for-query sclasses from where inner-join))
1128          (join-where
1129            (loop for class in sclasses
1130                  appending (loop for slot in (immediate-join-slots class)
1131                                  collect (join-slot-qualifier class slot))))
1132          (select-lists (loop for class in sclasses
1133                              collect (make-select-list class :do-joins-p t :database database)))
1134          (full-select-list (full-select-list select-lists))
1135          (where (clsql-ands (append (listify where) (listify join-where))))
1136          #|
1137           (_ (format t "~&sclasses: ~W~%ijc: ~W~%tables: ~W~%"
1138                     sclasses immediate-join-classes tables))
1139          |#
1140          (rows (apply #'select
1141                       (append full-select-list
1142                               (list :from tables
1143                                     :result-types result-types
1144                                     :where where)
1145                               args)))
1146          (return-objects
1147            (loop for row in rows
1148                  for old-objs = (pop instances)
1149                  for objs = (build-objects select-lists row database
1150                                            (when refresh old-objs))
1151                  collecting (if flatp
1152                                 (delist-if-single objs)
1153                                 objs))))
1154     return-objects))
1155
1156 (defmethod instance-refreshed ((instance standard-db-object)))
1157
1158 (defvar *default-caching* t
1159   "Controls whether SELECT caches objects by default. The CommonSQL
1160 specification states caching is on by default.")
1161
1162 (defun select (&rest select-all-args)
1163   "Executes a query on DATABASE, which has a default value of
1164 *DEFAULT-DATABASE*, specified by the SQL expressions supplied
1165 using the remaining arguments in SELECT-ALL-ARGS. The SELECT
1166 argument can be used to generate queries in both functional and
1167 object oriented contexts.
1168
1169 In the functional case, the required arguments specify the
1170 columns selected by the query and may be symbolic SQL expressions
1171 or strings representing attribute identifiers. Type modified
1172 identifiers indicate that the values selected from the specified
1173 column are converted to the specified lisp type. The keyword
1174 arguments ALL, DISTINCT, FROM, GROUP-by, HAVING, ORDER-BY,
1175 SET-OPERATION and WHERE are used to specify, using the symbolic
1176 SQL syntax, the corresponding components of the SQL query
1177 generated by the call to SELECT. RESULT-TYPES is a list of
1178 symbols which specifies the lisp type for each field returned by
1179 the query. If RESULT-TYPES is nil all results are returned as
1180 strings whereas the default value of :auto means that the lisp
1181 types are automatically computed for each field. FIELD-NAMES is t
1182 by default which means that the second value returned is a list
1183 of strings representing the columns selected by the query. If
1184 FIELD-NAMES is nil, the list of column names is not returned as a
1185 second value.
1186
1187 In the object oriented case, the required arguments to SELECT are
1188 symbols denoting View Classes which specify the database tables
1189 to query. In this case, SELECT returns a list of View Class
1190 instances whose slots are set from the attribute values of the
1191 records in the specified table. Slot-value is a legal operator
1192 which can be employed as part of the symbolic SQL syntax used in
1193 the WHERE keyword argument to SELECT. REFRESH is nil by default
1194 which means that the View Class instances returned are retrieved
1195 from a cache if an equivalent call to SELECT has previously been
1196 issued. If REFRESH is true, the View Class instances returned are
1197 updated as necessary from the database and the generic function
1198 INSTANCE-REFRESHED is called to perform any necessary operations
1199 on the updated instances.
1200
1201 In both object oriented and functional contexts, FLATP has a
1202 default value of nil which means that the results are returned as
1203 a list of lists. If FLATP is t and only one result is returned
1204 for each record selected in the query, the results are returned
1205 as elements of a list."
1206   (multiple-value-bind (target-args qualifier-args)
1207       (query-get-selections select-all-args)
1208     (unless (or *default-database* (getf qualifier-args :database))
1209       (signal-no-database-error nil))
1210
1211     (let ((caching (getf qualifier-args :caching *default-caching*))
1212           (result-types (getf qualifier-args :result-types :auto))
1213           (refresh (getf qualifier-args :refresh nil))
1214           (database (getf qualifier-args :database *default-database*)))
1215
1216       (cond
1217         ((and target-args
1218               (every #'(lambda (arg)
1219                          (and (symbolp arg)
1220                               (find-class arg nil)))
1221                      target-args))
1222
1223          (setf qualifier-args (filter-plist qualifier-args :caching :refresh :result-types))
1224
1225          ;; Add explicity table name to order-by if not specified and only
1226          ;; one selected table. This is required so FIND-ALL won't duplicate
1227          ;; the field
1228          (let ((order-by (getf qualifier-args :order-by)))
1229            (when (and order-by (= 1 (length target-args)))
1230              (let ((table-name (view-table (find-class (car target-args))))
1231                    (order-by-list (copy-seq (listify order-by))))
1232                (labels ((sv (val name) (ignore-errors (slot-value val name)))
1233                         (set-table-if-needed (val)
1234                           (typecase val
1235                             (sql-ident-attribute
1236                              (handler-case
1237                                  (if (sv val 'qualifier)
1238                                      val
1239                                      (make-instance 'sql-ident-attribute
1240                                                     :name (sv val 'name)
1241                                                     :qualifier table-name))
1242                                (simple-error ()
1243                                  ;; TODO: Check for a specific error we expect
1244                                  )))
1245                             (cons (cons (set-table-if-needed (car val))
1246                                         (cdr val)))
1247                             (t val))))
1248                  (setf order-by-list
1249                        (loop for i from 0 below (length order-by-list)
1250                              for id in order-by-list
1251                              collect (set-table-if-needed id))))
1252                (setf (getf qualifier-args :order-by) order-by-list))))
1253
1254          (cond
1255            ((null caching)
1256             (apply #'find-all target-args :result-types result-types :refresh refresh qualifier-args))
1257            (t
1258             (let ((cached (records-cache-results target-args qualifier-args database)))
1259               (if (and cached (not refresh))
1260                   cached
1261                   (let ((results (apply #'find-all target-args
1262                                         :result-types :auto :refresh refresh
1263                                         :instances cached
1264                                         qualifier-args)))
1265                     (setf (records-cache-results target-args qualifier-args database) results)
1266
1267                     results))))))
1268         (t
1269          (let* ((expr (apply #'make-query select-all-args))
1270                 (parameters (second (member :parameters select-all-args)))
1271                 (specified-types
1272                   (mapcar #'(lambda (attrib)
1273                               (if (typep attrib 'sql-ident-attribute)
1274                                   (let ((type (slot-value attrib 'type)))
1275                                     (if type
1276                                         type
1277                                         t))
1278                                   t))
1279                           (slot-value expr 'selections)))
1280                 (flatp (getf qualifier-args :flatp))
1281                 (field-names (getf qualifier-args :field-names t)))
1282
1283            (when parameters
1284              (setf expr (command-object (sql-output expr database) parameters)))
1285            (query expr :flatp flatp
1286                        :result-types
1287                        ;; specifying a type for an attribute overrides result-types
1288                        (if (some #'(lambda (x) (not (eq t x))) specified-types)
1289                            specified-types
1290                            result-types)
1291                        :field-names field-names
1292                        :database database)))))))
1293
1294 (defun compute-records-cache-key (targets qualifiers)
1295   (list targets
1296         (do ((args *select-arguments* (cdr args))
1297              (results nil))
1298             ((null args) results)
1299           (let* ((arg (car args))
1300                  (value (getf qualifiers arg)))
1301             (when value
1302               (push (list arg
1303                           (typecase value
1304                             (cons (cons (sql (car value)) (cdr value)))
1305                             (%sql-expression (sql value))
1306                             (t value)))
1307                     results))))))
1308
1309 (defun records-cache-results (targets qualifiers database)
1310   (when (record-caches database)
1311     (gethash (compute-records-cache-key targets qualifiers) (record-caches database))))
1312
1313 (defun (setf records-cache-results) (results targets qualifiers database)
1314   (unless (record-caches database)
1315     (setf (record-caches database)
1316           (make-weak-hash-table :test 'equal)))
1317   (setf (gethash (compute-records-cache-key (copy-list targets) qualifiers)
1318                  (record-caches database)) results)
1319   results)
1320
1321
1322
1323 ;;; Serialization functions
1324
1325 (defun write-instance-to-stream (obj stream)
1326   "Writes an instance to a stream where it can be later be read.
1327 NOTE: an error will occur if a slot holds a value which can not be written readably."
1328   (let* ((class (class-of obj))
1329          (alist '()))
1330     (dolist (slot (ordered-class-slots (class-of obj)))
1331       (let ((name (slot-definition-name slot)))
1332         (when (and (not (eq 'view-database name))
1333                    (slot-boundp obj name))
1334           (push (cons name (slot-value obj name)) alist))))
1335     (setq alist (reverse alist))
1336     (write (cons (class-name class) alist) :stream stream :readably t))
1337   obj)
1338
1339 (defun read-instance-from-stream (stream)
1340   (let ((raw (read stream nil nil)))
1341     (when raw
1342       (let ((obj (make-instance (car raw))))
1343         (dolist (pair (cdr raw))
1344           (setf (slot-value obj (car pair)) (cdr pair)))
1345         obj))))