Project

General

Profile

1
# Database import/export
2

    
3
import copy
4
import operator
5
import warnings
6

    
7
import exc
8
import dicts
9
import sql
10
import sql_gen
11
import strings
12
import util
13

    
14
##### Exceptions
15

    
16
# Can't use built-in SyntaxError because it stringifies to only the first line
17
class SyntaxError(Exception): pass
18

    
19
##### Data cleanup
20

    
21
null_strs = ['', r'\N', 'NULL', 'UNKNOWN']
22

    
23
def cleanup_table(db, table):
24
    table = sql_gen.as_Table(table)
25
    cols = [sql_gen.as_Col(c, table) for c in sql.table_cols(db, table)]
26
    cols = filter(lambda c: sql_gen.is_text_col(db, c), cols)
27
    
28
    expr = 'trim(both from %s)'
29
    for null in null_strs: expr = 'nullif('+expr+', '+db.esc_value(null)+')'
30
    changes = [(v, sql_gen.CustomCode(expr % v.to_str(db))) for v in cols]
31
    
32
    while True:
33
        try:
34
            sql.update(db, table, changes, in_place=True, recover=True)
35
            break # successful
36
        except sql.NullValueException, e:
37
            col, = e.cols
38
            sql.drop_not_null(db, col)
39

    
40
##### Error tracking
41

    
42
def track_data_error(db, errors_table, cols, value, error_code, error):
43
    '''
44
    @param errors_table If None, does nothing.
45
    '''
46
    if errors_table == None or cols == (): return
47
    
48
    for col in cols:
49
        try:
50
            sql.insert(db, errors_table, dict(column=col.name, value=value,
51
                error_code=error_code, error=error), recover=True,
52
                cacheable=True, log_level=4)
53
        except sql.DuplicateKeyException: pass
54

    
55
class ExcToErrorsTable(sql_gen.ExcToWarning):
56
    '''Handles an exception by saving it or converting it to a warning.'''
57
    def __init__(self, return_, srcs, errors_table, value=None):
58
        '''
59
        @param return_ See sql_gen.ExcToWarning
60
        @param srcs The column names for the errors table
61
        @param errors_table None|sql_gen.Table
62
        @param value The value (or an expression for it) that caused the error
63
        @pre The invalid value must be in a local variable "value" of type text.
64
        '''
65
        sql_gen.ExcToWarning.__init__(self, return_)
66
        
67
        value = sql_gen.as_Code(value)
68
        
69
        self.srcs = srcs
70
        self.errors_table = errors_table
71
        self.value = value
72
    
73
    def to_str(self, db):
74
        if not self.srcs or self.errors_table == None:
75
            return sql_gen.ExcToWarning.to_str(self, db)
76
        
77
        errors_table_cols = map(sql_gen.Col,
78
            ['column', 'value', 'error_code', 'error'])
79
        col_names_query = sql.mk_select(db, sql_gen.NamedValues('c', None,
80
            [[c.name] for c in self.srcs]), order_by=None)
81
        insert_query = sql.mk_insert_select(db, self.errors_table,
82
            errors_table_cols,
83
            sql_gen.Values(errors_table_cols).to_str(db))+';\n'
84
        return '''\
85
-- Save error in errors table.
86
DECLARE
87
    error_code text := SQLSTATE;
88
    error text := SQLERRM;
89
    value text := '''+self.value.to_str(db)+''';
90
    "column" text;
91
BEGIN
92
    -- Insert the value and error for *each* source column.
93
'''+strings.indent(sql_gen.RowExcIgnore(None, col_names_query, insert_query,
94
    row_var=errors_table_cols[0]).to_str(db))+'''
95
END;
96

    
97
'''+self.return_.to_str(db)
98

    
99
def data_exception_handler(*args, **kw_args):
100
    '''Handles a data_exception by saving it or converting it to a warning.
101
    For params, see ExcToErrorsTable().
102
    '''
103
    return sql_gen.data_exception_handler(ExcToErrorsTable(*args, **kw_args))
104

    
105
def cast(db, type_, col, errors_table=None):
106
    '''Casts an (unrenamed) column or value.
107
    If errors_table set and col has srcs, saves errors in errors_table (using
108
    col's srcs attr as source columns). Otherwise, converts errors to warnings.
109
    @param col str|sql_gen.Col|sql_gen.Literal
110
    @param errors_table None|sql_gen.Table|str
111
    '''
