2013-06-08 00:56:43 +08:00
|
|
|
from __future__ import unicode_literals
|
2013-06-07 22:28:38 +08:00
|
|
|
import datetime
|
|
|
|
import types
|
2013-06-19 23:23:52 +08:00
|
|
|
import os
|
2013-08-10 00:36:16 +08:00
|
|
|
from importlib import import_module
|
2013-06-08 00:56:43 +08:00
|
|
|
from django.utils import six
|
2013-06-07 22:36:31 +08:00
|
|
|
from django.db import models
|
2013-06-19 23:23:52 +08:00
|
|
|
from django.db.models.loading import cache
|
|
|
|
from django.db.migrations.loader import MigrationLoader
|
2013-06-07 22:28:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
class MigrationWriter(object):
|
|
|
|
"""
|
|
|
|
Takes a Migration instance and is able to produce the contents
|
|
|
|
of the migration file from it.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, migration):
|
|
|
|
self.migration = migration
|
|
|
|
|
|
|
|
def as_string(self):
|
|
|
|
"""
|
|
|
|
Returns a string of the file contents.
|
|
|
|
"""
|
|
|
|
items = {
|
|
|
|
"dependencies": repr(self.migration.dependencies),
|
|
|
|
}
|
|
|
|
imports = set()
|
|
|
|
# Deconstruct operations
|
|
|
|
operation_strings = []
|
|
|
|
for operation in self.migration.operations:
|
|
|
|
name, args, kwargs = operation.deconstruct()
|
|
|
|
arg_strings = []
|
|
|
|
for arg in args:
|
|
|
|
arg_string, arg_imports = self.serialize(arg)
|
|
|
|
arg_strings.append(arg_string)
|
|
|
|
imports.update(arg_imports)
|
|
|
|
for kw, arg in kwargs.items():
|
|
|
|
arg_string, arg_imports = self.serialize(arg)
|
|
|
|
imports.update(arg_imports)
|
|
|
|
arg_strings.append("%s = %s" % (kw, arg_string))
|
|
|
|
operation_strings.append("migrations.%s(%s\n )" % (name, "".join("\n %s," % arg for arg in arg_strings)))
|
|
|
|
items["operations"] = "[%s\n ]" % "".join("\n %s," % s for s in operation_strings)
|
|
|
|
# Format imports nicely
|
2013-06-08 00:56:43 +08:00
|
|
|
imports.discard("from django.db import models")
|
2013-06-07 22:28:38 +08:00
|
|
|
if not imports:
|
|
|
|
items["imports"] = ""
|
|
|
|
else:
|
|
|
|
items["imports"] = "\n".join(imports) + "\n"
|
2013-06-08 00:56:43 +08:00
|
|
|
return (MIGRATION_TEMPLATE % items).encode("utf8")
|
2013-06-07 22:28:38 +08:00
|
|
|
|
|
|
|
@property
|
|
|
|
def filename(self):
|
|
|
|
return "%s.py" % self.migration.name
|
|
|
|
|
2013-06-19 23:23:52 +08:00
|
|
|
@property
|
|
|
|
def path(self):
|
|
|
|
migrations_module_name = MigrationLoader.migrations_module(self.migration.app_label)
|
|
|
|
app_module = cache.get_app(self.migration.app_label)
|
|
|
|
# See if we can import the migrations module directly
|
|
|
|
try:
|
|
|
|
migrations_module = import_module(migrations_module_name)
|
|
|
|
basedir = os.path.dirname(migrations_module.__file__)
|
|
|
|
except ImportError:
|
|
|
|
# Alright, see if it's a direct submodule of the app
|
|
|
|
oneup = ".".join(migrations_module_name.split(".")[:-1])
|
|
|
|
app_oneup = ".".join(app_module.__name__.split(".")[:-1])
|
|
|
|
if oneup == app_oneup:
|
|
|
|
basedir = os.path.join(os.path.dirname(app_module.__file__), migrations_module_name.split(".")[-1])
|
|
|
|
else:
|
|
|
|
raise ImportError("Cannot open migrations module %s for app %s" % (migrations_module_name, self.migration.app_label))
|
|
|
|
return os.path.join(basedir, self.filename)
|
|
|
|
|
2013-06-07 22:28:38 +08:00
|
|
|
@classmethod
|
|
|
|
def serialize(cls, value):
|
|
|
|
"""
|
|
|
|
Serializes the value to a string that's parsable by Python, along
|
|
|
|
with any needed imports to make that string work.
|
|
|
|
More advanced than repr() as it can encode things
|
|
|
|
like datetime.datetime.now.
|
|
|
|
"""
|
|
|
|
# Sequences
|
|
|
|
if isinstance(value, (list, set, tuple)):
|
|
|
|
imports = set()
|
|
|
|
strings = []
|
|
|
|
for item in value:
|
|
|
|
item_string, item_imports = cls.serialize(item)
|
|
|
|
imports.update(item_imports)
|
|
|
|
strings.append(item_string)
|
|
|
|
if isinstance(value, set):
|
|
|
|
format = "set([%s])"
|
|
|
|
elif isinstance(value, tuple):
|
|
|
|
format = "(%s,)"
|
|
|
|
else:
|
|
|
|
format = "[%s]"
|
|
|
|
return format % (", ".join(strings)), imports
|
|
|
|
# Dictionaries
|
|
|
|
elif isinstance(value, dict):
|
|
|
|
imports = set()
|
|
|
|
strings = []
|
|
|
|
for k, v in value.items():
|
|
|
|
k_string, k_imports = cls.serialize(k)
|
|
|
|
v_string, v_imports = cls.serialize(v)
|
|
|
|
imports.update(k_imports)
|
|
|
|
imports.update(v_imports)
|
|
|
|
strings.append((k_string, v_string))
|
2013-08-30 07:20:00 +08:00
|
|
|
return "{%s}" % (", ".join("%s: %s" % (k, v) for k, v in strings)), imports
|
2013-06-07 22:28:38 +08:00
|
|
|
# Datetimes
|
|
|
|
elif isinstance(value, (datetime.datetime, datetime.date)):
|
|
|
|
return repr(value), set(["import datetime"])
|
|
|
|
# Simple types
|
2013-07-27 00:08:12 +08:00
|
|
|
elif isinstance(value, six.integer_types + (float, six.binary_type, six.text_type, bool, type(None))):
|
2013-06-07 22:28:38 +08:00
|
|
|
return repr(value), set()
|
2013-06-07 22:36:31 +08:00
|
|
|
# Django fields
|
|
|
|
elif isinstance(value, models.Field):
|
|
|
|
attr_name, path, args, kwargs = value.deconstruct()
|
|
|
|
module, name = path.rsplit(".", 1)
|
|
|
|
if module == "django.db.models":
|
2013-06-08 00:56:43 +08:00
|
|
|
imports = set(["from django.db import models"])
|
|
|
|
name = "models.%s" % name
|
2013-06-07 22:36:31 +08:00
|
|
|
else:
|
2013-06-08 00:56:43 +08:00
|
|
|
imports = set(["import %s" % module])
|
2013-06-07 22:36:31 +08:00
|
|
|
name = path
|
|
|
|
arg_strings = []
|
|
|
|
for arg in args:
|
|
|
|
arg_string, arg_imports = cls.serialize(arg)
|
|
|
|
arg_strings.append(arg_string)
|
|
|
|
imports.update(arg_imports)
|
|
|
|
for kw, arg in kwargs.items():
|
|
|
|
arg_string, arg_imports = cls.serialize(arg)
|
|
|
|
imports.update(arg_imports)
|
|
|
|
arg_strings.append("%s=%s" % (kw, arg_string))
|
|
|
|
return "%s(%s)" % (name, ", ".join(arg_strings)), imports
|
2013-06-07 22:28:38 +08:00
|
|
|
# Functions
|
|
|
|
elif isinstance(value, (types.FunctionType, types.BuiltinFunctionType)):
|
|
|
|
# Special-cases, as these don't have im_class
|
|
|
|
special_cases = [
|
|
|
|
(datetime.datetime.now, "datetime.datetime.now", ["import datetime"]),
|
|
|
|
(datetime.datetime.utcnow, "datetime.datetime.utcnow", ["import datetime"]),
|
|
|
|
(datetime.date.today, "datetime.date.today", ["import datetime"]),
|
|
|
|
]
|
|
|
|
for func, string, imports in special_cases:
|
|
|
|
if func == value: # For some reason "utcnow is not utcnow"
|
|
|
|
return string, set(imports)
|
|
|
|
# Method?
|
|
|
|
if hasattr(value, "im_class"):
|
|
|
|
klass = value.im_class
|
|
|
|
module = klass.__module__
|
|
|
|
return "%s.%s.%s" % (module, klass.__name__, value.__name__), set(["import %s" % module])
|
|
|
|
else:
|
|
|
|
module = value.__module__
|
|
|
|
if module is None:
|
|
|
|
raise ValueError("Cannot serialize function %r: No module" % value)
|
|
|
|
return "%s.%s" % (module, value.__name__), set(["import %s" % module])
|
2013-06-19 23:23:52 +08:00
|
|
|
# Classes
|
|
|
|
elif isinstance(value, type):
|
|
|
|
special_cases = [
|
|
|
|
(models.Model, "models.Model", []),
|
|
|
|
]
|
|
|
|
for case, string, imports in special_cases:
|
|
|
|
if case is value:
|
|
|
|
return string, set(imports)
|
|
|
|
if hasattr(value, "__module__"):
|
|
|
|
module = value.__module__
|
|
|
|
return "%s.%s" % (module, value.__name__), set(["import %s" % module])
|
2013-06-07 22:28:38 +08:00
|
|
|
# Uh oh.
|
|
|
|
else:
|
|
|
|
raise ValueError("Cannot serialize: %r" % value)
|
|
|
|
|
|
|
|
|
|
|
|
MIGRATION_TEMPLATE = """# encoding: utf8
|
|
|
|
from django.db import models, migrations
|
|
|
|
%(imports)s
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = %(dependencies)s
|
|
|
|
|
|
|
|
operations = %(operations)s
|
|
|
|
"""
|