Project

General

Profile

1
# SQL code generation
2

    
3
import operator
4
import re
5
import UserDict
6

    
7
import dicts
8
import iters
9
import lists
10
import objects
11
import strings
12
import util
13

    
14
##### Names
15

    
16
identifier_max_len = 63 # works for both PostgreSQL and MySQL
17

    
18
def add_suffix(str_, suffix):
19
    '''Preserves version so that it won't be truncated off the string, leading
20
    to collisions.'''
21
    # Preserve version
22
    before, sep, version = str_.rpartition('#')
23
    if sep != '': # found match
24
        str_ = before
25
        suffix = sep+version+suffix
26
    
27
    return strings.add_suffix(str_, suffix, identifier_max_len)
28

    
29
def is_safe_name(name):
30
    '''A name is safe *and unambiguous* if it:
31
    * contains only *lowercase* word (\w) characters
32
    * doesn't start with a digit
33
    * contains "_", so that it's not a keyword
34
    ''' 
35
    return re.match(r'^(?=.*_)(?!\d)[^\WA-Z]+$', name) 
36

    
37
def esc_name(name, quote='"'):
38
    return quote + name.replace(quote, quote+quote) + quote
39
        # doubling an embedded quote escapes it in both PostgreSQL and MySQL
40

    
41
def clean_name(name): return name.replace('"', '').replace('`', '')
42

    
43
##### General SQL code objects
44

    
45
class MockDb:
46
    def esc_value(self, value): return strings.repr_no_u(value)
47
    
48
    def esc_name(self, name): return esc_name(name)
49
mockDb = MockDb()
50

    
51
class BasicObject(objects.BasicObject):
52
    def __init__(self, value): self.value = value
53
    
54
    def __str__(self): return clean_name(strings.repr_no_u(self))
55

    
56
##### Unparameterized code objects
57

    
58
class Code(BasicObject):
59
    def to_str(self, db): raise NotImplementedError()
60
    
61
    def __repr__(self): return self.to_str(mockDb)
62

    
63
class CustomCode(Code):
64
    def __init__(self, str_): self.str_ = str_
65
    
66
    def to_str(self, db): return self.str_
67

    
68
def as_Code(value):
69
    if util.is_str(value): return CustomCode(value)
70
    else: return Literal(value)
71

    
72
class Expr(Code):
73
    def __init__(self, expr): self.expr = expr
74
    
75
    def to_str(self, db): return '('+self.expr.to_str(db)+')'
76

    
77
##### Literal values
78

    
79
class Literal(Code):
80
    def __init__(self, value): self.value = value
81
    
82
    def to_str(self, db): return db.esc_value(self.value)
83

    
84
def as_Value(value):
85
    if isinstance(value, Code): return value
86
    else: return Literal(value)
87

    
88
def is_null(value): return isinstance(value, Literal) and value.value == None
89

    
90
##### Derived elements
91

    
92
src_self = object() # tells Col that it is its own source column
93

    
94
class Derived(Code):
95
    def __init__(self, srcs):
96
        '''
97
        @param srcs See self.set_srcs()
98
        '''
99
        self.set_srcs(srcs)
100
    
101
    def set_srcs(self, srcs):
102
        '''
103
        @param srcs (self_type...)|src_self The element(s) this is derived from
104
        '''
105
        if srcs == src_self: srcs = (self,)
106
        srcs = tuple(srcs) # make Col hashable
107
        self.srcs = srcs
108
    
109
    def _compare_on(self):
110
        compare_on = self.__dict__.copy()
111
        del compare_on['srcs'] # ignore
112
        return compare_on
113

    
114
def cols_srcs(cols): return lists.uniqify(iters.flatten((v.srcs for v in cols)))
115

    
116
##### Tables
117

    
118
class Table(Code):
119
    def __init__(self, name, schema=None):
120
        '''
121
        @param schema str|None (for no schema)
122
        '''
123
        self.name = name
124
        self.schema = schema
125
    
126
    def to_str(self, db):
127
        str_ = ''