112
    col = sql_gen.as_Col(col)
113
    
114
    # Don't convert exceptions to warnings for user-supplied constants
115
    if isinstance(col, sql_gen.Literal): return sql_gen.Cast(type_, col)
116
    
117
    assert not isinstance(col, sql_gen.NamedCol)
118
    
119
    function_name = strings.first_word(type_)
120
    srcs = col.srcs
121
    save_errors = errors_table != None and srcs
122
    if save_errors: # function will be unique for the given srcs
123
        function_name = strings.ustr(sql_gen.FunctionCall(function_name,
124
            *map(sql_gen.to_name_only_col, srcs)))
125
    function = db.TempFunction(function_name)
126
    
127
    # Create function definition
128
    modifiers = 'STRICT'
129
    if not save_errors: modifiers = 'IMMUTABLE '+modifiers
130
    value_param = sql_gen.FunctionParam('value', 'text')
131
    handler = data_exception_handler('RETURN NULL;\n', srcs, errors_table,
132
        value_param.name)
133
    body = sql_gen.CustomCode(handler.to_str(db, '''\
134
/* The explicit cast to the return type is needed to make the cast happen
135
inside the try block. (Implicit casts to the return type happen at the end
136
of the function, outside any block.) */
137
RETURN value::'''+type_+''';
138
'''))
139
    body.lang='plpgsql'
140
    sql.define_func(db, sql_gen.FunctionDef(function, type_, body,
141
        [value_param], modifiers))
142
    
143
    return sql_gen.FunctionCall(function, col)
144

    
145
def func_wrapper_exception_handler(db, return_, args, errors_table):
146
    '''Handles a function call's data_exceptions.
147
    Supports PL/Python functions.
148
    @param return_ See data_exception_handler()
149
    @param args [arg...] Function call's args
150
    @param errors_table See data_exception_handler()
151
    '''
152
    args = filter(sql_gen.has_srcs, args)
153
    
154
    srcs = sql_gen.cross_join_srcs(args)
155
    value = sql_gen.merge_not_null(db, ',', args)
156
    return sql_gen.NestedExcHandler(
157
        data_exception_handler(return_, srcs, errors_table, value)
158
        , sql_gen.plpythonu_error_handler
159
        )
160

    
161
def cast_temp_col(db, type_, col, errors_table=None):
162
    '''Like cast(), but creates a new column with the cast values if the input
163
    is a column.
164
    @return The new column or cast value
165
    '''
166
    def cast_(col): return cast(db, type_, col, errors_table)
167
    
168
    try: col = sql_gen.underlying_col(col)
169
    except sql_gen.NoUnderlyingTableException: return sql_gen.wrap(cast_, col)
170
    
171
    table = col.table
172
    new_col = sql_gen.suffixed_col(col, '::'+strings.first_word(type_))
173
    expr = cast_(col)
174
    
175
    # Add column
176
    new_typed_col = sql_gen.TypedCol(new_col.name, type_)
177
    sql.add_col(db, table, new_typed_col, comment=strings.urepr(col)+'::'+type_)
178
    new_col.name = new_typed_col.name # propagate any renaming
179
    
180
    sql.update(db, table, [(new_col, expr)], in_place=True, recover=True)
181
    
182
    return new_col
183

    
184
def errors_table(db, table, if_exists=True):
185
    '''
186
    @param if_exists If set, returns None if the errors table doesn't exist
187
    @return None|sql_gen.Table
188
    '''
189
    table = sql_gen.as_Table(table)
190
    if table.srcs != (): table = table.srcs[0]
191
    
192
    errors_table = sql_gen.suffixed_table(table, '.errors')
193
    if if_exists and not sql.table_exists(db, errors_table): return None
194
    return errors_table
195

    
196
def mk_errors_table(db, table):
197
    errors_table_ = errors_table(db, table, if_exists=False)
198
    if sql.table_exists(db, errors_table_): return
199
    
200
    typed_cols = [
201
        sql_gen.TypedCol('column', 'text', nullable=False),
202
        sql_gen.TypedCol('value', 'text'),
203
        sql_gen.TypedCol('error_code', 'character varying(5)', nullable=False),
204
        sql_gen.TypedCol('error', 'text', nullable=False),
205
        ]
