forked from cms-dev/cms
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDumpImporter.py
executable file
·512 lines (411 loc) · 20.4 KB
/
DumpImporter.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
#!/usr/bin/env python3
# Contest Management System - http://cms-dev.github.io/
# Copyright © 2010-2015 Giovanni Mascellani <[email protected]>
# Copyright © 2010-2018 Stefano Maggiolo <[email protected]>
# Copyright © 2010-2012 Matteo Boscariol <[email protected]>
# Copyright © 2013-2018 Luca Wehrstedt <[email protected]>
# Copyright © 2014 Artem Iglikov <[email protected]>
# Copyright © 2014 Luca Versari <[email protected]>
# Copyright © 2014 William Di Luigi <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""This service imports data from a directory that has been the
target of a DumpExport. The process of exporting and importing
again should be idempotent.
"""
# We enable monkey patching to make many libraries gevent-friendly
# (for instance, urllib3, used by requests)
import gevent.monkey
gevent.monkey.patch_all() # noqa
import argparse
import ipaddress
import json
import logging
import os
import sys
from datetime import datetime, timedelta
from sqlalchemy.types import \
Boolean, Integer, Float, String, Unicode, DateTime, Interval, Enum
from sqlalchemy.dialects.postgresql import ARRAY, CIDR, JSONB
import cms.db as class_hook
from cms import utf8_decoder
from cms.db import version as model_version, Codename, Filename, \
FilenameSchema, FilenameSchemaArray, Digest, SessionGen, Contest, \
Submission, SubmissionResult, User, Participation, UserTest, \
UserTestResult, PrintJob, Announcement, init_db, drop_db, enumerate_files
from cms.db.filecacher import FileCacher
from cmscommon.archive import Archive
from cmscommon.datetime import make_datetime
from cmscommon.digest import path_digest
logger = logging.getLogger(__name__)
def find_root_of_archive(file_names):
"""Given a list of file names (the content of an archive) find the
name of the root directory, i.e., the only file that would be
created in a directory if we extract there the archive.
file_names (list of strings): the list of file names in the
archive
return (string): the root directory, or None if unable to find
(for example if there is more than one).
"""
current_root = None
for file_name in file_names:
if '/' not in file_name or '/' not in file_name[0:-1]:
if current_root is None:
current_root = file_name
else:
return None
return current_root
def decode_value(type_, value):
"""Decode a given value in a JSON-compatible form to a given type.
type_ (sqlalchemy.types.TypeEngine): the SQLAlchemy type of the
column that will hold the value.
value (object): the value, encoded as bool, int, float, string,
list, dict or any other JSON-compatible format.
return (object): the value, decoded.
"""
if value is None:
return None
elif isinstance(type_, (
Boolean, Integer, Float, String, Unicode, Enum, JSONB, Codename,
Filename, FilenameSchema, Digest)):
return value
elif isinstance(type_, DateTime):
try:
return make_datetime(value)
except OverflowError:
logger.warning("The dump has a date too far in the future for "
"your system. Changing to 2030-01-01.")
return datetime(2030, 1, 1)
elif isinstance(type_, Interval):
return timedelta(seconds=value)
elif isinstance(type_, (ARRAY, FilenameSchemaArray)):
return list(decode_value(type_.item_type, item) for item in value)
elif isinstance(type_, CIDR):
return ipaddress.ip_network(value)
else:
raise RuntimeError(
"Unknown SQLAlchemy column type: %s" % type_)
class DumpImporter:
"""This service imports data from a directory that has been
the target of a DumpExport. The process of exporting and
importing again should be idempotent.
"""
def __init__(self, drop, import_source,
load_files, load_model, skip_generated,
skip_submissions, skip_user_tests, skip_users, skip_print_jobs):
self.drop = drop
self.load_files = load_files
self.load_model = load_model
self.skip_generated = skip_generated
self.skip_submissions = skip_submissions
self.skip_user_tests = skip_user_tests
self.skip_users = skip_users
self.skip_print_jobs = skip_print_jobs
self.import_source = import_source
self.import_dir = import_source
self.file_cacher = FileCacher()
def do_import(self):
"""Run the actual import code."""
logger.info("Starting import.")
archive = None
if Archive.is_supported(self.import_source):
archive = Archive(self.import_source)
self.import_dir = archive.unpack()
file_names = os.listdir(self.import_dir)
if len(file_names) != 1:
logger.critical("Cannot find a root directory in %s.",
self.import_source)
archive.cleanup()
return False
self.import_dir = os.path.join(self.import_dir, file_names[0])
if self.drop:
logger.info("Dropping and recreating the database.")
try:
if not (drop_db() and init_db()):
logger.critical("Unexpected error while dropping "
"and recreating the database.",
exc_info=True)
return False
except Exception:
logger.critical("Unable to access DB.", exc_info=True)
return False
with SessionGen() as session:
# Import the contest in JSON format.
if self.load_model:
logger.info("Importing the contest from a JSON file.")
with open(os.path.join(self.import_dir,
"contest.json"), "rb") as fin:
# TODO - Throughout all the code we'll assume the
# input is correct without actually doing any
# validations. Thus, for example, we're not
# checking that the decoded object is a dict...
self.datas = json.load(fin)
# If the dump has been exported using a data model
# different than the current one (that is, a previous
# one) we try to update it.
# If no "_version" field is found we assume it's a v1.0
# export (before the new dump format was introduced).
dump_version = self.datas.get("_version", 0)
if dump_version < model_version:
logger.warning(
"The dump you're trying to import has been created "
"by an old version of CMS (it declares data model "
"version %d). It may take a while to adapt it to "
"the current data model (which is version %d). You "
"can use cmsDumpUpdater to update the on-disk dump "
"and speed up future imports.",
dump_version, model_version)
elif dump_version > model_version:
logger.critical(
"The dump you're trying to import has been created "
"by a version of CMS newer than this one (it "
"declares data model version %d) and there is no "
"way to adapt it to the current data model (which "
"is version %d). You probably need to update CMS to "
"handle it. It is impossible to proceed with the "
"importation.", dump_version, model_version)
return False
else:
logger.info(
"Importing dump with data model version %d.",
dump_version)
for version in range(dump_version, model_version):
# Update from version to version+1
updater = __import__(
"cmscontrib.updaters.update_%d" % (version + 1),
globals(), locals(), ["Updater"]).Updater(self.datas)
self.datas = updater.run()
self.datas["_version"] = version + 1
assert self.datas["_version"] == model_version
self.objs = dict()
for id_, data in self.datas.items():
if not id_.startswith("_"):
self.objs[id_] = self.import_object(data)
for k, v in list(self.objs.items()):
# Skip submissions if requested
if self.skip_submissions and isinstance(v, Submission):
del self.objs[k]
# Skip user_tests if requested
elif self.skip_user_tests and isinstance(v, UserTest):
del self.objs[k]
# Skip users if requested
elif self.skip_users and \
isinstance(v, (User, Participation, Submission,
UserTest, Announcement)):
del self.objs[k]
# Skip print jobs if requested
elif self.skip_print_jobs and isinstance(v, PrintJob):
del self.objs[k]
# Skip generated data if requested
elif self.skip_generated and \
isinstance(v, (SubmissionResult, UserTestResult)):
del self.objs[k]
for id_, data in self.datas.items():
if not id_.startswith("_") and id_ in self.objs:
self.add_relationships(data, self.objs[id_])
contest_id = list()
contest_files = set()
# We add explicitly only the top-level objects:
# contests, and tasks and users not contained in any
# contest. This will add on cascade all dependent
# objects, and not add orphaned objects (like those
# that depended on submissions or user tests that we
# might have removed above).
for id_ in self.datas["_objects"]:
# It could have been removed by request
if id_ not in self.objs:
continue
obj = self.objs[id_]
session.add(obj)
session.flush()
if isinstance(obj, Contest):
contest_id += [obj.id]
contest_files |= enumerate_files(
session, obj,
skip_submissions=self.skip_submissions,
skip_user_tests=self.skip_user_tests,
skip_print_jobs=self.skip_print_jobs,
skip_users=self.skip_users,
skip_generated=self.skip_generated)
session.commit()
else:
contest_id = None
contest_files = None
# Import files.
if self.load_files:
logger.info("Importing files.")
files_dir = os.path.join(self.import_dir, "files")
descr_dir = os.path.join(self.import_dir, "descriptions")
files = set(os.listdir(files_dir))
descr = set(os.listdir(descr_dir))
if not descr <= files:
logger.warning("Some files do not have an associated "
"description.")
if not files <= descr:
logger.warning("Some descriptions do not have an "
"associated file.")
if not (contest_files is None or files <= contest_files):
# FIXME Check if it's because this is a light import
# or because we're skipping submissions or user_tests
logger.warning("The dump contains some files that are "
"not needed by the contest.")
if not (contest_files is None or contest_files <= files):
# The reason for this could be that it was a light
# export that's not being reimported as such.
logger.warning("The contest needs some files that are "
"not contained in the dump.")
# Limit import to files we actually need.
if contest_files is not None:
files &= contest_files
for digest in files:
file_ = os.path.join(files_dir, digest)
desc = os.path.join(descr_dir, digest)
if not self.safe_put_file(file_, desc):
logger.critical("Unable to put file `%s' in the DB. "
"Aborting. Please remove the contest "
"from the database.", file_)
# TODO: remove contest from the database.
return False
# Clean up, if an archive was used
if archive is not None:
archive.cleanup()
if contest_id is not None:
logger.info("Import finished (contest id: %s).",
", ".join("%d" % id_ for id_ in contest_id))
else:
logger.info("Import finished.")
return True
def import_object(self, data):
"""Import objects from the given data (without relationships).
The given data is assumed to be a dict in the format produced by
DumpExporter. This method reads the "_class" item and tries
to find the corresponding class. Then it loads all column
properties of that class (those that are present in the data)
and uses them as keyword arguments in a call to the class
constructor (if a required property is missing this call will
raise an error).
Relationships are not handled by this method, since we may not
have all referenced objects available yet. Thus we prefer to add
relationships in a later moment, using the add_relationships
method.
Note that both this method and add_relationships don't check if
the given data has more items than the ones we understand and
use.
"""
cls = getattr(class_hook, data["_class"])
args = dict()
for prp in cls._col_props:
if prp.key not in data:
# We will let the __init__ of the class check if any
# argument is missing, so it's safe to just skip here.
continue
col = prp.columns[0]
val = data[prp.key]
args[prp.key] = decode_value(col.type, val)
return cls(**args)
def add_relationships(self, data, obj):
"""Add the relationships to the given object, using the given data.
Do what we didn't in import_objects: importing relationships.
We already now the class of the object so we simply iterate over
its relationship properties trying to load them from the data (if
present), checking wheter they are IDs or collection of IDs,
dereferencing them (i.e. getting the corresponding object) and
reflecting all on the given object.
Note that both this method and import_object don't check if the
given data has more items than the ones we understand and use.
"""
cls = type(obj)
for prp in cls._rel_props:
if prp.key not in data:
# Relationships are always optional
continue
val = data[prp.key]
if val is None:
setattr(obj, prp.key, None)
elif isinstance(val, str):
setattr(obj, prp.key, self.objs.get(val))
elif isinstance(val, list):
setattr(obj, prp.key, list(self.objs[i] for i in val if i in self.objs))
elif isinstance(val, dict):
setattr(obj, prp.key,
dict((k, self.objs[v]) for k, v in val.items() if v in self.objs))
else:
raise RuntimeError(
"Unknown RelationshipProperty value: %s" % type(val))
def safe_put_file(self, path, descr_path):
"""Put a file to FileCacher signaling every error (including
digest mismatch).
path (string): the path from which to load the file.
descr_path (string): same for description.
return (bool): True if all ok, False if something wrong.
"""
# TODO - Probably this method could be merged in FileCacher
# First read the description.
try:
with open(descr_path, 'rt', encoding='utf-8') as fin:
description = fin.read()
except OSError:
description = ''
# Put the file.
try:
digest = self.file_cacher.put_file_from_path(path, description)
except Exception as error:
logger.critical("File %s could not be put to file server (%r), "
"aborting.", path, error)
return False
# Then check the digest.
calc_digest = path_digest(path)
if digest != calc_digest:
logger.critical("File %s has hash %s, but the server returned %s, "
"aborting.", path, calc_digest, digest)
return False
return True
def main():
"""Parse arguments and launch process."""
parser = argparse.ArgumentParser(description="Importer of CMS contests.")
parser.add_argument("-d", "--drop", action="store_true",
help="drop everything from the database "
"before importing")
group = parser.add_mutually_exclusive_group()
group.add_argument("-f", "--files", action="store_true",
help="only import files, ignore database structure")
group.add_argument("-F", "--no-files", action="store_true",
help="only import database structure, ignore files")
parser.add_argument("-G", "--no-generated", action="store_true",
help="don't import data and files that can be "
"automatically generated")
parser.add_argument("-S", "--no-submissions", action="store_true",
help="don't import submissions")
parser.add_argument("-U", "--no-user-tests", action="store_true",
help="don't import user tests")
parser.add_argument("-X", "--no-users", action="store_true",
help="don't import users")
parser.add_argument("-P", "--no-print-jobs", action="store_true",
help="don't import print jobs")
parser.add_argument("import_source", action="store", type=utf8_decoder,
help="source directory or compressed file")
args = parser.parse_args()
importer = DumpImporter(drop=args.drop,
import_source=args.import_source,
load_files=not args.no_files,
load_model=not args.files,
skip_generated=args.no_generated,
skip_submissions=args.no_submissions,
skip_user_tests=args.no_user_tests,
skip_users=args.no_users,
skip_print_jobs=args.no_print_jobs)
success = importer.do_import()
return 0 if success is True else 1
if __name__ == "__main__":
sys.exit(main())