128
        if self.schema != None: str_ += db.esc_name(self.schema)+'.'
129
        str_ += db.esc_name(self.name)
130
        return str_
131
    
132
    def to_Table(self): return self
133

    
134
def as_Table(table):
135
    if table == None or isinstance(table, Code): return table
136
    else: return Table(table)
137

    
138
def suffixed_table(table, suffix): return Table(table.name+suffix, table.schema)
139

    
140
class NamedTable(Table):
141
    def __init__(self, name, code, cols=None):
142
        Table.__init__(self, name)
143
        
144
        if not isinstance(code, Code): code = Table(code)
145
        
146
        self.code = code
147
        self.cols = cols
148
    
149
    def to_str(self, db):
150
        str_ = self.code.to_str(db)+'\nAS '+Table.to_str(self, db)
151
        if self.cols != None: str_ += ' ('+(', '.join(self.cols))+')'
152
        return str_
153
    
154
    def to_Table(self): return Table(self.name)
155

    
156
##### Columns
157

    
158
class Col(Derived):
159
    def __init__(self, name, table=None, srcs=()):
160
        '''
161
        @param table Table|None (for no table)
162
        @param srcs (Col...)|src_self See Derived.set_srcs()
163
        '''
164
        Derived.__init__(self, srcs)
165
        
166
        if util.is_str(table): table = Table(table)
167
        assert table == None or isinstance(table, Table)
168
        
169
        self.name = name
170
        self.table = table
171
    
172
    def to_str(self, db):
173
        str_ = ''
174
        if self.table != None: str_ += self.table.to_str(db)+'.'
175
        str_ += db.esc_name(self.name)
176
        return str_
177
    
178
    def to_Col(self): return self
179

    
180
def is_table_col(col): return col.table != None
181

    
182
def as_Col(col, table=None, name=None):
183
    '''
184
    @param name If not None, any non-Col input will be renamed using NamedCol.
185
    '''
186
    if name != None:
187
        col = as_Value(col)
188
        if not isinstance(col, Col): col = NamedCol(name, col)
189
    
190
    if isinstance(col, Code): return col
191
    else: return Col(col, table)
192

    
193
def to_name_only_col(col, check_table=None):
194
    col = as_Col(col)
195
    if not isinstance(col, Col): return col
196
    
197
    if check_table != None:
198
        table = col.table
199
        assert table == None or table == check_table
200
    return Col(col.name)
201

    
202
class NamedCol(Col):
203
    def __init__(self, name, code):
204
        Col.__init__(self, name)
205
        
206
        if not isinstance(code, Code): code = Literal(code)
207
        
208
        self.code = code
209
    
210
    def to_str(self, db):
211
        return self.code.to_str(db)+' AS '+Col.to_str(self, db)
212
    
213
    def to_Col(self): return Col(self.name)
214

    
215
def remove_col_rename(col):
216
    if isinstance(col, NamedCol): col = col.code
217
    return col
218

    
219
def wrap(wrap_func, value):
220
    '''Wraps a value, propagating any column renaming to the returned value.'''
221
    if isinstance(value, NamedCol):
222
        return NamedCol(value.name, wrap_func(value.code))
223
    else: return wrap_func(value)
224

    
225
class ColDict(dicts.DictProxy):
226
    '''A dict that automatically makes inserted entries Col objects'''
227
    
228
    def __init__(self, db, keys_table, dict_={}):
229
        dicts.DictProxy.__init__(self, {})
230
        
231
        keys_table = as_Table(keys_table)
232
        
233
        self.db = db
234
        self.table = keys_table
235
        self.update(dict_) # after setting vars because __setitem__() needs them
236
    
237
    def copy(self): return ColDict(self.db, self.table, self.inner.copy())
238
    
239
    def __getitem__(self, key):
240
        return dicts.DictProxy.__getitem__(self, self._key(key))
241
    
242
    def __setitem__(self, key, value):
243
        key = self._key(key)
244
        if value == None: value = self.db.col_default(key)
245
        dicts.DictProxy.__setitem__(self, key, as_Col(value, name=key.name))
