##// END OF EJS Templates
jsonalchemy: add de_coerce to reverse serialization of list and dict elements from Mutation objects back to original state.
marcink -
r2397:737f97b5 default
parent child Browse files
Show More
@@ -1,265 +1,274 b''
1 1 # -*- coding: utf-8 -*-
2 2
3 3 # Copyright (C) 2010-2017 RhodeCode GmbH
4 4 #
5 5 # This program is free software: you can redistribute it and/or modify
6 6 # it under the terms of the GNU Affero General Public License, version 3
7 7 # (only), as published by the Free Software Foundation.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU Affero General Public License
15 15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16 #
17 17 # This program is dual-licensed. If you wish to learn more about the
18 18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20 20
21 21 import collections
22 22
23 23 import sqlalchemy
24 24 from sqlalchemy import UnicodeText
25 25 from sqlalchemy.ext.mutable import Mutable
26 26
27 27 from rhodecode.lib.ext_json import json
28 28
29 29
30 30 class JsonRaw(unicode):
31 31 """
32 32 Allows interacting with a JSON types field using a raw string.
33 33
34 34 For example::
35 35 db_instance = JsonTable()
36 36 db_instance.enabled = True
37 37 db_instance.json_data = JsonRaw('{"a": 4}')
38 38
39 39 This will bypass serialization/checks, and allow storing
40 40 raw values
41 41 """
42 42 pass
43 43
44 44
45 45 # Set this to the standard dict if Order is not required
46 46 DictClass = collections.OrderedDict
47 47
48 48
49 49 class JSONEncodedObj(sqlalchemy.types.TypeDecorator):
50 50 """
51 51 Represents an immutable structure as a json-encoded string.
52 52
53 53 If default is, for example, a dict, then a NULL value in the
54 54 database will be exposed as an empty dict.
55 55 """
56 56
57 57 impl = UnicodeText
58 58 safe = True
59 59
60 60 def __init__(self, *args, **kwargs):
61 61 self.default = kwargs.pop('default', None)
62 62 self.safe = kwargs.pop('safe_json', self.safe)
63 63 self.dialect_map = kwargs.pop('dialect_map', {})
64 64 super(JSONEncodedObj, self).__init__(*args, **kwargs)
65 65
66 66 def load_dialect_impl(self, dialect):
67 67 if dialect.name in self.dialect_map:
68 68 return dialect.type_descriptor(self.dialect_map[dialect.name])
69 69 return dialect.type_descriptor(self.impl)
70 70
71 71 def process_bind_param(self, value, dialect):
72 72 if isinstance(value, JsonRaw):
73 73 value = value
74 74 elif value is not None:
75 75 value = json.dumps(value)
76 76 return value
77 77
78 78 def process_result_value(self, value, dialect):
79 79 if self.default is not None and (not value or value == '""'):
80 80 return self.default()
81 81
82 82 if value is not None:
83 83 try:
84 84 value = json.loads(value, object_pairs_hook=DictClass)
85 85 except Exception as e:
86 86 if self.safe and self.default is not None:
87 87 return self.default()
88 88 else:
89 89 raise
90 90 return value
91 91
92 92
93 93 class MutationObj(Mutable):
94 94 @classmethod
95 95 def coerce(cls, key, value):
96 96 if isinstance(value, dict) and not isinstance(value, MutationDict):
97 97 return MutationDict.coerce(key, value)
98 98 if isinstance(value, list) and not isinstance(value, MutationList):
99 99 return MutationList.coerce(key, value)
100 100 return value
101 101
102 def de_coerce(self):
103 return self
104
102 105 @classmethod
103 106 def _listen_on_attribute(cls, attribute, coerce, parent_cls):
104 107 key = attribute.key
105 108 if parent_cls is not attribute.class_:
106 109 return
107 110
108 111 # rely on "propagate" here
109 112 parent_cls = attribute.class_
110 113
111 114 def load(state, *args):
112 115 val = state.dict.get(key, None)
113 116 if coerce:
114 117 val = cls.coerce(key, val)
115 118 state.dict[key] = val
116 119 if isinstance(val, cls):
117 120 val._parents[state.obj()] = key
118 121
119 122 def set(target, value, oldvalue, initiator):
120 123 if not isinstance(value, cls):
121 124 value = cls.coerce(key, value)
122 125 if isinstance(value, cls):
123 126 value._parents[target.obj()] = key
124 127 if isinstance(oldvalue, cls):
125 128 oldvalue._parents.pop(target.obj(), None)
126 129 return value
127 130
128 131 def pickle(state, state_dict):
129 132 val = state.dict.get(key, None)
130 133 if isinstance(val, cls):
131 134 if 'ext.mutable.values' not in state_dict:
132 135 state_dict['ext.mutable.values'] = []
133 136 state_dict['ext.mutable.values'].append(val)
134 137
135 138 def unpickle(state, state_dict):
136 139 if 'ext.mutable.values' in state_dict:
137 140 for val in state_dict['ext.mutable.values']:
138 141 val._parents[state.obj()] = key
139 142
140 143 sqlalchemy.event.listen(parent_cls, 'load', load, raw=True,
141 144 propagate=True)
142 145 sqlalchemy.event.listen(parent_cls, 'refresh', load, raw=True,
143 146 propagate=True)
144 147 sqlalchemy.event.listen(parent_cls, 'pickle', pickle, raw=True,
145 148 propagate=True)
146 149 sqlalchemy.event.listen(attribute, 'set', set, raw=True, retval=True,
147 150 propagate=True)
148 151 sqlalchemy.event.listen(parent_cls, 'unpickle', unpickle, raw=True,
149 152 propagate=True)
150 153
151 154
152 155 class MutationDict(MutationObj, DictClass):
153 156 @classmethod
154 157 def coerce(cls, key, value):
155 158 """Convert plain dictionary to MutationDict"""
156 159 self = MutationDict(
157 160 (k, MutationObj.coerce(key, v)) for (k, v) in value.items())
158 161 self._key = key
159 162 return self
160 163
164 def de_coerce(self):
165 return dict(self)
166
161 167 def __setitem__(self, key, value):
162 168 # Due to the way OrderedDict works, this is called during __init__.
163 169 # At this time we don't have a key set, but what is more, the value
164 170 # being set has already been coerced. So special case this and skip.
165 171 if hasattr(self, '_key'):
166 172 value = MutationObj.coerce(self._key, value)
167 173 DictClass.__setitem__(self, key, value)
168 174 self.changed()
169 175
170 176 def __delitem__(self, key):
171 177 DictClass.__delitem__(self, key)
172 178 self.changed()
173 179
174 180 def __setstate__(self, state):
175 181 self.__dict__ = state
176 182
177 183 def __reduce_ex__(self, proto):
178 184 # support pickling of MutationDicts
179 185 d = dict(self)
180 return (self.__class__, (d, ))
186 return (self.__class__, (d,))
181 187
182 188
183 189 class MutationList(MutationObj, list):
184 190 @classmethod
185 191 def coerce(cls, key, value):
186 192 """Convert plain list to MutationList"""
187 193 self = MutationList((MutationObj.coerce(key, v) for v in value))
188 194 self._key = key
189 195 return self
190 196
197 def de_coerce(self):
198 return list(self)
199
191 200 def __setitem__(self, idx, value):
192 201 list.__setitem__(self, idx, MutationObj.coerce(self._key, value))
193 202 self.changed()
194 203
195 204 def __setslice__(self, start, stop, values):
196 205 list.__setslice__(self, start, stop,
197 206 (MutationObj.coerce(self._key, v) for v in values))
198 207 self.changed()
199 208
200 209 def __delitem__(self, idx):
201 210 list.__delitem__(self, idx)
202 211 self.changed()
203 212
204 213 def __delslice__(self, start, stop):
205 214 list.__delslice__(self, start, stop)
206 215 self.changed()
207 216
208 217 def append(self, value):
209 218 list.append(self, MutationObj.coerce(self._key, value))
210 219 self.changed()
211 220
212 221 def insert(self, idx, value):
213 222 list.insert(self, idx, MutationObj.coerce(self._key, value))
214 223 self.changed()
215 224
216 225 def extend(self, values):
217 226 list.extend(self, (MutationObj.coerce(self._key, v) for v in values))
218 227 self.changed()
219 228
220 229 def pop(self, *args, **kw):
221 230 value = list.pop(self, *args, **kw)
222 231 self.changed()
223 232 return value
224 233
225 234 def remove(self, value):
226 235 list.remove(self, value)
227 236 self.changed()
228 237
229 238
230 239 def JsonType(impl=None, **kwargs):
231 240 """
232 241 Helper for using a mutation obj, it allows to use .with_variant easily.
233 242 example::
234 243
235 244 settings = Column('settings_json',
236 245 MutationObj.as_mutable(
237 246 JsonType(dialect_map=dict(mysql=UnicodeText(16384))))
238 247 """
239 248
240 249 if impl == 'list':
241 250 return JSONEncodedObj(default=list, **kwargs)
242 251 elif impl == 'dict':
243 252 return JSONEncodedObj(default=DictClass, **kwargs)
244 253 else:
245 254 return JSONEncodedObj(**kwargs)
246 255
247 256
248 257 JSON = MutationObj.as_mutable(JsonType())
249 258 """
250 259 A type to encode/decode JSON on the fly
251 260
252 261 sqltype is the string type for the underlying DB column::
253 262
254 263 Column(JSON) (defaults to UnicodeText)
255 264 """
256 265
257 266 JSONDict = MutationObj.as_mutable(JsonType('dict'))
258 267 """
259 268 A type to encode/decode JSON dictionaries on the fly
260 269 """
261 270
262 271 JSONList = MutationObj.as_mutable(JsonType('list'))
263 272 """
264 273 A type to encode/decode JSON lists` on the fly
265 274 """
General Comments 0
You need to be logged in to leave comments. Login now