1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
|
# properties.py
# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
#
# This module is part of SQLAlchemy and is released under
# the MIT License: http://www.opensource.org/licenses/mit-license.php
from mapper import *
import sqlalchemy.sql as sql
import sqlalchemy.schema as schema
import sqlalchemy.engine as engine
import sqlalchemy.util as util
import sqlalchemy.attributes as attributes
import mapper
import objectstore
class ColumnProperty(MapperProperty):
"""describes an object attribute that corresponds to a table column."""
def __init__(self, *columns):
"""the list of columns describes a single object property. if there
are multiple tables joined together for the mapper, this list represents
the equivalent column as it appears across each table."""
self.columns = list(columns)
def getattr(self, object):
return getattr(object, self.key, None)
def setattr(self, object, value):
setattr(object, self.key, value)
def get_history(self, obj, passive=False):
return objectstore.global_attributes.get_history(obj, self.key, passive=passive)
def hash_key(self):
return "ColumnProperty(%s)" % repr([hash_key(c) for c in self.columns])
def _copy(self):
return ColumnProperty(*self.columns)
def setup(self, key, statement, eagertable=None, **options):
for c in self.columns:
if eagertable is not None:
statement.append_column(eagertable._get_col_by_original(c))
else:
statement.append_column(c)
def init(self, key, parent):
self.key = key
# establish a SmartProperty property manager on the object for this key
if parent._is_primary_mapper():
#print "regiser col on class %s key %s" % (parent.class_.__name__, key)
objectstore.uow().register_attribute(parent.class_, key, uselist = False)
def execute(self, instance, row, identitykey, imap, isnew):
if isnew:
instance.__dict__[self.key] = row[self.columns[0]]
class DeferredColumnProperty(ColumnProperty):
"""describes an object attribute that corresponds to a table column, which also
will "lazy load" its value from the table. this is per-column lazy loading."""
def __init__(self, *columns, **kwargs):
self.group = kwargs.get('group', None)
ColumnProperty.__init__(self, *columns)
def hash_key(self):
return "DeferredColumnProperty(%s)" % repr([hash_key(c) for c in self.columns])
def _copy(self):
return DeferredColumnProperty(*self.columns)
def setup_loader(self, instance):
def lazyload():
clause = sql.and_()
for primary_key in self.parent.pks_by_table[self.parent.primarytable]:
attr = self.parent._getattrbycolumn(instance, primary_key)
if not attr:
return None
clause.clauses.append(primary_key == attr)
if self.group is not None:
groupcols = [p for p in self.parent.props.values() if isinstance(p, DeferredColumnProperty) and p.group==self.group]
row = sql.select([g.columns[0] for g in groupcols], clause, use_labels=True).execute().fetchone()
for prop in groupcols:
if prop is self:
continue
instance.__dict__[prop.key] = row[prop.columns[0]]
objectstore.global_attributes.create_history(instance, prop.key, uselist=False)
return row[self.columns[0]]
else:
return sql.select([self.columns[0]], clause, use_labels=True).scalar()
return lazyload
def _is_primary(self):
"""a return value of True indicates we are the primary MapperProperty for this loader's
attribute on our mapper's class. It means we can set the object's attribute behavior
at the class level. otherwise we have to set attribute behavior on a per-instance level."""
return self.parent._is_primary_mapper()
def setup(self, key, statement, **options):
pass
def init(self, key, parent):
self.key = key
self.parent = parent
# establish a SmartProperty property manager on the object for this key,
# containing a callable to load in the attribute
if parent._is_primary_mapper():
objectstore.uow().register_attribute(parent.class_, key, uselist=False, callable_=lambda i:self.setup_loader(i))
def execute(self, instance, row, identitykey, imap, isnew):
if isnew:
if not self._is_primary():
objectstore.global_attributes.create_history(instance, self.key, False, callable_=self.setup_loader(instance))
else:
objectstore.global_attributes.reset_history(instance, self.key)
mapper.ColumnProperty = ColumnProperty
class PropertyLoader(MapperProperty):
LEFT = 0 # one-to-many
RIGHT = 1 # many-to-one
CENTER = 2 # many-to-many
"""describes an object property that holds a single item or list of items that correspond
to a related database table."""
def __init__(self, argument, secondary, primaryjoin, secondaryjoin, foreignkey=None, uselist=None, private=False, live=False, association=None, selectalias=None, order_by=False, attributeext=None, backref=None, is_backref=False):
self.uselist = uselist
self.argument = argument
self.secondary = secondary
self.primaryjoin = primaryjoin
self.secondaryjoin = secondaryjoin
self.foreignkey = foreignkey
self.private = private
self.live = live
self.association = association
self.selectalias = selectalias
self.order_by = order_by
self.attributeext=attributeext
self.backref = backref
self.is_backref = is_backref
self._hash_key = "%s(%s, %s, %s, %s, %s, %s, %s, %s)" % (self.__class__.__name__, hash_key(self.argument), hash_key(secondary), hash_key(primaryjoin), hash_key(secondaryjoin), hash_key(foreignkey), repr(uselist), repr(private), hash_key(self.order_by))
def _copy(self):
return self.__class__(self.mapper, self.secondary, self.primaryjoin, self.secondaryjoin, self.foreignkey, self.uselist, self.private)
def hash_key(self):
return self._hash_key
def init(self, key, parent):
import sqlalchemy.mapping
if isinstance(self.argument, type):
self.mapper = sqlalchemy.mapping.class_mapper(self.argument)
else:
self.mapper = self.argument
if self.association is not None:
if isinstance(self.association, type):
self.association = sqlalchemy.mapping.class_mapper(self.association)
self.target = self.mapper.table
self.key = key
self.parent = parent
# if join conditions were not specified, figure them out based on foreign keys
if self.secondary is not None:
if self.secondaryjoin is None:
self.secondaryjoin = sql.join(self.target, self.secondary).onclause
if self.primaryjoin is None:
self.primaryjoin = sql.join(parent.table, self.secondary).onclause
else:
if self.primaryjoin is None:
self.primaryjoin = sql.join(parent.table, self.target).onclause
# if the foreign key wasnt specified and theres no assocaition table, try to figure
# out who is dependent on who. we dont need all the foreign keys represented in the join,
# just one of them.
if self.foreignkey is None and self.secondaryjoin is None:
# else we usually will have a one-to-many where the secondary depends on the primary
# but its possible that its reversed
self.foreignkey = self._find_dependent()
self.direction = self._get_direction()
if self.uselist is None and self.direction == PropertyLoader.RIGHT:
self.uselist = False
if self.uselist is None:
self.uselist = True
self._compile_synchronizers()
# primary property handler, set up class attributes
if self._is_primary():
# if a backref name is defined, set up an extension to populate
# attributes in the other direction
if self.backref is not None:
if self.direction == PropertyLoader.LEFT:
self.attributeext = attributes.OTMBackrefExtension(self.backref)
elif self.direction == PropertyLoader.RIGHT:
self.attributeext = attributes.MTOBackrefExtension(self.backref)
else:
self.attributeext = attributes.ListBackrefExtension(self.backref)
# set our class attribute
self._set_class_attribute(parent.class_, key)
if self.backref is not None:
# try to set a LazyLoader on our mapper referencing the parent mapper
if not self.mapper.props.has_key(self.backref):
self.mapper.add_property(self.backref, LazyLoader(self.parent, self.secondary, self.primaryjoin, self.secondaryjoin, backref=self.key, is_backref=True));
else:
# else set one of us as the "backreference"
if not self.mapper.props[self.backref].is_backref:
self.is_backref=True
elif not objectstore.global_attributes.is_class_managed(parent.class_, key):
raise "Non-primary property created for attribute '%s' on class '%s', but that attribute is not managed! Insure that the primary mapper for this class defines this property" % (key, parent.class_.__name__)
def _is_primary(self):
"""a return value of True indicates we are the primary PropertyLoader for this loader's
attribute on our mapper's class. It means we can set the object's attribute behavior
at the class level. otherwise we have to set attribute behavior on a per-instance level."""
return self.parent._is_primary_mapper()
def _set_class_attribute(self, class_, key):
"""sets attribute behavior on our target class."""
objectstore.uow().register_attribute(class_, key, uselist = self.uselist, deleteremoved = self.private, extension=self.attributeext)
def _get_direction(self):
if self.parent.primarytable is self.target:
if self.foreignkey.primary_key:
return PropertyLoader.RIGHT
else:
return PropertyLoader.LEFT
elif self.secondaryjoin is not None:
return PropertyLoader.CENTER
elif self.foreignkey.table == self.target:
return PropertyLoader.LEFT
elif self.foreignkey.table == self.parent.primarytable:
return PropertyLoader.RIGHT
else:
raise "Cant determine relation direction"
def _find_dependent(self):
dependent = [None]
def foo(binary):
if binary.operator != '=':
return
if isinstance(binary.left, schema.Column) and binary.left.primary_key:
if dependent[0] is binary.left:
raise "bidirectional dependency not supported...specify foreignkey"
dependent[0] = binary.right
elif isinstance(binary.right, schema.Column) and binary.right.primary_key:
if dependent[0] is binary.right:
raise "bidirectional dependency not supported...specify foreignkey"
dependent[0] = binary.left
visitor = BinaryVisitor(foo)
self.primaryjoin.accept_visitor(visitor)
if dependent[0] is None:
raise "cant determine primary foreign key in the join relationship....specify foreignkey=<column>"
else:
return dependent[0]
def _compile_synchronizers(self):
def compile(binary):
if binary.operator != '=' or not isinstance(binary.left, schema.Column) or not isinstance(binary.right, schema.Column):
return
if binary.left.table == binary.right.table:
if binary.left.primary_key:
source = binary.left
dest = binary.right
elif binary.right.primary_key:
source = binary.right
dest = binary.left
else:
raise "Cant determine direction for relationship %s = %s" % (binary.left.fullname, binary.right.fullname)
if self.direction == PropertyLoader.LEFT:
self.syncrules.append((self.parent, source, self.mapper, dest))
elif self.direction == PropertyLoader.RIGHT:
self.syncrules.append((self.mapper, source, self.parent, dest))
else:
raise "assert failed"
else:
colmap = {binary.left.table : binary.left, binary.right.table : binary.right}
if colmap.has_key(self.parent.primarytable) and colmap.has_key(self.target):
if self.direction == PropertyLoader.LEFT:
self.syncrules.append((self.parent, colmap[self.parent.primarytable], self.mapper, colmap[self.target]))
elif self.direction == PropertyLoader.RIGHT:
self.syncrules.append((self.mapper, colmap[self.target], self.parent, colmap[self.parent.primarytable]))
else:
raise "assert failed"
elif colmap.has_key(self.parent.primarytable) and colmap.has_key(self.secondary):
self.syncrules.append((self.parent, colmap[self.parent.primarytable], PropertyLoader.LEFT, colmap[self.secondary]))
elif colmap.has_key(self.target) and colmap.has_key(self.secondary):
self.syncrules.append((self.mapper, colmap[self.target], PropertyLoader.RIGHT, colmap[self.secondary]))
self.syncrules = []
processor = BinaryVisitor(compile)
self.primaryjoin.accept_visitor(processor)
if self.secondaryjoin is not None:
self.secondaryjoin.accept_visitor(processor)
def get_criterion(self, key, value):
"""given a key/value pair, determines if this PropertyLoader's mapper contains a key of the
given name in its property list, or if this PropertyLoader's association mapper, if any,
contains a key of the given name in its property list, and returns a WHERE clause against
the given value if found.
this is called by a mappers select_by method to formulate a set of key/value pairs into
a WHERE criterion that spans multiple tables if needed."""
# TODO: optimization: change mapper to accept a WHERE clause with separate bind parameters
# then cache the generated WHERE clauses here, since the creation + the copy_container
# is an extra expense
if self.mapper.props.has_key(key):
if self.secondaryjoin is not None:
c = (self.mapper.props[key].columns[0]==value) & self.primaryjoin & self.secondaryjoin
else:
c = (self.mapper.props[key].columns[0]==value) & self.primaryjoin
return c.copy_container()
elif self.mapper.table.c.has_key(key):
if self.secondaryjoin is not None:
c = (self.mapper.table.c[key].columns[0]==value) & self.primaryjoin & self.secondaryjoin
else:
c = (self.mapper.table.c[key].columns[0]==value) & self.primaryjoin
return c.copy_container()
elif self.association is not None:
c = self.mapper._get_criterion(key, value) & self.primaryjoin
return c.copy_container()
return None
def register_deleted(self, obj, uow):
if not self.private:
return
if self.uselist:
childlist = uow.attributes.get_history(obj, self.key, passive = False)
else:
childlist = uow.attributes.get_history(obj, self.key)
for child in childlist.deleted_items() + childlist.unchanged_items():
if child is not None:
uow.register_deleted(child)
class MapperStub(object):
"""poses as a Mapper representing the association table in a many-to-many
join, when performing a commit().
The Task objects in the objectstore module treat it just like
any other Mapper, but in fact it only serves as a "dependency" placeholder
for the many-to-many update task."""
def save_obj(self, *args, **kwargs):
pass
def delete_obj(self, *args, **kwargs):
pass
def register_dependencies(self, uowcommit):
"""tells a UOWTransaction what mappers are dependent on which, with regards
to the two or three mappers handled by this PropertyLoader.
Also registers itself as a "processor" for one of its mappers, which
will be executed after that mapper's objects have been saved or before
they've been deleted. The process operation manages attributes and dependent
operations upon the objects of one of the involved mappers."""
if self.association is not None:
# association object. our mapper should be dependent on both
# the parent mapper and the association object mapper.
# this seems to work, association->parent->self, then
# we process the child elements after the 'parent' save. but
# then the parent is dependent on the association which is
# somewhat arbitrary, might compete with some other dependency:
# uowcommit.register_dependency(self.association, self.parent)
# uowcommit.register_dependency(self.parent, self.mapper)
# #uowcommit.register_dependency(self.association, self.mapper)
# uowcommit.register_processor(self.parent, self, self.parent, False)
# uowcommit.register_processor(self.parent, self, self.parent, True)
# this is where we put the "stub" as a marker, so we get
# association/parent->stub->self, then we process the child
# elments after the 'stub' save, which is before our own
# mapper's save.
stub = PropertyLoader.MapperStub()
uowcommit.register_dependency(self.parent, stub)
uowcommit.register_dependency(self.association, stub)
uowcommit.register_dependency(stub, self.mapper)
uowcommit.register_processor(stub, self, self.parent, False)
uowcommit.register_processor(stub, self, self.parent, True)
elif self.direction == PropertyLoader.CENTER:
# many-to-many. create a "Stub" mapper to represent the
# "middle table" in the relationship. This stub mapper doesnt save
# or delete any objects, but just marks a dependency on the two
# related mappers. its dependency processor then populates the
# association table.
if self.is_backref:
# if we are the "backref" half of a two-way backref
# relationship, let the other mapper handle inserting the rows
return
stub = PropertyLoader.MapperStub()
uowcommit.register_dependency(self.parent, stub)
uowcommit.register_dependency(self.mapper, stub)
uowcommit.register_processor(stub, self, self.parent, False)
uowcommit.register_processor(stub, self, self.parent, True)
elif self.direction == PropertyLoader.LEFT:
uowcommit.register_dependency(self.parent, self.mapper)
uowcommit.register_processor(self.parent, self, self.parent, False)
uowcommit.register_processor(self.parent, self, self.parent, True)
elif self.direction == PropertyLoader.RIGHT:
uowcommit.register_dependency(self.mapper, self.parent)
uowcommit.register_processor(self.mapper, self, self.parent, False)
else:
raise " no foreign key ?"
def get_object_dependencies(self, obj, uowcommit, passive = True):
return uowcommit.uow.attributes.get_history(obj, self.key, passive = passive)
def whose_dependent_on_who(self, obj1, obj2):
if obj1 is obj2:
return None
elif self.direction == PropertyLoader.LEFT:
return (obj1, obj2)
else:
return (obj2, obj1)
def process_dependencies(self, task, deplist, uowcommit, delete = False):
#print self.mapper.table.name + " " + self.key + " " + repr(len(deplist)) + " process_dep isdelete " + repr(delete) + " direction " + repr(self.direction)
def getlist(obj, passive=True):
return self.get_object_dependencies(obj, uowcommit, passive)
# plugin point
if self.direction == PropertyLoader.CENTER:
secondary_delete = []
secondary_insert = []
if delete:
for obj in deplist:
childlist = getlist(obj, False)
for child in childlist.deleted_items() + childlist.unchanged_items():
associationrow = {}
self._synchronize(obj, child, associationrow, False)
secondary_delete.append(associationrow)
uowcommit.register_deleted_list(childlist)
else:
for obj in deplist:
childlist = getlist(obj)
if childlist is None: continue
for child in childlist.added_items():
associationrow = {}
self._synchronize(obj, child, associationrow, False)
secondary_insert.append(associationrow)
for child in childlist.deleted_items():
associationrow = {}
self._synchronize(obj, child, associationrow, False)
secondary_delete.append(associationrow)
uowcommit.register_saved_list(childlist)
if len(secondary_delete):
# TODO: precompile the delete/insert queries and store them as instance variables
# on the PropertyLoader
statement = self.secondary.delete(sql.and_(*[c == sql.bindparam(c.key) for c in self.secondary.c]))
statement.execute(*secondary_delete)
if len(secondary_insert):
statement = self.secondary.insert()
statement.execute(*secondary_insert)
elif self.direction == PropertyLoader.RIGHT and delete:
# head object is being deleted, and we manage a foreign key object.
# dont have to do anything to it.
pass
elif self.direction == PropertyLoader.LEFT and delete:
# head object is being deleted, and we manage its list of child objects
# the child objects have to have their foreign key to the parent set to NULL
if self.private:
# if we are privately managed, then all our objects should
# have been marked as "todelete" already and no attribute adjustment is needed
return
for obj in deplist:
childlist = getlist(obj, False)
for child in childlist.deleted_items() + childlist.unchanged_items():
self._synchronize(obj, child, None, True)
uowcommit.register_object(child)
uowcommit.register_deleted_list(childlist)
elif self.association is not None:
# manage association objects.
for obj in deplist:
childlist = getlist(obj, passive=True)
if childlist is None: continue
uowcommit.register_saved_list(childlist)
#print "DIRECTION", self.direction
d = {}
for child in childlist:
self._synchronize(obj, child, None, False)
key = self.mapper.instance_key(child)
#print "SYNCHRONIZED", child, "INSTANCE KEY", key
d[key] = child
uowcommit.unregister_object(child)
for child in childlist.added_items():
uowcommit.register_object(child)
key = self.mapper.instance_key(child)
#print "ADDED, INSTANCE KEY", key
d[key] = child
for child in childlist.unchanged_items():
key = self.mapper.instance_key(child)
o = d[key]
o._instance_key= key
for child in childlist.deleted_items():
key = self.mapper.instance_key(child)
#print "DELETED, INSTANCE KEY", key
if d.has_key(key):
o = d[key]
o._instance_key = key
uowcommit.unregister_object(child)
else:
#print "DELETE ASSOC OBJ", repr(child)
uowcommit.register_object(child, isdelete=True)
else:
for obj in deplist:
if self.direction == PropertyLoader.RIGHT:
uowcommit.register_object(obj)
childlist = getlist(obj, passive=True)
if childlist is None: continue
uowcommit.register_saved_list(childlist)
for child in childlist.added_items():
self._synchronize(obj, child, None, False)
if self.direction == PropertyLoader.LEFT:
uowcommit.register_object(child)
if self.direction != PropertyLoader.RIGHT or len(childlist.added_items()) == 0:
for child in childlist.deleted_items():
if not self.private:
self._synchronize(obj, child, None, True)
if self.direction == PropertyLoader.LEFT:
uowcommit.register_object(child, isdelete=self.private)
def _synchronize(self, obj, child, associationrow, clearkeys):
if self.direction == PropertyLoader.LEFT:
source = obj
dest = child
elif self.direction == PropertyLoader.RIGHT:
source = child
dest = obj
elif self.direction == PropertyLoader.CENTER:
source = None
dest = associationrow
for rule in self.syncrules:
localsource = source
(smapper, scol, dmapper, dcol) = rule
if localsource is None:
if dmapper == PropertyLoader.LEFT:
localsource = obj
elif dmapper == PropertyLoader.RIGHT:
localsource = child
if clearkeys:
value = None
else:
value = smapper._getattrbycolumn(localsource, scol)
if dest is associationrow:
associationrow[dcol.key] = value
else:
#print "SYNC VALUE", value, "TO", dest
dmapper._setattrbycolumn(dest, dcol, value)
def execute(self, instance, row, identitykey, imap, isnew):
if self._is_primary():
return
#print "PLAIN PROPLOADER EXEC NON-PRIAMRY", repr(id(self)), repr(self.mapper.class_), self.key
objectstore.global_attributes.create_history(instance, self.key, self.uselist)
class LazyLoader(PropertyLoader):
def init(self, key, parent):
PropertyLoader.init(self, key, parent)
(self.lazywhere, self.lazybinds) = create_lazy_clause(self.parent.table, self.primaryjoin, self.secondaryjoin, self.foreignkey)
# determine if our "lazywhere" clause is the same as the mapper's
# get() clause. then we can just use mapper.get()
self.use_get = not self.uselist and self.mapper._get_clause.compare(self.lazywhere)
def _set_class_attribute(self, class_, key):
# establish a class-level lazy loader on our class
#print "SETCLASSATTR LAZY", repr(class_), key
objectstore.global_attributes.register_attribute(class_, key, uselist = self.uselist, deleteremoved = self.private, live=self.live, callable_=lambda i: self.setup_loader(i), extension=self.attributeext)
def setup_loader(self, instance):
def lazyload():
params = {}
allparams = True
#print "setting up loader, lazywhere", str(self.lazywhere)
for col, bind in self.lazybinds.iteritems():
params[bind.key] = self.parent._getattrbycolumn(instance, col)
if params[bind.key] is None:
allparams = False
break
if allparams:
# if we have a simple straight-primary key load, use mapper.get()
# to possibly save a DB round trip
if self.use_get:
ident = []
for primary_key in self.mapper.pks_by_table[self.mapper.primarytable]:
ident.append(params[self.mapper.primarytable.name + "_" + primary_key.key])
return self.mapper.get(*ident)
elif self.order_by is not False:
order_by = self.order_by
elif self.secondary is not None and self.secondary.default_order_by() is not None:
order_by = self.secondary.default_order_by()
else:
order_by = False
result = self.mapper.select(self.lazywhere, order_by=order_by, params=params)
else:
result = []
if self.uselist:
return result
else:
if len(result):
return result[0]
else:
return None
return lazyload
def execute(self, instance, row, identitykey, imap, isnew):
if isnew:
# new object instance being loaded from a result row
if not self._is_primary():
#print "EXEC NON-PRIAMRY", repr(self.mapper.class_), self.key
# we are not the primary manager for this attribute on this class - set up a per-instance lazyloader,
# which will override the class-level behavior
objectstore.global_attributes.create_history(instance, self.key, self.uselist, callable_=self.setup_loader(instance))
else:
#print "EXEC PRIMARY", repr(self.mapper.class_), self.key
# we are the primary manager for this attribute on this class - reset its per-instance attribute state,
# so that the class-level lazy loader is executed when next referenced on this instance.
# this usually is not needed unless the constructor of the object referenced the attribute before we got
# to load data into it.
objectstore.global_attributes.reset_history(instance, self.key)
def create_lazy_clause(table, primaryjoin, secondaryjoin, foreignkey):
binds = {}
def visit_binary(binary):
circular = isinstance(binary.left, schema.Column) and isinstance(binary.right, schema.Column) and binary.left.table is binary.right.table
if isinstance(binary.left, schema.Column) and ((not circular and binary.left.table is table) or (circular and foreignkey is binary.right)):
binary.left = binds.setdefault(binary.left,
sql.BindParamClause(binary.right.table.name + "_" + binary.right.name, None, shortname = binary.left.name))
binary.swap()
if isinstance(binary.right, schema.Column) and ((not circular and binary.right.table is table) or (circular and foreignkey is binary.left)):
binary.right = binds.setdefault(binary.right,
sql.BindParamClause(binary.left.table.name + "_" + binary.left.name, None, shortname = binary.right.name))
if secondaryjoin is not None:
lazywhere = sql.and_(primaryjoin, secondaryjoin)
else:
lazywhere = primaryjoin
lazywhere = lazywhere.copy_container()
li = BinaryVisitor(visit_binary)
lazywhere.accept_visitor(li)
return (lazywhere, binds)
class EagerLoader(PropertyLoader):
"""loads related objects inline with a parent query."""
def init(self, key, parent):
PropertyLoader.init(self, key, parent)
parent._has_eager = True
# figure out tables in the various join clauses we have, because user-defined
# whereclauses that reference the same tables will be converted to use
# aliases of those tables
self.to_alias = util.HashSet()
[self.to_alias.append(f) for f in self.primaryjoin._get_from_objects()]
if self.secondaryjoin is not None:
[self.to_alias.append(f) for f in self.secondaryjoin._get_from_objects()]
try:
del self.to_alias[parent.primarytable]
except KeyError:
pass
# if this eagermapper is to select using an "alias" to isolate it from other
# eager mappers against the same table, we have to redefine our secondary
# or primary join condition to reference the aliased table (and the order_by).
# else we set up the target clause objects as what they are defined in the
# superclass.
if self.selectalias is not None:
self.eagertarget = self.target.alias(self.selectalias)
aliasizer = Aliasizer(self.target, aliases={self.target:self.eagertarget})
if self.secondaryjoin is not None:
self.eagersecondary = self.secondaryjoin.copy_container()
self.eagersecondary.accept_visitor(aliasizer)
self.eagerpriamry = self.primaryjoin
else:
self.eagerprimary = self.primaryjoin.copy_container()
self.eagerprimary.accept_visitor(aliasizer)
if self.order_by:
self.eager_order_by = [o.copy_container() for o in util.to_list(self.order_by)]
for i in range(0, len(self.eager_order_by)):
if isinstance(self.eager_order_by[i], schema.Column):
self.eager_order_by[i] = self.eagertarget._get_col_by_original(self.eager_order_by[i])
else:
self.eager_order_by[i].accept_visitor(aliasizer)
else:
self.eager_order_by = self.order_by
else:
self.eagertarget = self.target
self.eagerprimary = self.primaryjoin
self.eagersecondary = self.secondaryjoin
self.eager_order_by = self.order_by
def setup(self, key, statement, recursion_stack = None, **options):
"""add a left outer join to the statement thats being constructed"""
if recursion_stack is None:
recursion_stack = {}
if statement.whereclause is not None:
# "aliasize" the tables referenced in the user-defined whereclause to not
# collide with the tables used by the eager load
# note that we arent affecting the mapper's table, nor our own primary or secondary joins
aliasizer = Aliasizer(*self.to_alias)
statement.whereclause.accept_visitor(aliasizer)
for alias in aliasizer.aliases.values():
statement.append_from(alias)
if hasattr(statement, '_outerjoin'):
towrap = statement._outerjoin
else:
towrap = self.parent.table
if self.secondaryjoin is not None:
statement._outerjoin = sql.outerjoin(towrap, self.secondary, self.primaryjoin).outerjoin(self.eagertarget, self.eagersecondary)
if self.order_by is False and self.secondary.default_order_by() is not None:
statement.order_by(*self.secondary.default_order_by())
else:
statement._outerjoin = towrap.outerjoin(self.eagertarget, self.eagerprimary)
if self.order_by is False and self.eagertarget.default_order_by() is not None:
statement.order_by(*self.eagertarget.default_order_by())
if self.eager_order_by:
statement.order_by(*util.to_list(self.eager_order_by))
statement.append_from(statement._outerjoin)
#statement.append_column(self.eagertarget)
recursion_stack[self] = True
try:
for key, value in self.mapper.props.iteritems():
if recursion_stack.has_key(value):
raise "Circular eager load relationship detected on " + str(self.mapper) + " " + key + repr(self.mapper.props)
value.setup(key, statement, recursion_stack=recursion_stack, eagertable=self.eagertarget)
finally:
del recursion_stack[self]
def execute(self, instance, row, identitykey, imap, isnew):
"""receive a row. tell our mapper to look for a new object instance in the row, and attach
it to a list on the parent instance."""
if isnew:
# new row loaded from the database. initialize a blank container on the instance.
# this will override any per-class lazyloading type of stuff.
h = objectstore.global_attributes.create_history(instance, self.key, self.uselist)
if not self.uselist:
if isnew:
h.setattr_clean(self._instance(row, imap))
return
elif isnew:
result_list = h
else:
result_list = getattr(instance, self.key)
self._instance(row, imap, result_list)
def _instance(self, row, imap, result_list=None):
"""gets an instance from a row, via this EagerLoader's mapper."""
# if we have an alias for our mapper's table via the selectalias
# parameter, we need to translate the
# aliased columns from the incoming row into a new row that maps
# the values against the columns of the mapper's original non-aliased table.
if self.selectalias is not None:
fakerow = {}
for c in self.eagertarget.c:
fakerow[c.original] = row[c]
row = fakerow
return self.mapper._instance(row, imap, result_list)
class GenericOption(MapperOption):
"""a mapper option that can handle dotted property names,
descending down through the relations of a mapper until it
reaches the target."""
def __init__(self, key):
self.key = key
def process(self, mapper):
self.process_by_key(mapper, self.key)
def process_by_key(self, mapper, key):
tokens = key.split('.', 1)
if len(tokens) > 1:
oldprop = mapper.props[tokens[0]]
kwargs = util.constructor_args(oldprop)
kwargs['argument'] = self.process_by_key(oldprop.mapper.copy(), tokens[1])
newprop = oldprop.__class__(**kwargs)
mapper.set_property(tokens[0], newprop)
else:
self.create_prop(mapper, tokens[0])
return mapper
def create_prop(self, mapper, key):
kwargs = util.constructor_args(oldprop)
mapper.set_property(key, class_(**kwargs ))
class EagerLazyOption(GenericOption):
"""an option that switches a PropertyLoader to be an EagerLoader or LazyLoader"""
def __init__(self, key, toeager = True, **kwargs):
self.key = key
self.toeager = toeager
self.kwargs = kwargs
def hash_key(self):
return "EagerLazyOption(%s, %s)" % (repr(self.key), repr(self.toeager))
def create_prop(self, mapper, key):
if self.toeager:
class_ = EagerLoader
elif self.toeager is None:
class_ = PropertyLoader
else:
class_ = LazyLoader
# create a clone of the class using mostly the arguments from the original
submapper = mapper.props[key].mapper
kwargs = util.constructor_args(mapper.props[key], **self.kwargs)
mapper.set_property(key, class_(**kwargs ))
class DeferredOption(GenericOption):
def __init__(self, key, defer=False, **kwargs):
self.key = key
self.defer = defer
self.kwargs = kwargs
def hash_key(self):
return "DeferredOption(%s,%s)" % (self.key, self.defer)
def create_prop(self, mapper, key):
oldprop = mapper.props[key]
if self.defer:
prop = DeferredColumnProperty(*oldprop.columns, **self.kwargs)
else:
prop = ColumnProperty(*oldprop.columns, **self.kwargs)
mapper.set_property(key, prop)
class Aliasizer(sql.ClauseVisitor):
"""converts a table instance within an expression to be an alias of that table."""
def __init__(self, *tables, **kwargs):
self.tables = {}
for t in tables:
self.tables[t] = t
self.binary = None
self.match = False
self.aliases = kwargs.get('aliases', {})
def get_alias(self, table):
try:
return self.aliases[table]
except:
return self.aliases.setdefault(table, sql.alias(table))
def visit_compound(self, compound):
for i in range(0, len(compound.clauses)):
if isinstance(compound.clauses[i], schema.Column) and self.tables.has_key(compound.clauses[i].table):
compound.clauses[i] = self.get_alias(compound.clauses[i].table)._get_col_by_original(compound.clauses[i])
self.match = True
def visit_binary(self, binary):
if isinstance(binary.left, schema.Column) and self.tables.has_key(binary.left.table):
binary.left = self.get_alias(binary.left.table)._get_col_by_original(binary.left)
self.match = True
if isinstance(binary.right, schema.Column) and self.tables.has_key(binary.right.table):
binary.right = self.get_alias(binary.right.table)._get_col_by_original(binary.right)
self.match = True
class BinaryVisitor(sql.ClauseVisitor):
def __init__(self, func):
self.func = func
def visit_binary(self, binary):
self.func(binary)
|