246
    
247
    def _key(self, key): return as_Col(key, self.table)
248

    
249
##### Functions
250

    
251
class Function(Table): pass
252

    
253
def TempFunction(name, autocommit):
254
    schema = None
255
    if not autocommit: schema = 'pg_temp'
256
    return Function(name, schema)
257

    
258
class InternalFunction(CustomCode): pass
259

    
260
class FunctionCall(Code):
261
    def __init__(self, function, *args):
262
        '''
263
        @param args [Code|literal-value...] The function's arguments
264
        '''
265
        if not isinstance(function, Code): function = Function(function)
266
        args = map(remove_col_rename, map(as_Value, args))
267
        
268
        self.function = function
269
        self.args = args
270
    
271
    def to_str(self, db):
272
        args_str = ', '.join((v.to_str(db) for v in self.args))
273
        return self.function.to_str(db)+'('+args_str+')'
274

    
275
def wrap_in_func(function, value):
276
    '''Wraps a value inside a function call.
277
    Propagates any column renaming to the returned value.
278
    '''
279
    return wrap(lambda v: FunctionCall(function, v), value)
280

    
281
def unwrap_func_call(func_call, check_name=None):
282
    '''Unwraps any function call to its first argument.
283
    Also removes any column renaming.
284
    '''
285
    func_call = remove_col_rename(func_call)
286
    if not isinstance(func_call, FunctionCall): return func_call
287
    
288
    if check_name != None:
289
        name = func_call.function.name
290
        assert name == None or name == check_name
291
    return func_call.args[0]
292

    
293
##### Conditions
294

    
295
class ColValueCond(Code):
296
    def __init__(self, col, value):
297
        value = as_ValueCond(value)
298
        
299
        self.col = col
300
        self.value = value
301
    
302
    def to_str(self, db): return self.value.to_str(db, self.col)
303

    
304
def combine_conds(conds, keyword=None):
305
    '''
306
    @param keyword The keyword to add before the conditions, if any
307
    '''
308
    str_ = ''
309
    if keyword != None:
310
        if conds == []: whitespace = ''
311
        elif len(conds) == 1: whitespace = ' '
312
        else: whitespace = '\n'
313
        str_ += keyword+whitespace
314
    
315
    str_ += '\nAND '.join(conds)
316
    return str_
317

    
318
##### Condition column comparisons
319

    
320
class ValueCond(BasicObject):
321
    def __init__(self, value):
322
        if not isinstance(value, Code): value = Literal(value)
323
        value = remove_col_rename(value)
324
        
325
        self.value = value
326
    
327
    def to_str(self, db, left_value):
328
        '''
329
        @param left_value The Code object that the condition is being applied on
330
        '''
331
        raise NotImplemented()
332
    
333
    def __repr__(self): return self.to_str(mockDb, '<left_value>')
334

    
335
class CompareCond(ValueCond):
336
    def __init__(self, value, operator='='):
337
        '''
338
        @param operator By default, compares NULL values literally. Use '~=' or
339
            '~!=' to pass NULLs through.
340
        '''
341
        ValueCond.__init__(self, value)
342
        self.operator = operator
343
    
344
    def to_str(self, db, left_value):
345
        if not isinstance(left_value, Code): left_value = Col(left_value)
346
        left_value = remove_col_rename(left_value)
347
        
348
        right_value = self.value
349
        left = left_value.to_str(db)
350
        right = right_value.to_str(db)
351
        
352
        # Parse operator
353
        operator = self.operator
354
        passthru_null_ref = [False]
355
        operator = strings.remove_prefix('~', operator, passthru_null_ref)
356
        neg_ref = [False]
357
        operator = strings.remove_prefix('!', operator, neg_ref)
358
        equals = operator.endswith('=')
359
        if equals and is_null(self.value): operator = 'IS'
360
        
361
        # Create str
362
        str_ = left+' '+operator+' '+right
363
        if equals and not passthru_null_ref[0] and isinstance(right_value, Col):
364
            str_ = '('+str_+' OR ('+left+' IS NULL AND '+right+' IS NULL))'