206
    sql.create_table(db, errors_table_, typed_cols, has_pkey=False)
207
    index_cols = ['column', 'value', 'error_code', 'error']
208
    sql.add_index(db, index_cols, errors_table_, unique=True)
209

    
210
##### Import
211

    
212
def put(db, table, row, pkey_=None, row_ct_ref=None):
213
    '''Recovers from errors.
214
    Only works under PostgreSQL (uses INSERT RETURNING).
215
    '''
216
    return put_table(db, table, [], row, row_ct_ref)
217

    
218
def get(db, table, row, pkey, row_ct_ref=None, create=False):
219
    '''Recovers from errors'''
220
    try:
221
        return sql.value(sql.select(db, table, [pkey], row, limit=1,
222
            recover=True))
223
    except StopIteration:
224
        if not create: raise
225
        return put(db, table, row, pkey, row_ct_ref) # insert new row
226

    
227
def is_func_result(col):
228
    return col.table.name.find('(') >= 0 and col.name == 'result'
229

    
230
def into_table_name(out_table, in_tables0, mapping, is_func):
231
    def in_col_str(in_col):
232
        in_col = sql_gen.remove_col_rename(in_col)
233
        if isinstance(in_col, sql_gen.Col):
234
            table = in_col.table
235
            if table == in_tables0:
236
                in_col = sql_gen.to_name_only_col(in_col)
237
            elif is_func_result(in_col): in_col = table # omit col name
238
        return strings.ustr(in_col)
239
    
240
    str_ = str(out_table)
241
    if is_func:
242
        str_ += '('
243
        
244
        try: value_in_col = mapping['value']
245
        except KeyError:
246
            str_ += ', '.join((str(k)+'='+in_col_str(v)
247
                for k, v in mapping.iteritems()))
248
        else: str_ += in_col_str(value_in_col)
249
        
250
        str_ += ')'
251
    else:
252
        out_col = 'rank'
253
        try: in_col = mapping[out_col]
254
        except KeyError: str_ += '_pkeys'
255
        else: # has a rank column, so hierarchical
256
            str_ += '['+str(out_col)+'='+in_col_str(in_col)+']'
257
    return str_
258

    
259
def put_table(db, out_table, in_tables, mapping, row_ct_ref=None, default=None,
260
    col_defaults={}, on_error=exc.reraise):
261
    '''Recovers from errors.
262
    Only works under PostgreSQL (uses INSERT RETURNING).
263
    IMPORTANT: Must be run at the *beginning* of a transaction.
264
    @param in_tables The main input table to select from, followed by a list of
265
        tables to join with it using the main input table's pkey
266
    @param mapping dict(out_table_col=in_table_col, ...)
267
        * out_table_col: str (*not* sql_gen.Col)
268
        * in_table_col: sql_gen.Col|literal-value
269
    @param default The *output* column to use as the pkey for missing rows.
270
        If this output column does not exist in the mapping, uses None.
271
    @param col_defaults Default values for required columns.
272
    @return sql_gen.Col Where the output pkeys are made available
273
    '''
274
    import psycopg2.extensions
275
    
276
    out_table = sql_gen.as_Table(out_table)
277
    
278
    def log_debug(msg): db.log_debug(msg, level=1.5)
279
    def col_ustr(str_):
280
        return strings.repr_no_u(sql_gen.remove_col_rename(str_))
281
    
282
    log_debug('********** New iteration **********')
283
    log_debug('Inserting these input columns into '+strings.as_tt(
284
        out_table.to_str(db))+':\n'+strings.as_table(mapping, ustr=col_ustr))
285
    
286
    is_function = sql.function_exists(db, out_table)
287
    
288
    if is_function: out_pkey = 'result'
289
    else: out_pkey = sql.pkey(db, out_table, recover=True)
290
    out_pkey_col = sql_gen.as_Col(out_pkey, out_table)
291
    
292
    in_tables_ = in_tables[:] # don't modify input!
293
    try: in_tables0 = in_tables_.pop(0) # first table is separate
294
    except IndexError: in_tables0 = None
295
    else:
296
        in_pkey = sql.pkey(db, in_tables0, recover=True)
297
        in_pkey_col = sql_gen.as_Col(in_pkey, in_tables0)
298
    
299
    # Determine if can use optimization for only literal values
300
    is_literals = not reduce(operator.or_, map(sql_gen.is_table_col,
301
        mapping.values()), False)
302
    is_literals_or_function = is_literals or is_function
303
    
304
    if in_tables0 == None: errors_table_ = None
305
    else: errors_table_ = errors_table(db, in_tables0)
306
    
307
    # Create input joins from list of input tables
308
    input_joins = [in_tables0]+[sql_gen.Join(v,
309
        {in_pkey: sql_gen.join_same_not_null}) for v in in_tables_]
310
    
311
    if mapping == {} and not is_function: # need >= one column for INSERT SELECT
312
        mapping = {out_pkey: None} # ColDict will replace with default value
313
    
314
    if not is_literals:
315
        into = sql_gen.as_Table(into_table_name(out_table, in_tables0, mapping,
316
            is_function))
317
        
318
        # Set column sources
319
        in_cols = filter(sql_gen.is_table_col, mapping.values())
320
        for col in in_cols:
321
            if col.table == in_tables0: col.set_srcs(sql_gen.src_self)
322
        
323
        log_debug('Joining together input tables into temp table')
324
        # Place in new table so don't modify input and for speed
325
        in_table = sql_gen.Table('in')
326
        mapping = dicts.join(mapping, sql.flatten(db, in_table, input_joins,
327
            in_cols, preserve=[in_pkey_col]))
328
        input_joins = [in_table]
329
        db.log_debug('Temp table: '+strings.as_tt(in_table.to_str(db)), level=2)
330
    
331
    # Wrap mapping in a sql_gen.ColDict.
332
    # sql_gen.ColDict sanitizes both keys and values passed into it.
333
    # Do after applying dicts.join() because that returns a plain dict.
334
    mapping = sql_gen.ColDict(db, out_table, mapping)
335
    
336
    # Resolve default value column
337
    if default != None:
338
        try: default = mapping[default]
339
        except KeyError:
340
            db.log_debug('Default value column '
341
                +strings.as_tt(strings.repr_no_u(default))
342
                +' does not exist in mapping, falling back to None', level=2.1)
343
            default = None
344
    
345
    # Save default values for all rows since in_table may have rows deleted
346
    if is_literals: pass
347
    elif is_function: full_in_table = in_table
348
    else:
349
        full_in_table = sql_gen.suffixed_table(in_table, '_full')
350
        full_in_table_cols = [in_pkey_col]
351
        if default != None:
352
            full_in_table_cols.append(default)
353
            default = sql_gen.with_table(default, full_in_table)
354
        sql.run_query_into(db, sql.mk_select(db, in_table, full_in_table_cols,
355
            order_by=None), into=full_in_table, add_pkey_=True)
356
    
357
    if not is_literals:
358
        pkeys_names = [in_pkey, out_pkey]
359
        pkeys_cols = [in_pkey_col, out_pkey_col]
360
    
361
    pkeys_table_exists_ref = [False]
362
    def insert_into_pkeys(joins, cols=None, limit=None, **kw_args):
363
        query = sql.mk_select(db, joins, cols, order_by=None, limit=limit)
364
        if pkeys_table_exists_ref[0]:
365
            sql.insert_select(db, into, pkeys_names, query, **kw_args)
366
        else:
367
            sql.run_query_into(db, query, into=into, add_pkey_=True, **kw_args)
368
            pkeys_table_exists_ref[0] = True
369
    
370
    limit_ref = [None]
371
    def mk_main_select(joins, cols):
372
        return sql.mk_select(db, joins, cols, limit=limit_ref[0], order_by=None)
373
    
374
    if is_literals: insert_in_table = None
375
    else:
376
        insert_in_table = in_table
377
        insert_in_tables = [insert_in_table]
378
    join_cols = sql_gen.ColDict(db, out_table)
379
    
380
    exc_strs = set()
381
    def log_exc(e):
382
        e_str = exc.str_(e, first_line_only=True)
383
        log_debug('Caught exception: '+e_str)
384
        if e_str in exc_strs: # avoid infinite loops
