1 from functools
import partial
3 from sqlalchemy
.ext
.associationproxy
import association_proxy
4 from sqlalchemy
.orm
import aliased
, compile_mappers
, mapper
, relationship
, synonym
5 from sqlalchemy
.orm
.collections
import attribute_mapped_collection
6 from sqlalchemy
.orm
.scoping
import ScopedSession
7 from sqlalchemy
.orm
.session
import Session
, object_session
8 from sqlalchemy
.schema
import Column
, ForeignKey
, Table
9 from sqlalchemy
.sql
.expression
import and_
, bindparam
, select
10 from sqlalchemy
.types
import Integer
12 def create_translation_table(_table_name
, foreign_class
, relation_name
,
13 language_class
, relation_lazy
='select', **kwargs
):
14 """Creates a table that represents some kind of data attached to the given
15 foreign class, but translated across several languages. Returns the new
16 table's mapped class. It won't be declarative, but it will have a
17 `__table__` attribute so you can retrieve the Table object.
19 `foreign_class` must have a `__singlename__`, currently only used to create
20 the name of the foreign key column.
22 Also supports the notion of a default language, which is attached to the
23 session. This is English by default, for historical and practical reasons.
25 Usage looks like this:
29 create_translation_table('foo_bars', Foo, 'bars',
33 # Now you can do the following:
38 foo.name_map['en'] = "new name"
39 del foo.name_map['en']
41 q.options(joinedload(Foo.bars_local))
42 q.options(joinedload(Foo.bars))
44 The following properties are added to the passed class:
46 - `(relation_name)`, a relation to the new table. It uses a dict-based
47 collection class, where the keys are language identifiers and the values
48 are rows in the created tables.
49 - `(relation_name)_local`, a relation to the row in the new table that
50 matches the current default language.
51 - `(relation_name)_class`, the class created by this function.
53 Note that these are distinct relations. Even though the former necessarily
54 includes the latter, SQLAlchemy doesn't treat them as linked; loading one
55 will not load the other. Modifying both within the same transaction has
58 For each column provided, the following additional attributes are added to
61 - `(column)_map`, an association proxy onto `foo_bars`.
62 - `(column)`, an association proxy onto `foo_bars_local`.
64 Pardon the naming disparity, but the grammar suffers otherwise.
66 Modifying these directly is not likely to be a good idea.
68 # n.b.: language_class only exists for the sake of tests, which sometimes
69 # want to create tables entirely separate from the pokedex metadata
71 foreign_key_name
= foreign_class
.__singlename__
+ '_id'
73 Translations
= type(_table_name
, (object,), {
74 '_language_identifier': association_proxy('local_language', 'identifier'),
77 # Create the table object
78 table
= Table(_table_name
, foreign_class
.__table__
.metadata
,
79 Column(foreign_key_name
, Integer
, ForeignKey(foreign_class
.id),
80 primary_key
=True, nullable
=False),
81 Column('local_language_id', Integer
, ForeignKey(language_class
.id),
82 primary_key
=True, nullable
=False),
84 Translations
.__table__
= table
87 # Column objects have a _creation_order attribute in ascending order; use
88 # this to get the (unordered) kwargs sorted correctly
89 kwitems
= kwargs
.items()
90 kwitems
.sort(key
=lambda kv
: kv
[1]._creation_order
)
91 for name
, column
in kwitems
:
93 table
.append_column(column
)
96 mapper(Translations
, table
, properties
={
97 'foreign_id': synonym(foreign_key_name
),
98 'local_language': relationship(language_class
,
99 primaryjoin
=table
.c
.local_language_id
== language_class
.id,
103 # Add full-table relations to the original class
105 setattr(foreign_class
, relation_name
+ '_table', Translations
)
107 setattr(foreign_class
, relation_name
, relationship(Translations
,
108 primaryjoin
=foreign_class
.id == Translations
.foreign_id
,
109 collection_class
=attribute_mapped_collection('local_language'),
112 # This is a bit clever; it uses bindparam() to make the join clause
113 # modifiable on the fly. db sessions know the current language and
114 # populate the bindparam.
115 # The 'dummy' value is to trick SQLA; without it, SQLA thinks this
116 # bindparam is just its own auto-generated clause and everything gets
118 local_relation_name
= relation_name
+ '_local'
119 setattr(foreign_class
, local_relation_name
, relationship(Translations
,
121 Translations
.foreign_id
== foreign_class
.id,
122 Translations
.local_language_id
== bindparam('_default_language_id',
123 value
='dummy', type_
=Integer
, required
=True),
125 foreign_keys
=[Translations
.foreign_id
, Translations
.local_language_id
],
131 # Add per-column proxies to the original class
132 for name
, column
in kwitems
:
133 # Class.(column) -- accessor for the default language's value
134 setattr(foreign_class
, name
,
135 association_proxy(local_relation_name
, name
))
137 # Class.(column)_map -- accessor for the language dict
138 # Need a custom creator since Translations doesn't have an init, and
139 # these are passed as *args anyway
140 def creator(language
, value
):
142 row
.local_language
= language
143 setattr(row
, name
, value
)
145 setattr(foreign_class
, name
+ '_map',
146 association_proxy(relation_name
, name
, creator
=creator
))
151 class MultilangSession(Session
):
152 """A tiny Session subclass that adds support for a default language."""
153 _default_language_id
= 9 # English. XXX magic constant
156 def default_language(self
):
157 # XXX need to get the right mapped class for this to work
158 raise NotImplementedError
160 @default_language.setter
161 def default_language(self
, new
):
162 self
._default_language_id
= new
#.id
164 @default_language.deleter
165 def default_language(self
):
167 del self
._default_language_id
168 except AttributeError:
171 def execute(self
, clause
, params
=None, *args
, **kwargs
):
174 params
.setdefault('_default_language_id', self
._default_language_id
)
175 return super(MultilangSession
, self
).execute(
176 clause
, params
, *args
, **kwargs
)
178 class MultilangScopedSession(ScopedSession
):
179 """Dispatches language selection to the attached Session."""
182 def default_language(self
):
183 return self
.registry().default_language
185 @default_language.setter
186 def default_language(self
, new
):
187 self
.registry().default_language
= new
190 del self
.registry().default_language
191 super(MultilangScopedSession
, self
).remove()