Project

General

Profile

1
# Database access
2

    
3
import random
4
import re
5
import sys
6

    
7
import exc
8
import util
9

    
10
def get_cur_query(cur):
11
    if hasattr(cur, 'query'): return cur.query
12
    elif hasattr(cur, '_last_executed'): return cur._last_executed
13
    else: return None
14

    
15
def _add_cursor_info(e, cur): exc.add_msg(e, 'query: '+get_cur_query(cur))
16

    
17
class DbException(exc.ExceptionWithCause):
18
    def __init__(self, msg, cause=None, cur=None):
19
        exc.ExceptionWithCause.__init__(self, msg, cause)
20
        if cur != None: _add_cursor_info(self, cur)
21

    
22
class NameException(DbException): pass
23

    
24
class ExceptionWithColumns(DbException):
25
    def __init__(self, cols, cause=None):
26
        DbException.__init__(self, 'columns: ' + ', '.join(cols), cause)
27
        self.cols = cols
28

    
29
class DuplicateKeyException(ExceptionWithColumns): pass
30

    
31
class NullValueException(ExceptionWithColumns): pass
32

    
33
class EmptyRowException(DbException): pass
34

    
35
def check_name(name):
36
    if re.search(r'\W', name) != None: raise NameException('Name "'+name
37
        +'" may contain only alphanumeric characters and _')
38

    
39
def run_query(db, query, params=None):
40
    cur = db.cursor()
41
    try: cur.execute(query, params)
42
    except Exception, e:
43
        _add_cursor_info(e, cur)
44
        raise
45
    return cur
46

    
47
def col(cur, idx): return cur.description[idx][0]
48

    
49
def rows(cur): return iter(lambda: cur.fetchone(), None)
50

    
51
def row(cur): return rows(cur).next()
52

    
53
def value(cur): return row(cur)[0]
54

    
55
def values(cur): return iter(lambda: value(cur), None)
56

    
57
def value_or_none(cur):
58
    try: return value(cur)
59
    except StopIteration: return None
60

    
61
def with_savepoint(db, func):
62
    savepoint = 'savepoint_'+str(random.randint(0, sys.maxint)) # must be unique
63
    run_query(db, 'SAVEPOINT '+savepoint)
64
    try: return_val = func()
65
    except:
66
        run_query(db, 'ROLLBACK TO SAVEPOINT '+savepoint)
67
        raise
68
    else:
69
        run_query(db, 'RELEASE SAVEPOINT '+savepoint)
70
        return return_val
71

    
72
def select(db, table, fields, conds, limit=None):
73
    assert limit == None or type(limit) == int
74
    check_name(table)
75
    map(check_name, fields)
76
    map(check_name, conds.keys())
77
    def cond(entry):
78
        col, value = entry
79
        cond_ = col+' '
80
        if value == None: cond_ += 'IS'
81
        else: cond_ += '='
82
        cond_ += ' %s'
83
        return cond_
84
    query = 'SELECT '+', '.join(fields)+' FROM '+table
85
    if conds != {}:
86
        query += ' WHERE '+' AND '.join(map(cond, conds.iteritems()))
87
    if limit != None: query += ' LIMIT '+str(limit)
88
    return run_query(db, query, conds.values())
89

    
90
def insert(db, table, row):
91
    check_name(table)
92
    cols = row.keys()
93
    map(check_name, cols)
94
    query = 'INSERT INTO '+table
95
    if row != {}: query += ' ('+', '.join(cols)+') VALUES ('\
96
        +', '.join(['%s']*len(cols))+')'
97
    else: query += ' DEFAULT VALUES'
98
    return run_query(db, query, row.values())
99

    
100
def last_insert_id(db):
101
    module = util.root_module(db)
102
    if module == 'psycopg2': return value(run_query(db, 'SELECT lastval()'))
103
    elif module == 'MySQLdb': return db.insert_id()
104
    else: return None