385
            log_debug('Exception already seen, handler broken')
386
            on_error(e)
387
            remove_all_rows()
388
        else: exc_strs.add(e_str)
389
    
390
    def remove_all_rows():
391
        log_debug('Ignoring all rows')
392
        limit_ref[0] = 0 # just create an empty pkeys table
393
    
394
    def ignore_cond(cond, e):
395
        if is_literals: remove_all_rows()
396
        else:
397
            out_table_cols = sql_gen.ColDict(db, out_table)
398
            out_table_cols.update(util.dict_subset_right_join({},
399
                sql.table_cols(db, out_table)))
400
            
401
            in_cols = []
402
            cond = sql.map_expr(db, cond, mapping, in_cols)
403
            cond = sql.map_expr(db, cond, out_table_cols)
404
            
405
            track_data_error(db, errors_table_, sql_gen.cols_srcs(in_cols),
406
                None, e.cause.pgcode,
407
                strings.ensure_newl(e.cause.pgerror)+'condition: '+cond)
408
            
409
            not_cond = sql_gen.NotCond(sql_gen.CustomCode(cond))
410
            log_debug('Ignoring rows where '+strings.as_tt(not_cond.to_str(db)))
411
            sql.delete(db, insert_in_table, not_cond)
412
    
413
    not_null_cols = set()
414
    def ignore(in_col, value, e):
415
        if sql_gen.is_table_col(in_col):
416
            in_col = sql_gen.with_table(in_col, insert_in_table)
417
            
418
            track_data_error(db, errors_table_, in_col.srcs, value,
419
                e.cause.pgcode, e.cause.pgerror)
420
            
421
            sql.add_index(db, in_col, insert_in_table) # enable fast filtering
422
            if value != None and in_col not in not_null_cols:
423
                log_debug('Replacing invalid value '+strings.as_tt(repr(value))
424
                    +' with NULL in column '+strings.as_tt(in_col.to_str(db)))
425
                sql.update(db, insert_in_table, [(in_col, None)],
426
                    sql_gen.ColValueCond(in_col, value))
427
            else:
428
                log_debug('Ignoring rows with '+strings.as_tt(in_col.to_str(db))
429
                    +' = '+strings.as_tt(repr(value)))
430
                sql.delete(db, insert_in_table,
431
                    sql_gen.ColValueCond(in_col, value))
432
                if value == None: not_null_cols.add(in_col)
433
        else:
434
            assert isinstance(in_col, sql_gen.NamedCol)
435
            in_value = sql_gen.remove_col_rename(in_col)
436
            assert sql_gen.is_literal(in_value)
437
            if value == in_value.value:
438
                if value != None:
439
                    log_debug('Replacing invalid literal '
440
                        +strings.as_tt(in_col.to_str(db))+' with NULL')
441
                    mapping[in_col.name] = None
442
                else:
443
                    remove_all_rows()
444
            # otherwise, all columns were being ignore()d because the specific
445
            # column couldn't be identified, and this was not the invalid column
446
    
447
    if not is_literals:
448
        def insert_pkeys_table(which):
449
            return sql_gen.Table(sql_gen.concat(in_table.name,
450
                '_insert_'+which+'_pkeys'))
451
        insert_out_pkeys = insert_pkeys_table('out')
452
        insert_in_pkeys = insert_pkeys_table('in')
453
    
454
    def mk_func_call():
455
        args = dict(((k.name, v) for k, v in mapping.iteritems()))
456
        func_call = sql_gen.NamedCol(out_pkey,
457
            sql_gen.FunctionCall(out_table, **args))
458
        return func_call, args
459
        
460
    if is_function and not is_literals:
461
        log_debug('Defining wrapper function')
462
        
463
        func_call, args = mk_func_call()
464
        
465
        # Create empty pkeys table so its row type can be used
466
        insert_into_pkeys(input_joins, [in_pkey_col, func_call], limit=0,
467
            recover=True)
468
        result_type = db.col_info(sql_gen.Col(out_pkey, into)).type
469
        
470
        ## Create error handling wrapper function
471
        
472
        wrapper = db.TempFunction(sql_gen.concat(into.name, '_wrap'))
473
        
474
        select_cols = [in_pkey_col]+args.values()
475
        row_var = copy.copy(sql_gen.row_var)
