author | Adrien Di Mascio <Adrien.DiMascio@logilab.fr> |
Sun, 26 Jul 2009 16:56:37 +0200 | |
changeset 2510 | 2aeac9d85a79 |
parent 2493 | 9806571ea790 |
child 2512 | 106b2a05dc88 |
permissions | -rw-r--r-- |
0 | 1 |
"""SQL utilities functions and classes. |
2 |
||
3 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1954
diff
changeset
|
4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 5 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1954
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
8 |
__docformat__ = "restructuredtext en" |
|
9 |
||
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
10 |
import os |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
11 |
from os.path import exists |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
12 |
from warnings import warn |
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
13 |
from datetime import datetime, date, timedelta |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
14 |
|
1783 | 15 |
import logilab.common as lgc |
0 | 16 |
from logilab.common.shellutils import ProgressBar |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
17 |
from logilab.common import db |
0 | 18 |
from logilab.common.adbh import get_adv_func_helper |
19 |
from logilab.common.sqlgen import SQLGenerator |
|
20 |
||
21 |
from indexer import get_indexer |
|
22 |
||
23 |
from cubicweb import Binary, ConfigurationError |
|
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
24 |
from cubicweb.utils import todate, todatetime |
0 | 25 |
from cubicweb.common.uilib import remove_html_tags |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
26 |
from cubicweb.toolsutils import restrict_perms_to_user |
0 | 27 |
from cubicweb.server import SQL_CONNECT_HOOKS |
1132 | 28 |
from cubicweb.server.utils import crypt_password |
0 | 29 |
|
30 |
||
1783 | 31 |
lgc.USE_MX_DATETIME = False |
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
32 |
SQL_PREFIX = 'cw_' |
0 | 33 |
|
34 |
||
2396
8bfb99d7bbcc
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1977
diff
changeset
|
35 |
def sqlexec(sqlstmts, cursor_or_execute, withpb=True, pbtitle='', delimiter=';'): |
0 | 36 |
"""execute sql statements ignoring DROP/ CREATE GROUP or USER statements |
37 |
error. If a cnx is given, commit at each statement |
|
38 |
""" |
|
39 |
if hasattr(cursor_or_execute, 'execute'): |
|
40 |
execute = cursor_or_execute.execute |
|
41 |
else: |
|
42 |
execute = cursor_or_execute |
|
43 |
sqlstmts = sqlstmts.split(delimiter) |
|
44 |
if withpb: |
|
2396
8bfb99d7bbcc
[cw-ctl] improve dialog messages
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1977
diff
changeset
|
45 |
pb = ProgressBar(len(sqlstmts), title=pbtitle) |
0 | 46 |
for sql in sqlstmts: |
47 |
sql = sql.strip() |
|
48 |
if withpb: |
|
49 |
pb.update() |
|
50 |
if not sql: |
|
51 |
continue |
|
52 |
# some dbapi modules doesn't accept unicode for sql string |
|
53 |
execute(str(sql)) |
|
54 |
if withpb: |
|
55 |
print |
|
56 |
||
57 |
||
58 |
def sqlgrants(schema, driver, user, |
|
59 |
text_index=True, set_owner=True, |
|
60 |
skip_relations=(), skip_entities=()): |
|
61 |
"""return sql to give all access privileges to the given user on the system |
|
62 |
schema |
|
63 |
""" |
|
64 |
from yams.schema2sql import grant_schema |
|
65 |
from cubicweb.server.sources import native |
|
66 |
output = [] |
|
67 |
w = output.append |
|
68 |
w(native.grant_schema(user, set_owner)) |
|
69 |
w('') |
|
70 |
if text_index: |
|
71 |
indexer = get_indexer(driver) |
|
72 |
w(indexer.sql_grant_user(user)) |
|
73 |
w('') |
|
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
74 |
w(grant_schema(schema, user, set_owner, skip_entities=skip_entities, prefix=SQL_PREFIX)) |
0 | 75 |
return '\n'.join(output) |
76 |
||
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
77 |
|
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
78 |
def sqlschema(schema, driver, text_index=True, |
0 | 79 |
user=None, set_owner=False, |
80 |
skip_relations=('has_text', 'identity'), skip_entities=()): |
|
81 |
"""return the system sql schema, according to the given parameters""" |
|
82 |
from yams.schema2sql import schema2sql |
|
83 |
from cubicweb.server.sources import native |
|
84 |
if set_owner: |
|
85 |
assert user, 'user is argument required when set_owner is true' |
|
86 |
output = [] |
|
87 |
w = output.append |
|
88 |
w(native.sql_schema(driver)) |
|
89 |
w('') |
|
90 |
if text_index: |
|
91 |
indexer = get_indexer(driver) |
|
92 |
w(indexer.sql_init_fti()) |
|
93 |
w('') |
|
94 |
dbhelper = get_adv_func_helper(driver) |
|
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
95 |
w(schema2sql(dbhelper, schema, prefix=SQL_PREFIX, |
0 | 96 |
skip_entities=skip_entities, skip_relations=skip_relations)) |
97 |
if dbhelper.users_support and user: |
|
98 |
w('') |
|
99 |
w(sqlgrants(schema, driver, user, text_index, set_owner, |
|
100 |
skip_relations, skip_entities)) |
|
101 |
return '\n'.join(output) |
|
102 |
||
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
103 |
|
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
104 |
def sqldropschema(schema, driver, text_index=True, |
0 | 105 |
skip_relations=('has_text', 'identity'), skip_entities=()): |
106 |
"""return the sql to drop the schema, according to the given parameters""" |
|
107 |
from yams.schema2sql import dropschema2sql |
|
108 |
from cubicweb.server.sources import native |
|
109 |
output = [] |
|
110 |
w = output.append |
|
111 |
w(native.sql_drop_schema(driver)) |
|
112 |
w('') |
|
113 |
if text_index: |
|
114 |
indexer = get_indexer(driver) |
|
115 |
w(indexer.sql_drop_fti()) |
|
116 |
w('') |
|
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
117 |
w(dropschema2sql(schema, prefix=SQL_PREFIX, |
1954 | 118 |
skip_entities=skip_entities, |
119 |
skip_relations=skip_relations)) |
|
0 | 120 |
return '\n'.join(output) |
121 |
||
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
122 |
|
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
123 |
def sql_source_backup(source, sqladapter, confirm, backupfile, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
124 |
askconfirm=False): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
125 |
if exists(backupfile): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
126 |
if not confirm('backup file %s exists, overwrite it?' % backupfile): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
127 |
return |
2510
2aeac9d85a79
[sqlutils] fix stupid typo
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2493
diff
changeset
|
128 |
elif askconfirm and not confirm('backup %s database?' |
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
129 |
% source.repo.config.appid): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
130 |
return |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
131 |
# should close opened connection before backuping |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
132 |
source.close_pool_connections() |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
133 |
try: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
134 |
sqladapter.backup_to_file(backupfile, confirm) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
135 |
finally: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
136 |
source.open_pool_connections() |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
137 |
|
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
138 |
def sql_source_restore(source, sqladapter, confirm, backupfile, drop=True, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
139 |
askconfirm=False): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
140 |
if not exists(backupfile): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
141 |
raise Exception("backup file %s doesn't exist" % backupfile) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
142 |
app = source.repo.config.appid |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
143 |
if askconfirm and not confirm('restore %s %s database from %s ?' |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
144 |
% (app, source.uri, backupfile)): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
145 |
return |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
146 |
# should close opened connection before restoring |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
147 |
source.close_pool_connections() |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
148 |
try: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
149 |
sqladapter.restore_from_file(backupfile, confirm, drop=drop) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
150 |
finally: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
151 |
source.open_pool_connections() |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
152 |
|
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
153 |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
154 |
try: |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
155 |
from mx.DateTime import DateTimeType, DateTimeDeltaType |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
156 |
except ImportError: |
1953 | 157 |
DateTimeType = DateTimeDeltaType = None |
0 | 158 |
|
159 |
class SQLAdapterMixIn(object): |
|
160 |
"""Mixin for SQL data sources, getting a connection from a configuration |
|
161 |
dictionary and handling connection locking |
|
162 |
""" |
|
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
163 |
|
0 | 164 |
def __init__(self, source_config): |
165 |
try: |
|
166 |
self.dbdriver = source_config['db-driver'].lower() |
|
167 |
self.dbname = source_config['db-name'] |
|
168 |
except KeyError: |
|
169 |
raise ConfigurationError('missing some expected entries in sources file') |
|
170 |
self.dbhost = source_config.get('db-host') |
|
171 |
port = source_config.get('db-port') |
|
172 |
self.dbport = port and int(port) or None |
|
173 |
self.dbuser = source_config.get('db-user') |
|
174 |
self.dbpasswd = source_config.get('db-password') |
|
175 |
self.encoding = source_config.get('db-encoding', 'UTF-8') |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
176 |
self.dbapi_module = db.get_dbapi_compliant_module(self.dbdriver) |
0 | 177 |
self.binary = self.dbapi_module.Binary |
178 |
self.dbhelper = self.dbapi_module.adv_func_helper |
|
179 |
self.sqlgen = SQLGenerator() |
|
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
180 |
|
0 | 181 |
def get_connection(self, user=None, password=None): |
182 |
"""open and return a connection to the database""" |
|
183 |
if user or self.dbuser: |
|
184 |
self.info('connecting to %s@%s for user %s', self.dbname, |
|
185 |
self.dbhost or 'localhost', user or self.dbuser) |
|
186 |
else: |
|
187 |
self.info('connecting to %s@%s', self.dbname, |
|
188 |
self.dbhost or 'localhost') |
|
189 |
cnx = self.dbapi_module.connect(self.dbhost, self.dbname, |
|
190 |
user or self.dbuser, |
|
191 |
password or self.dbpasswd, |
|
192 |
port=self.dbport) |
|
193 |
init_cnx(self.dbdriver, cnx) |
|
194 |
#self.dbapi_module.type_code_test(cnx.cursor()) |
|
195 |
return cnx |
|
196 |
||
2493
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
197 |
def backup_to_file(self, backupfile, confirm): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
198 |
cmd = self.dbhelper.backup_command(self.dbname, self.dbhost, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
199 |
self.dbuser, backupfile, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
200 |
keepownership=False) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
201 |
while True: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
202 |
print cmd |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
203 |
if os.system(cmd): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
204 |
print 'error while backuping the base' |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
205 |
answer = confirm('continue anyway?', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
206 |
shell=False, abort=False, retry=True) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
207 |
if not answer: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
208 |
raise SystemExit(1) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
209 |
if answer == 1: # 1: continue, 2: retry |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
210 |
break |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
211 |
else: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
212 |
print 'database backup:', backupfile |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
213 |
restrict_perms_to_user(backupfile, self.info) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
214 |
break |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
215 |
|
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
216 |
def restore_from_file(self, backupfile, confirm, drop=True): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
217 |
for cmd in self.dbhelper.restore_commands(self.dbname, self.dbhost, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
218 |
self.dbuser, backupfile, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
219 |
self.encoding, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
220 |
keepownership=False, |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
221 |
drop=drop): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
222 |
while True: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
223 |
print cmd |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
224 |
if os.system(cmd): |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
225 |
print 'error while restoring the base' |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
226 |
print 'OOOOOPS', confirm |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
227 |
answer = confirm('continue anyway?', |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
228 |
shell=False, abort=False, retry=True) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
229 |
if not answer: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
230 |
raise SystemExit(1) |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
231 |
if answer == 1: # 1: continue, 2: retry |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
232 |
break |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
233 |
else: |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
234 |
break |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
235 |
print 'database restored' |
9806571ea790
major refactoring of database dump/restore:
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2396
diff
changeset
|
236 |
|
0 | 237 |
def merge_args(self, args, query_args): |
238 |
if args is not None: |
|
239 |
args = dict(args) |
|
240 |
for key, val in args.items(): |
|
241 |
# convert cubicweb binary into db binary |
|
242 |
if isinstance(val, Binary): |
|
243 |
val = self.binary(val.getvalue()) |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
244 |
# XXX <3.2 bw compat |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
245 |
elif type(val) is DateTimeType: |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
246 |
warn('found mx date time instance, please update to use datetime', |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
247 |
DeprecationWarning) |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
248 |
val = datetime(val.year, val.month, val.day, |
1026 | 249 |
val.hour, val.minute, int(val.second)) |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
250 |
elif type(val) is DateTimeDeltaType: |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
251 |
warn('found mx date time instance, please update to use datetime', |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
252 |
DeprecationWarning) |
1026 | 253 |
val = timedelta(0, int(val.seconds), 0) |
0 | 254 |
args[key] = val |
255 |
# should not collide |
|
256 |
args.update(query_args) |
|
257 |
return args |
|
258 |
return query_args |
|
259 |
||
260 |
def process_result(self, cursor): |
|
261 |
"""return a list of CubicWeb compliant values from data in the given cursor |
|
262 |
""" |
|
263 |
descr = cursor.description |
|
264 |
encoding = self.encoding |
|
265 |
process_value = self.dbapi_module.process_value |
|
266 |
binary = Binary |
|
267 |
results = cursor.fetchall() |
|
268 |
for i, line in enumerate(results): |
|
269 |
result = [] |
|
270 |
for col, value in enumerate(line): |
|
271 |
if value is None: |
|
272 |
result.append(value) |
|
273 |
continue |
|
274 |
result.append(process_value(value, descr[col], encoding, binary)) |
|
275 |
results[i] = result |
|
276 |
return results |
|
277 |
||
278 |
||
279 |
def preprocess_entity(self, entity): |
|
280 |
"""return a dictionary to use as extra argument to cursor.execute |
|
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
281 |
to insert/update an entity into a SQL database |
0 | 282 |
""" |
283 |
attrs = {} |
|
284 |
eschema = entity.e_schema |
|
285 |
for attr, value in entity.items(): |
|
286 |
rschema = eschema.subject_relation(attr) |
|
287 |
if rschema.is_final(): |
|
288 |
atype = str(entity.e_schema.destination(attr)) |
|
289 |
if atype == 'Boolean': |
|
290 |
value = self.dbhelper.boolean_value(value) |
|
291 |
elif atype == 'Password': |
|
292 |
# if value is a Binary instance, this mean we got it |
|
293 |
# from a query result and so it is already encrypted |
|
294 |
if isinstance(value, Binary): |
|
295 |
value = value.getvalue() |
|
296 |
else: |
|
297 |
value = crypt_password(value) |
|
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
298 |
# XXX needed for sqlite but I don't think it is for other backends |
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
299 |
elif atype == 'Datetime' and isinstance(value, date): |
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
300 |
value = todatetime(value) |
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
301 |
elif atype == 'Date' and isinstance(value, datetime): |
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
302 |
value = todate(value) |
0 | 303 |
elif isinstance(value, Binary): |
304 |
value = self.binary(value.getvalue()) |
|
1408
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
305 |
# XXX <3.2 bw compat |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
306 |
elif type(value) is DateTimeType: |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
307 |
warn('found mx date time instance, please update to use datetime', |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
308 |
DeprecationWarning) |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
309 |
value = datetime(value.year, value.month, value.day, |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
310 |
value.hour, value.minute, int(value.second)) |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
311 |
elif type(value) is DateTimeDeltaType: |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
312 |
warn('found mx date time instance, please update to use datetime', |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
313 |
DeprecationWarning) |
6bf19f175ea5
mx.DateTime fixes
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
1263
diff
changeset
|
314 |
value = timedelta(0, int(value.seconds), 0) |
1251
af40e615dc89
introduce a 'cw_' prefix on entity table and column names so we don't conflict with sql or DBMS specific keywords
sylvain.thenault@logilab.fr
parents:
0
diff
changeset
|
315 |
attrs[SQL_PREFIX+str(attr)] = value |
0 | 316 |
return attrs |
317 |
||
318 |
||
319 |
from logging import getLogger |
|
320 |
from cubicweb import set_log_methods |
|
321 |
set_log_methods(SQLAdapterMixIn, getLogger('cubicweb.sqladapter')) |
|
322 |
||
323 |
def init_sqlite_connexion(cnx): |
|
324 |
# XXX should not be publicly exposed |
|
325 |
#def comma_join(strings): |
|
326 |
# return ', '.join(strings) |
|
327 |
#cnx.create_function("COMMA_JOIN", 1, comma_join) |
|
328 |
||
329 |
class concat_strings(object): |
|
330 |
def __init__(self): |
|
331 |
self.values = [] |
|
332 |
def step(self, value): |
|
333 |
if value is not None: |
|
334 |
self.values.append(value) |
|
335 |
def finalize(self): |
|
336 |
return ', '.join(self.values) |
|
337 |
# renamed to GROUP_CONCAT in cubicweb 2.45, keep old name for bw compat for |
|
338 |
# some time |
|
339 |
cnx.create_aggregate("CONCAT_STRINGS", 1, concat_strings) |
|
340 |
cnx.create_aggregate("GROUP_CONCAT", 1, concat_strings) |
|
1619
e4845b54a704
force proper date/datetime according to type (necessary for sqlite at least)
sylvain.thenault@logilab.fr
parents:
1408
diff
changeset
|
341 |
|
0 | 342 |
def _limit_size(text, maxsize, format='text/plain'): |
343 |
if len(text) < maxsize: |
|
344 |
return text |
|
345 |
if format in ('text/html', 'text/xhtml', 'text/xml'): |
|
346 |
text = remove_html_tags(text) |
|
347 |
if len(text) > maxsize: |
|
348 |
text = text[:maxsize] + '...' |
|
349 |
return text |
|
350 |
||
351 |
def limit_size3(text, format, maxsize): |
|
352 |
return _limit_size(text, maxsize, format) |
|
353 |
cnx.create_function("LIMIT_SIZE", 3, limit_size3) |
|
354 |
||
355 |
def limit_size2(text, maxsize): |
|
356 |
return _limit_size(text, maxsize) |
|
357 |
cnx.create_function("TEXT_LIMIT_SIZE", 2, limit_size2) |
|
358 |
import yams.constraints |
|
359 |
if hasattr(yams.constraints, 'patch_sqlite_decimal'): |
|
360 |
yams.constraints.patch_sqlite_decimal() |
|
361 |
||
362 |
||
363 |
sqlite_hooks = SQL_CONNECT_HOOKS.setdefault('sqlite', []) |
|
364 |
sqlite_hooks.append(init_sqlite_connexion) |
|
365 |
||
366 |
def init_cnx(driver, cnx): |
|
367 |
for hook in SQL_CONNECT_HOOKS.get(driver, ()): |
|
368 |
hook(cnx) |