-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmigration.py
528 lines (450 loc) · 18.7 KB
/
migration.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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
import datetime
import os
import sys
import traceback
from django.conf import settings
from django.db import models
from django.core.exceptions import ImproperlyConfigured
from django.core.management import call_command
from models import MigrationHistory
from south.db import db
def get_app(app):
"""
Returns the migrations module for the given app model name/module, or None
if it does not use migrations.
"""
if isinstance(app, (str, unicode)):
# If it's a string, use the models module
app = models.get_app(app)
mod = __import__(app.__name__[:-7], {}, {}, ['migrations'])
if hasattr(mod, 'migrations'):
return getattr(mod, 'migrations')
def get_migrated_apps():
"""
Returns all apps with migrations.
"""
for mapp in models.get_apps():
app = get_app(mapp)
if app:
yield app
def get_app_name(app):
"""
Returns the _internal_ app name for the given app module.
i.e. for <module django.contrib.auth.models> will return 'auth'
"""
return app.__name__.split('.')[-2]
def get_app_fullname(app):
"""
Returns the full python name of an app - e.g. django.contrib.auth
"""
return app.__name__[:-11]
def short_from_long(app_name):
return app_name.split(".")[-1]
def get_migration_names(app):
"""
Returns a list of migration file names for the given app.
"""
return sorted([
filename[:-3]
for filename in os.listdir(os.path.dirname(app.__file__))
if filename.endswith(".py") and filename != "__init__.py" and not filename.startswith(".")
])
def get_migration_classes(app):
"""
Returns a list of migration classes (one for each migration) for the app.
"""
for name in get_migration_names(app):
yield get_migration(app, name)
def get_migration(app, name):
"""
Returns the migration class implied by 'name'.
"""
try:
module = __import__(app.__name__ + "." + name, '', '', ['Migration'])
return module.Migration
except ImportError:
print " ! Migration %s:%s probably doesn't exist." % (get_app_name(app), name)
print " - Traceback:"
raise
def all_migrations():
return dict([
(app, dict([(name, get_migration(app, name)) for name in get_migration_names(app)]))
for app in get_migrated_apps()
])
def dependency_tree():
tree = all_migrations()
# Annotate tree with 'backwards edges'
for app, classes in tree.items():
for name, cls in classes.items():
cls.needs = []
if not hasattr(cls, "needed_by"):
cls.needed_by = []
if hasattr(cls, "depends_on"):
for dapp, dname in cls.depends_on:
dapp = get_app(dapp)
if dapp not in tree:
print "Migration %s in app %s depends on unmigrated app %s." % (
name,
get_app_name(app),
dapp,
)
sys.exit(1)
if dname not in tree[dapp]:
print "Migration %s in app %s depends on nonexistent migration %s in app %s." % (
name,
get_app_name(app),
dname,
get_app_name(dapp),
)
sys.exit(1)
cls.needs.append((dapp, dname))
if not hasattr(tree[dapp][dname], "needed_by"):
tree[dapp][dname].needed_by = []
tree[dapp][dname].needed_by.append((app, name))
# Sanity check whole tree
for app, classes in tree.items():
for name, cls in classes.items():
cls.dependencies = dependencies(tree, app, name)
return tree
def nice_trace(trace):
return " -> ".join([str((get_app_name(a), n)) for a, n in trace])
def dependencies(tree, app, name, trace=[]):
# Copy trace to stop pass-by-ref problems
trace = trace[:]
# Sanity check
for papp, pname in trace:
if app == papp:
if pname == name:
print "Found circular dependency: %s" % nice_trace(trace + [(app,name)])
sys.exit(1)
else:
# See if they depend in the same app the wrong way
migrations = get_migration_names(app)
if migrations.index(name) > migrations.index(pname):
print "Found a lower migration (%s) depending on a higher migration (%s) in the same app (%s)." % (pname, name, get_app_name(app))
print "Path: %s" % nice_trace(trace + [(app,name)])
sys.exit(1)
# Get the dependencies of a migration
deps = []
migration = tree[app][name]
for dapp, dname in migration.needs:
deps.extend(
dependencies(tree, dapp, dname, trace+[(app,name)])
)
return deps
def remove_duplicates(l):
m = []
for x in l:
if x not in m:
m.append(x)
return m
def needed_before_forwards(tree, app, name, sameapp=True):
"""
Returns a list of migrations that must be applied before (app, name),
in the order they should be applied.
Used to make sure a migration can be applied (and to help apply up to it).
"""
app_migrations = get_migration_names(app)
needed = []
if sameapp:
for aname in app_migrations[:app_migrations.index(name)]:
needed += needed_before_forwards(tree, app, aname, False)
needed += [(app, aname)]
for dapp, dname in tree[app][name].needs:
needed += needed_before_forwards(tree, dapp, dname)
needed += [(dapp, dname)]
return remove_duplicates(needed)
def needed_before_backwards(tree, app, name, sameapp=True):
"""
Returns a list of migrations that must be unapplied before (app, name) is,
in the order they should be unapplied.
Used to make sure a migration can be unapplied (and to help unapply up to it).
"""
app_migrations = get_migration_names(app)
needed = []
if sameapp:
for aname in reversed(app_migrations[app_migrations.index(name)+1:]):
needed += needed_before_backwards(tree, app, aname, False)
needed += [(app, aname)]
for dapp, dname in tree[app][name].needed_by:
needed += needed_before_backwards(tree, dapp, dname)
needed += [(dapp, dname)]
return remove_duplicates(needed)
def run_migrations(toprint, torun, recorder, app, migrations, fake=False, db_dry_run=False, silent=False):
"""
Runs the specified migrations forwards, in order.
"""
for migration in migrations:
app_name = get_app_name(app)
if not silent:
print toprint % (app_name, migration)
klass = get_migration(app, migration)
if fake:
if not silent:
print " (faked)"
else:
# If the database doesn't support running DDL inside a transaction
# *cough*MySQL*cough* then do a dry run first.
if not db.has_ddl_transactions:
db.dry_run = True
db.debug, old_debug = False, db.debug
try:
getattr(klass(), torun)()
except:
traceback.print_exc()
print " ! Error found during dry run of migration! Aborting."
return False
db.debug = old_debug
db.clear_run_data()
db.dry_run = bool(db_dry_run)
if db.has_ddl_transactions:
db.start_transaction()
try:
getattr(klass(), torun)()
db.execute_deferred_sql()
except:
if db.has_ddl_transactions:
db.rollback_transaction()
raise
else:
traceback.print_exc()
print " ! Error found during real run of migration! Aborting."
print
print " ! Since you have a database that does not support running"
print " ! schema-altering statements in transactions, we have had to"
print " ! leave it in an interim state between migrations."
if torun == "forwards":
print
print " ! You *might* be able to recover with:"
db.debug = db.dry_run = True
klass().backwards()
print
print " ! The South developers regret this has happened, and would"
print " ! like to gently persuade you to consider a slightly"
print " ! easier-to-deal-with DBMS."
return False
else:
if db.has_ddl_transactions:
db.commit_transaction()
if not db_dry_run:
# Record us as having done this
recorder(app_name, migration)
def run_forwards(app, migrations, fake=False, db_dry_run=False, silent=False):
"""
Runs the specified migrations forwards, in order.
"""
def record(app_name, migration):
# Record us as having done this
record = MigrationHistory.for_migration(app_name, migration)
record.applied = datetime.datetime.utcnow()
record.save()
return run_migrations(
toprint = " > %s: %s",
torun = "forwards",
recorder = record,
app = app,
migrations = migrations,
fake = fake,
db_dry_run = db_dry_run,
silent = silent,
)
def run_backwards(app, migrations, ignore=[], fake=False, db_dry_run=False, silent=False):
"""
Runs the specified migrations backwards, in order, skipping those
migrations in 'ignore'.
"""
def record(app_name, migration):
# Record us as having not done this
record = MigrationHistory.for_migration(app_name, migration)
record.delete()
return run_migrations(
toprint = " < %s: %s",
torun = "backwards",
recorder = record,
app = app,
migrations = [x for x in migrations if x not in ignore],
fake = fake,
db_dry_run = db_dry_run,
silent = silent,
)
def right_side_of(x, y):
return left_side_of(reversed(x), reversed(y))
def left_side_of(x, y):
return list(y)[:len(x)] == list(x)
def forwards_problems(tree, forwards, done, silent=False):
problems = []
for app, name in forwards:
if (app, name) not in done:
for dapp, dname in needed_before_backwards(tree, app, name):
if (dapp, dname) in done:
if not silent:
print " ! Migration (%s, %s) should not have been applied before (%s, %s) but was." % (get_app_name(dapp), dname, get_app_name(app), name)
problems.append(((app, name), (dapp, dname)))
return problems
def backwards_problems(tree, backwards, done, silent=False):
problems = []
for app, name in backwards:
if (app, name) in done:
for dapp, dname in needed_before_forwards(tree, app, name):
if (dapp, dname) not in done:
if not silent:
print " ! Migration (%s, %s) should have been applied before (%s, %s) but wasn't." % (get_app_name(dapp), dname, get_app_name(app), name)
problems.append(((app, name), (dapp, dname)))
return problems
def migrate_app(app, target_name=None, resolve_mode=None, fake=False, db_dry_run=False, yes=False, silent=False, load_inital_data=False):
app_name = get_app_name(app)
db.debug = not silent
# If any of their app names in the DB contain a ., they're 0.2 or below, so migrate em
longuns = MigrationHistory.objects.filter(app_name__contains=".")
if longuns:
for mh in longuns:
mh.app_name = short_from_long(mh.app_name)
mh.save()
if not silent:
print "- Updated your South 0.2 database."
# Find out what delightful migrations we have
tree = dependency_tree()
migrations = get_migration_names(app)
# If there aren't any, quit quizically
if not migrations:
if not silent:
print "? You have no migrations for the '%s' app. You might want some." % app_name
return
if target_name not in migrations and target_name not in ["zero", None]:
matches = [x for x in migrations if x.startswith(target_name)]
if len(matches) == 1:
target = migrations.index(matches[0]) + 1
if not silent:
print " - Soft matched migration %s to %s." % (
target_name,
matches[0]
)
target_name = matches[0]
elif len(matches) > 1:
if not silent:
print " - Prefix %s matches more than one migration:" % target_name
print " " + "\n ".join(matches)
return
else:
if not silent:
print " ! '%s' is not a migration." % target_name
return
# Check there's no strange ones in the database
ghost_migrations = []
for m in MigrationHistory.objects.filter(applied__isnull = False):
try:
if get_app(m.app_name) not in tree or m.migration not in tree[get_app(m.app_name)]:
ghost_migrations.append(m)
except ImproperlyConfigured:
pass
if ghost_migrations:
if not silent:
print " ! These migrations are in the database but not on disk:"
print " - " + "\n - ".join(["%s: %s" % (x.app_name, x.migration) for x in ghost_migrations])
print " ! I'm not trusting myself; fix this yourself by fiddling"
print " ! with the south_migrationhistory table."
return
# Say what we're doing
if not silent:
print "Running migrations for %s:" % app_name
# Get the forwards and reverse dependencies for this target
if target_name == None:
target_name = migrations[-1]
if target_name == "zero":
forwards = []
backwards = needed_before_backwards(tree, app, migrations[0]) + [(app, migrations[0])]
else:
forwards = needed_before_forwards(tree, app, target_name) + [(app, target_name)]
# When migrating backwards we want to remove up to and including
# the next migration up in this app (not the next one, that includes other apps)
try:
migration_before_here = migrations[migrations.index(target_name)+1]
backwards = needed_before_backwards(tree, app, migration_before_here) + [(app, migration_before_here)]
except IndexError:
backwards = []
# Get the list of currently applied migrations from the db
current_migrations = []
for m in MigrationHistory.objects.filter(applied__isnull = False):
try:
current_migrations.append((get_app(m.app_name), m.migration))
except ImproperlyConfigured:
pass
direction = None
bad = False
# Work out the direction
applied_for_this_app = list(MigrationHistory.objects.filter(app_name=app_name, applied__isnull=False).order_by("migration"))
if target_name == "zero":
direction = -1
elif not applied_for_this_app:
direction = 1
elif migrations.index(target_name) > migrations.index(applied_for_this_app[-1].migration):
direction = 1
elif migrations.index(target_name) < migrations.index(applied_for_this_app[-1].migration):
direction = -1
else:
direction = None
# Is the whole forward branch applied?
missing = [step for step in forwards if step not in current_migrations]
# If they're all applied, we only know it's not backwards
if not missing:
direction = None
# If the remaining migrations are strictly a right segment of the forwards
# trace, we just need to go forwards to our target (and check for badness)
else:
problems = forwards_problems(tree, forwards, current_migrations, silent=silent)
if problems:
bad = True
direction = 1
# What about the whole backward trace then?
if not bad:
missing = [step for step in backwards if step not in current_migrations]
# If they're all missing, stick with the forwards decision
if missing == backwards:
pass
# If what's missing is a strict left segment of backwards (i.e.
# all the higher migrations) then we need to go backwards
else:
problems = backwards_problems(tree, backwards, current_migrations, silent=silent)
if problems:
bad = True
direction = -1
if bad and resolve_mode not in ['merge']:
if not silent:
print " ! Inconsistent migration history"
print " ! The following options are available:"
print " --merge: will just attempt the migration ignoring any potential dependency conflicts."
sys.exit(1)
if direction == 1:
if not silent:
print " - Migrating forwards to %s." % target_name
try:
for mapp, mname in forwards:
if (mapp, mname) not in current_migrations:
result = run_forwards(mapp, [mname], fake=fake, db_dry_run=db_dry_run, silent=silent)
if result is False: # The migrations errored, but nicely.
return
finally:
# Call any pending post_syncdb signals
db.send_pending_create_signals()
# Now load initial data, only if we're really doing things and ended up at current
if not fake and not db_dry_run and load_inital_data and target_name == migrations[-1]:
print " - Loading initial data for %s." % app_name
# Override Django's get_apps call temporarily to only load from the
# current app
old_get_apps, models.get_apps = (
models.get_apps,
lambda: [models.get_app(get_app_name(app))],
)
# Load the initial fixture
call_command('loaddata', 'initial_data', verbosity=1)
# Un-override
models.get_apps = old_get_apps
elif direction == -1:
if not silent:
print " - Migrating backwards to just after %s." % target_name
for mapp, mname in backwards:
if (mapp, mname) in current_migrations:
run_backwards(mapp, [mname], fake=fake, db_dry_run=db_dry_run, silent=silent)
else:
if not silent:
print "- Nothing to migrate."