476
        row_var.set_srcs([in_table])
477
        in_pkey_var = sql_gen.Col(in_pkey, row_var)
478
        
479
        args = dict(((k, sql_gen.with_table(v, row_var))
480
            for k, v in args.iteritems()))
481
        func_call = sql_gen.FunctionCall(out_table, **args)
482
        
483
        def mk_return(result):
484
            return sql_gen.ReturnQuery(sql.mk_select(db,
485
                fields=[in_pkey_var, result], explain=False))
486
        exc_handler = func_wrapper_exception_handler(db,
487
            mk_return(sql_gen.Cast(result_type, None)), args.values(),
488
            errors_table_)
489
        
490
        sql.define_func(db, sql_gen.FunctionDef(wrapper, sql_gen.SetOf(into),
491
            sql_gen.RowExcIgnore(sql_gen.RowType(in_table),
492
                sql.mk_select(db, input_joins, order_by=None),
493
                mk_return(func_call), exc_handler=exc_handler)
494
            ))
495
        wrapper_table = sql_gen.FunctionCall(wrapper)
496
    
497
    # Do inserts and selects
498
    while True:
499
        has_joins = join_cols != {}
500
        
501
        # Handle unrecoverable errors in a special case
502
        if limit_ref[0] == 0:
503
            if is_literals or default == None:
504
                default = sql_gen.remove_col_rename(default)
505
                log_debug('Returning default: '+strings.as_tt(repr(default)))
506
                return default
507
            elif is_function: pass # empty pkeys table already created
508
            else:
509
                log_debug('Creating an empty output pkeys table')
510
                has_joins = False # use the no-joins case
511
                cur = sql.run_query_into(db, sql.mk_select(db, out_table,
512
                    [out_pkey], order_by=None, limit=0), into=insert_out_pkeys)
513
            
514
            break # don't do main case
515
        
516
        # Prepare to insert new rows
517
        if is_function:
518
            log_debug('Calling function on input rows')
519
            if is_literals: func_call, args = mk_func_call()
520
        else:
521
            log_debug('Trying to insert new rows')
522
            insert_args = dict(recover=True, cacheable=False)
523
            if has_joins:
524
                insert_args.update(dict(ignore=True))
525
            else:
526
                insert_args.update(dict(returning=out_pkey))
527
                if not is_literals:
528
                    insert_args.update(dict(into=insert_out_pkeys))
529
            main_select = mk_main_select([insert_in_table], [sql_gen.with_table(
530
                c, insert_in_table) for c in mapping.values()])
531
        
532
        try:
533
            cur = None
534
            if is_function:
535
                if is_literals:
536
                    cur = sql.select(db, fields=[func_call], recover=True,
537
                        cacheable=True)
538
                else: insert_into_pkeys(wrapper_table, recover=True)
539
            else:
540
                cur = sql.insert_select(db, out_table, mapping.keys(),
541
                    main_select, **insert_args)
542
            break # insert successful
543
        except sql.MissingCastException, e:
544
            log_exc(e)
545
            
546
            type_ = e.type
547
            if e.col == None: out_cols = mapping.keys()
548
            else: out_cols = [e.col]
549
            
550
            for out_col in out_cols:
551
                log_debug('Casting '+strings.as_tt(strings.repr_no_u(out_col))
552
                    +' input to '+strings.as_tt(type_))
553
                in_col = mapping[out_col]
554
                while True:
555
                    try:
556
                        mapping[out_col] = cast_temp_col(db, type_, in_col,
557
                            errors_table_)
558
                        break # cast successful
559
                    except sql.InvalidValueException, e:
560
                        log_exc(e)
561
                        
562
                        ignore(in_col, e.value, e)
563
        except sql.DuplicateKeyException, e:
564
            log_exc(e)
565
            
566
            # Different rows violating different unique constraints not
567
            # supported
568
            assert not join_cols
569
            
570
            join_cols.update(util.dict_subset_right_join(mapping, e.cols))
571
            log_debug('Ignoring existing rows, comparing on these columns:\n'
572
                +strings.as_inline_table(join_cols, ustr=col_ustr))
573
            
574
            if is_literals:
575
                return sql.value(sql.select(db, out_table, [out_pkey_col],
576
                    join_cols, order_by=None))