105

    
106
def constraint_cols(db, table, constraint):
107
    check_name(table)
108
    check_name(constraint)
109
    module = util.root_module(db)
110
    if module == 'psycopg2':
111
        return list(values(run_query(db, '''\
112
SELECT attname
113
FROM pg_constraint
114
JOIN pg_class ON pg_class.oid = conrelid
115
JOIN pg_attribute ON attrelid = conrelid AND attnum = ANY (conkey)
116
WHERE
117
    relname = %(table)s
118
    AND conname = %(constraint)s
119
ORDER BY attnum
120
''',
121
            {'table': table, 'constraint': constraint})))
122
    else: raise NotImplementedError("Can't list constraint columns for "+module+
123
        ' database')
124

    
125
def try_insert(db, table, row):
126
    try: return with_savepoint(db, lambda: insert(db, table, row))
127
    except Exception, e:
128
        msg = str(e)
129
        match = re.search(r'duplicate key value violates unique constraint '
130
            r'"(([^\W_]+)_[^"]+)"', msg)
131
        if match:
132
            constraint, table = match.groups()
133
            try: cols = constraint_cols(db, table, constraint)
134
            except NotImplementedError: raise e
135
            else: raise DuplicateKeyException(cols[0], e)
136
        match = re.search(r'null value in column "(\w+)" violates not-null '
137
            'constraint', msg)
138
        if match: raise NullValueException(match.group(1), e)
139
        raise # no specific exception raised
140

    
141
def pkey(db, cache, table): # Assumed to be first column in table
142
    check_name(table)
143
    if table not in cache:
144
        cache[table] = col(run_query(db, 'SELECT * FROM '+table+' LIMIT 0'), 0)
145
    return cache[table]
146

    
147
def get(db, table, row, pkey, create=False, row_ct_ref=None):
148
    try: return value(select(db, table, [pkey], row, 1))
149
    except StopIteration:
150
        if not create: raise
151
        # Insert new row
152
        try:
153
            row_ct = try_insert(db, table, row).rowcount
154
            if row_ct_ref != None and row_ct >= 0: row_ct_ref[0] += row_ct
155
            return last_insert_id(db)
156
        except DuplicateKeyException, e:
157
            return value(select(db, table, [pkey],
158
                util.dict_subset(row, e.cols)))
159

    
160
def truncate(db, table):
161
    check_name(table)
162
    return run_query(db, 'TRUNCATE '+table+' CASCADE')
163

    
164
def tables(db):
165
    module = util.root_module(db)
166
    if module == 'psycopg2':
167
        return values(run_query(db, "SELECT tablename from pg_tables "
168
            "WHERE schemaname = 'public' ORDER BY tablename"))
169
    elif module == 'MySQLdb': return values(run_query(db, 'SHOW TABLES'))
170
    else: raise NotImplementedError("Can't list tables for "+module+' database')
171

    
172
def empty_db(db):
173
    for table in tables(db): truncate(db, table)
174

    
175
db_engines = {
176
    'MySQL': ('MySQLdb', {'password': 'passwd', 'database': 'db'}),
177
    'PostgreSQL': ('psycopg2', {}),
178
}
179

    
180
DatabaseErrors_set = set([DbException])
181
DatabaseErrors = tuple(DatabaseErrors_set)
182

    
183
def _add_module(module):
184
    DatabaseErrors_set.add(module.DatabaseError)
185
    global DatabaseErrors
186
    DatabaseErrors = tuple(DatabaseErrors_set)
187

    
188
def connect(db_config):
189
    db_config = db_config.copy() # don't modify input!
190
    module_name, mappings = db_engines[db_config.pop('engine')]
191
    module = __import__(module_name)
192
    _add_module(module)
193
    for orig, new in mappings.iteritems():
194
        try: util.rename_key(db_config, orig, new)
195
        except KeyError: pass
196
    return module.connect(**db_config)
(5-5/11)