365
        if neg_ref[0]: str_ = 'NOT '+str_
366
        return str_
367

    
368
# Tells as_ValueCond() to assume a non-ValueCond is a literal value
369
assume_literal = object()
370

    
371
def as_ValueCond(value, default_table=assume_literal):
372
    if not isinstance(value, ValueCond):
373
        if default_table is not assume_literal:
374
            value = as_Col(value, default_table)
375
        return CompareCond(value)
376
    else: return value
377

    
378
##### Joins
379

    
380
join_same = object() # tells Join the left and right columns have the same name
381

    
382
# Tells Join the left and right columns have the same name and are never NULL
383
join_same_not_null = object()
384

    
385
filter_out = object() # tells Join to filter out rows that match the join
386

    
387
class Join(BasicObject):
388
    def __init__(self, table, mapping, type_=None):
389
        '''
390
        @param mapping dict(right_table_col=left_table_col, ...)
391
            * if left_table_col is join_same: left_table_col = right_table_col
392
              * Note that right_table_col must be a string
393
            * if left_table_col is join_same_not_null:
394
              left_table_col = right_table_col and both have NOT NULL constraint
395
              * Note that right_table_col must be a string
396
        @param type_ None (for plain join)|str (e.g. 'LEFT')|filter_out
397
            * filter_out: equivalent to 'LEFT' with the query filtered by
398
              `table_pkey IS NULL` (indicating no match)
399
        '''
400
        if util.is_str(table): table = Table(table)
401
        assert type_ == None or util.is_str(type_) or type_ is filter_out
402
        
403
        self.table = table
404
        self.mapping = mapping
405
        self.type_ = type_
406
    
407
    def to_str(self, db, left_table):
408
        # Switch order (left_table is on the right in the comparison)
409
        right_table = left_table
410
        left_table = self.table # note left_table is reassigned
411
        
412
        def join(entry):
413
            '''Parses non-USING joins'''
414
            right_table_col, left_table_col = entry
415
            
416
            # Switch order (right_table_col is on the left in the comparison)
417
            left = right_table_col
418
            right = left_table_col
419
            
420
            # Parse special values
421
            if right is join_same: right = left
422
            elif right is join_same_not_null:
423
                right = CompareCond(as_Col(left, right_table), '~=')
424
            
425
            right = as_ValueCond(right, right_table)
426
            return right.to_str(db, as_Col(left, left_table))
427
        
428
        # Create join condition
429
        type_ = self.type_
430
        joins = self.mapping
431
        if type_ is not filter_out and reduce(operator.and_,
432
            (v is join_same_not_null for v in joins.itervalues())):
433
            # all cols w/ USING, so can use simpler USING syntax
434
            cols = (as_Col(v).to_str(db) for v in joins.iterkeys())
435
            join_cond = 'USING ('+(', '.join(cols))+')'
436
        else:
437
            if len(joins) == 1: whitespace = ' '
438
            else: whitespace = '\n'
439
            join_cond = combine_conds(map(join, joins.iteritems()), 'ON')
440
        
441
        # Create join
442
        if type_ is filter_out: type_ = 'LEFT'
443
        str_ = ''
444
        if type_ != None: str_ += type_+' '
445
        str_ += 'JOIN '+left_table.to_str(db)+' '+join_cond
446
        return str_
447
    
448
    def __repr__(self): return self.to_str(mockDb, '<left_table>')
449

    
450
##### Value exprs
451

    
452
row_count = CustomCode('count(*)')
453

    
454
def EnsureNotNull(value, null=r'\N'):
455
    return FunctionCall(InternalFunction('coalesce'), as_Col(value), null)
456

    
457
##### Database structure
458

    
459
class TypedCol(Col):
460
    def __init__(self, name, type_):
461
        Col.__init__(self, name)
462
        
463
        self.type = type_
464
    
465
    def to_str(self, db): return Col.to_str(self, db)+' '+self.type
466
    
467
    def to_Col(self): return Col(self.name)
(25-25/36)