577
            
578
            # Uniquify input table to avoid internal duplicate keys
579
            insert_in_table = sql.distinct_table(db, insert_in_table,
580
                join_cols.values())
581
            insert_in_tables.append(insert_in_table)
582
        except sql.NullValueException, e:
583
            log_exc(e)
584
            
585
            out_col, = e.cols
586
            try: in_col = mapping[out_col]
587
            except KeyError, e:
588
                try: in_col = mapping[out_col] = col_defaults[out_col]
589
                except KeyError:
590
                    msg = 'Missing mapping for NOT NULL column '+out_col
591
                    log_debug(msg)
592
                    if default == None: warnings.warn(UserWarning(msg))
593
                        # not an error because sometimes the mappings include
594
                        # extra tables which aren't used by the dataset
595
                    remove_all_rows()
596
            else: ignore(in_col, None, e)
597
        except sql.CheckException, e:
598
            log_exc(e)
599
            
600
            ignore_cond(e.cond, e)
601
        except sql.InvalidValueException, e:
602
            log_exc(e)
603
            
604
            for in_col in mapping.values(): ignore(in_col, e.value, e)
605
        except psycopg2.extensions.TransactionRollbackError, e:
606
            log_exc(e)
607
            # retry
608
        except sql.DatabaseErrors, e:
609
            log_exc(e)
610
            
611
            log_debug('No handler for exception')
612
            on_error(e)
613
            remove_all_rows()
614
        # after exception handled, rerun loop with additional constraints
615
    
616
    if cur != None and row_ct_ref != None and cur.rowcount >= 0:
617
        row_ct_ref[0] += cur.rowcount
618
    
619
    if is_literals: return sql.value(cur)
620
    
621
    if is_function: pass # pkeys table already created
622
    elif has_joins:
623
        select_joins = input_joins+[sql_gen.Join(out_table, join_cols)]
624
        log_debug('Getting output table pkeys of existing/inserted rows')
625
        insert_into_pkeys(select_joins, pkeys_cols)
626
    else:
627
        sql.add_row_num(db, insert_out_pkeys) # for joining with input pkeys
628
        
629
        log_debug('Getting input table pkeys of inserted rows')
630
        # Note that mk_main_select() does not use ORDER BY. Instead, assume that
631
        # since the SELECT query is identical to the one used in INSERT SELECT,
632
        # its rows will be retrieved in the same order.
633
        sql.run_query_into(db, mk_main_select(input_joins, [in_pkey]),
634
            into=insert_in_pkeys)
635
        sql.add_row_num(db, insert_in_pkeys) # for joining with output pkeys
636
        
637
        assert sql.table_row_count(db, insert_out_pkeys) == sql.table_row_count(
638
            db, insert_in_pkeys)
639
        
640
        log_debug('Combining output and input pkeys in inserted order')
641
        pkey_joins = [insert_in_pkeys, sql_gen.Join(insert_out_pkeys,
642
            {sql.row_num_col: sql_gen.join_same_not_null})]
643
        insert_into_pkeys(pkey_joins, pkeys_names)
644
        
645
        sql.empty_temp(db, [insert_out_pkeys, insert_in_pkeys])
646
    
647
    if limit_ref[0] == 0 or not is_function: # is_function doesn't leave holes
648
        log_debug('Setting pkeys of missing rows to '
649
            +strings.as_tt(repr(default)))
650
        missing_rows_joins = [full_in_table, sql_gen.Join(into,
651
            {in_pkey: sql_gen.join_same_not_null}, sql_gen.filter_out)]
652
            # must use join_same_not_null or query will take forever
653
        insert_into_pkeys(missing_rows_joins,
654
            [sql_gen.Col(in_pkey, full_in_table),
655
            sql_gen.NamedCol(out_pkey, default)])
656
    # otherwise, there is already an entry for every row
657
    
658
    assert (sql.table_row_count(db, into)
659
        == sql.table_row_count(db, full_in_table))
660
    
661
    sql.empty_temp(db, insert_in_tables+[full_in_table])
662
    
663
    srcs = []
664
    if is_function: srcs = sql_gen.cols_srcs(in_cols)
665
    return sql_gen.Col(out_pkey, into, srcs)
(29-29/40)