Generated: Wed 2013-03-13 10:33 CET
Source file: /media/Envs/Envs/filer-gallery/lib/python2.7/site-packages/south/migration/utils.py
Stats: 0 executed, 50 missed, 5 excluded, 28 ignored
import sys
from collections import deque
from django.utils.datastructures import SortedDict
from django.db import models
from south import exceptions
class SortedSet(SortedDict):
def __init__(self, data=tuple()):
self.extend(data)
def __str__(self):
return "SortedSet(%s)" % list(self)
def add(self, value):
self[value] = True
def remove(self, value):
del self[value]
def extend(self, iterable):
[self.add(k) for k in iterable]
def get_app_label(app):
"""
Returns the _internal_ app label for the given app module.
i.e. for <module django.contrib.auth.models> will return 'auth'
"""
return app.__name__.split('.')[-2]
def app_label_to_app_module(app_label):
"""
Given the app label, returns the module of the app itself (unlike models.get_app,
which returns the models module)
"""
# Get the models module
app = models.get_app(app_label)
module_name = ".".join(app.__name__.split(".")[:-1])
try:
module = sys.modules[module_name]
except KeyError:
__import__(module_name, {}, {}, [''])
module = sys.modules[module_name]
return module
def flatten(*stack):
stack = deque(stack)
while stack:
try:
x = stack[0].next()
except AttributeError:
stack[0] = iter(stack[0])
x = stack[0].next()
except StopIteration:
stack.popleft()
continue
if hasattr(x, '__iter__'):
stack.appendleft(x)
else:
yield x
def _dfs(start, get_children, path):
if start in path:
raise exceptions.CircularDependency(path[path.index(start):] + [start])
path.append(start)
yield start
children = sorted(get_children(start), key=lambda x: str(x))
if children:
# We need to apply all the migrations this one depends on
yield (_dfs(n, get_children, path) for n in children)
path.pop()
def dfs(start, get_children):
return flatten(_dfs(start, get_children, []))
def depends(start, get_children):
result = SortedSet(reversed(list(dfs(start, get_children))))
return list(result)