mirror of https://github.com/django/django.git
Moved django.db.models.loading to django.apps.cache.
This commit doesn't contain any code changes; it's purely a refactoring.
This commit is contained in:
parent
fe1389e911
commit
860c2c8bc5
|
@ -0,0 +1,396 @@
|
||||||
|
"Utilities for loading models and the modules that contain them."
|
||||||
|
|
||||||
|
from collections import OrderedDict
|
||||||
|
import copy
|
||||||
|
import imp
|
||||||
|
from importlib import import_module
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from django.conf import settings
|
||||||
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
|
from django.utils.module_loading import module_has_submodule
|
||||||
|
from django.utils._os import upath
|
||||||
|
from django.utils import six
|
||||||
|
|
||||||
|
__all__ = ('get_apps', 'get_app', 'get_models', 'get_model', 'register_models',
|
||||||
|
'load_app', 'app_cache_ready')
|
||||||
|
|
||||||
|
MODELS_MODULE_NAME = 'models'
|
||||||
|
|
||||||
|
|
||||||
|
class ModelDict(OrderedDict):
|
||||||
|
"""
|
||||||
|
We need to special-case the deepcopy for this, as the keys are modules,
|
||||||
|
which can't be deep copied.
|
||||||
|
"""
|
||||||
|
def __deepcopy__(self, memo):
|
||||||
|
return self.__class__([(key, copy.deepcopy(value, memo))
|
||||||
|
for key, value in self.items()])
|
||||||
|
|
||||||
|
|
||||||
|
class UnavailableApp(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
def _initialize():
|
||||||
|
"""
|
||||||
|
Returns a dictionary to be used as the initial value of the
|
||||||
|
[shared] state of the app cache.
|
||||||
|
"""
|
||||||
|
return dict(
|
||||||
|
# Keys of app_store are the model modules for each application.
|
||||||
|
app_store=ModelDict(),
|
||||||
|
|
||||||
|
# Mapping of installed app_labels to model modules for that app.
|
||||||
|
app_labels={},
|
||||||
|
|
||||||
|
# Mapping of app_labels to a dictionary of model names to model code.
|
||||||
|
# May contain apps that are not installed.
|
||||||
|
app_models=ModelDict(),
|
||||||
|
|
||||||
|
# Mapping of app_labels to errors raised when trying to import the app.
|
||||||
|
app_errors={},
|
||||||
|
|
||||||
|
# Pending lookups for lazy relations
|
||||||
|
pending_lookups={},
|
||||||
|
|
||||||
|
# List of app_labels that allows restricting the set of apps.
|
||||||
|
# Used by TransactionTestCase.available_apps for performance reasons.
|
||||||
|
available_apps=None,
|
||||||
|
|
||||||
|
# -- Everything below here is only used when populating the cache --
|
||||||
|
loads_installed=True,
|
||||||
|
loaded=False,
|
||||||
|
handled=set(),
|
||||||
|
postponed=[],
|
||||||
|
nesting_level=0,
|
||||||
|
_get_models_cache={},
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class BaseAppCache(object):
|
||||||
|
"""
|
||||||
|
A cache that stores installed applications and their models. Used to
|
||||||
|
provide reverse-relations and for app introspection (e.g. admin).
|
||||||
|
|
||||||
|
This provides the base (non-Borg) AppCache class - the AppCache
|
||||||
|
subclass adds borg-like behaviour for the few cases where it's needed.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.__dict__ = _initialize()
|
||||||
|
# This stops _populate loading from INSTALLED_APPS and ignores the
|
||||||
|
# only_installed arguments to get_model[s]
|
||||||
|
self.loads_installed = False
|
||||||
|
|
||||||
|
def _populate(self):
|
||||||
|
"""
|
||||||
|
Fill in all the cache information. This method is threadsafe, in the
|
||||||
|
sense that every caller will see the same state upon return, and if the
|
||||||
|
cache is already initialised, it does no work.
|
||||||
|
"""
|
||||||
|
if self.loaded:
|
||||||
|
return
|
||||||
|
if not self.loads_installed:
|
||||||
|
self.loaded = True
|
||||||
|
return
|
||||||
|
# Note that we want to use the import lock here - the app loading is
|
||||||
|
# in many cases initiated implicitly by importing, and thus it is
|
||||||
|
# possible to end up in deadlock when one thread initiates loading
|
||||||
|
# without holding the importer lock and another thread then tries to
|
||||||
|
# import something which also launches the app loading. For details of
|
||||||
|
# this situation see #18251.
|
||||||
|
imp.acquire_lock()
|
||||||
|
try:
|
||||||
|
if self.loaded:
|
||||||
|
return
|
||||||
|
for app_name in settings.INSTALLED_APPS:
|
||||||
|
if app_name in self.handled:
|
||||||
|
continue
|
||||||
|
self.load_app(app_name, True)
|
||||||
|
if not self.nesting_level:
|
||||||
|
for app_name in self.postponed:
|
||||||
|
self.load_app(app_name)
|
||||||
|
self.loaded = True
|
||||||
|
finally:
|
||||||
|
imp.release_lock()
|
||||||
|
|
||||||
|
def _label_for(self, app_mod):
|
||||||
|
"""
|
||||||
|
Return app_label for given models module.
|
||||||
|
|
||||||
|
"""
|
||||||
|
return app_mod.__name__.split('.')[-2]
|
||||||
|
|
||||||
|
def load_app(self, app_name, can_postpone=False):
|
||||||
|
"""
|
||||||
|
Loads the app with the provided fully qualified name, and returns the
|
||||||
|
model module.
|
||||||
|
"""
|
||||||
|
app_module = import_module(app_name)
|
||||||
|
self.handled.add(app_name)
|
||||||
|
self.nesting_level += 1
|
||||||
|
try:
|
||||||
|
models = import_module('%s.%s' % (app_name, MODELS_MODULE_NAME))
|
||||||
|
except ImportError:
|
||||||
|
self.nesting_level -= 1
|
||||||
|
# If the app doesn't have a models module, we can just ignore the
|
||||||
|
# ImportError and return no models for it.
|
||||||
|
if not module_has_submodule(app_module, MODELS_MODULE_NAME):
|
||||||
|
return None
|
||||||
|
# But if the app does have a models module, we need to figure out
|
||||||
|
# whether to suppress or propagate the error. If can_postpone is
|
||||||
|
# True then it may be that the package is still being imported by
|
||||||
|
# Python and the models module isn't available yet. So we add the
|
||||||
|
# app to the postponed list and we'll try it again after all the
|
||||||
|
# recursion has finished (in populate). If can_postpone is False
|
||||||
|
# then it's time to raise the ImportError.
|
||||||
|
else:
|
||||||
|
if can_postpone:
|
||||||
|
self.postponed.append(app_name)
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
raise
|
||||||
|
|
||||||
|
self.nesting_level -= 1
|
||||||
|
if models not in self.app_store:
|
||||||
|
self.app_store[models] = len(self.app_store)
|
||||||
|
self.app_labels[self._label_for(models)] = models
|
||||||
|
return models
|
||||||
|
|
||||||
|
def app_cache_ready(self):
|
||||||
|
"""
|
||||||
|
Returns true if the model cache is fully populated.
|
||||||
|
|
||||||
|
Useful for code that wants to cache the results of get_models() for
|
||||||
|
themselves once it is safe to do so.
|
||||||
|
"""
|
||||||
|
return self.loaded
|
||||||
|
|
||||||
|
def get_apps(self):
|
||||||
|
"""
|
||||||
|
Returns a list of all installed modules that contain models.
|
||||||
|
"""
|
||||||
|
self._populate()
|
||||||
|
|
||||||
|
apps = self.app_store.items()
|
||||||
|
if self.available_apps is not None:
|
||||||
|
apps = [elt for elt in apps
|
||||||
|
if self._label_for(elt[0]) in self.available_apps]
|
||||||
|
|
||||||
|
# Ensure the returned list is always in the same order (with new apps
|
||||||
|
# added at the end). This avoids unstable ordering on the admin app
|
||||||
|
# list page, for example.
|
||||||
|
apps = sorted(apps, key=lambda elt: elt[1])
|
||||||
|
|
||||||
|
return [elt[0] for elt in apps]
|
||||||
|
|
||||||
|
def _get_app_package(self, app):
|
||||||
|
return '.'.join(app.__name__.split('.')[:-1])
|
||||||
|
|
||||||
|
def get_app_package(self, app_label):
|
||||||
|
return self._get_app_package(self.get_app(app_label))
|
||||||
|
|
||||||
|
def _get_app_path(self, app):
|
||||||
|
if hasattr(app, '__path__'): # models/__init__.py package
|
||||||
|
app_path = app.__path__[0]
|
||||||
|
else: # models.py module
|
||||||
|
app_path = app.__file__
|
||||||
|
return os.path.dirname(upath(app_path))
|
||||||
|
|
||||||
|
def get_app_path(self, app_label):
|
||||||
|
return self._get_app_path(self.get_app(app_label))
|
||||||
|
|
||||||
|
def get_app_paths(self):
|
||||||
|
"""
|
||||||
|
Returns a list of paths to all installed apps.
|
||||||
|
|
||||||
|
Useful for discovering files at conventional locations inside apps
|
||||||
|
(static files, templates, etc.)
|
||||||
|
"""
|
||||||
|
self._populate()
|
||||||
|
|
||||||
|
app_paths = []
|
||||||
|
for app in self.get_apps():
|
||||||
|
app_paths.append(self._get_app_path(app))
|
||||||
|
return app_paths
|
||||||
|
|
||||||
|
def get_app(self, app_label, emptyOK=False):
|
||||||
|
"""
|
||||||
|
Returns the module containing the models for the given app_label.
|
||||||
|
|
||||||
|
Returns None if the app has no models in it and emptyOK is True.
|
||||||
|
|
||||||
|
Raises UnavailableApp when set_available_apps() in in effect and
|
||||||
|
doesn't include app_label.
|
||||||
|
"""
|
||||||
|
self._populate()
|
||||||
|
imp.acquire_lock()
|
||||||
|
try:
|
||||||
|
for app_name in settings.INSTALLED_APPS:
|
||||||
|
if app_label == app_name.split('.')[-1]:
|
||||||
|
mod = self.load_app(app_name, False)
|
||||||
|
if mod is None and not emptyOK:
|
||||||
|
raise ImproperlyConfigured("App with label %s is missing a models.py module." % app_label)
|
||||||
|
if self.available_apps is not None and app_label not in self.available_apps:
|
||||||
|
raise UnavailableApp("App with label %s isn't available." % app_label)
|
||||||
|
return mod
|
||||||
|
raise ImproperlyConfigured("App with label %s could not be found" % app_label)
|
||||||
|
finally:
|
||||||
|
imp.release_lock()
|
||||||
|
|
||||||
|
def get_app_errors(self):
|
||||||
|
"Returns the map of known problems with the INSTALLED_APPS."
|
||||||
|
self._populate()
|
||||||
|
return self.app_errors
|
||||||
|
|
||||||
|
def get_models(self, app_mod=None,
|
||||||
|
include_auto_created=False, include_deferred=False,
|
||||||
|
only_installed=True, include_swapped=False):
|
||||||
|
"""
|
||||||
|
Given a module containing models, returns a list of the models.
|
||||||
|
Otherwise returns a list of all installed models.
|
||||||
|
|
||||||
|
By default, auto-created models (i.e., m2m models without an
|
||||||
|
explicit intermediate table) are not included. However, if you
|
||||||
|
specify include_auto_created=True, they will be.
|
||||||
|
|
||||||
|
By default, models created to satisfy deferred attribute
|
||||||
|
queries are *not* included in the list of models. However, if
|
||||||
|
you specify include_deferred, they will be.
|
||||||
|
|
||||||
|
By default, models that aren't part of installed apps will *not*
|
||||||
|
be included in the list of models. However, if you specify
|
||||||
|
only_installed=False, they will be. If you're using a non-default
|
||||||
|
AppCache, this argument does nothing - all models will be included.
|
||||||
|
|
||||||
|
By default, models that have been swapped out will *not* be
|
||||||
|
included in the list of models. However, if you specify
|
||||||
|
include_swapped, they will be.
|
||||||
|
"""
|
||||||
|
if not self.loads_installed:
|
||||||
|
only_installed = False
|
||||||
|
cache_key = (app_mod, include_auto_created, include_deferred, only_installed, include_swapped)
|
||||||
|
model_list = None
|
||||||
|
try:
|
||||||
|
model_list = self._get_models_cache[cache_key]
|
||||||
|
if self.available_apps is not None and only_installed:
|
||||||
|
model_list = [m for m in model_list if m._meta.app_label in self.available_apps]
|
||||||
|
return model_list
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
self._populate()
|
||||||
|
if app_mod:
|
||||||
|
if app_mod in self.app_store:
|
||||||
|
app_list = [self.app_models.get(self._label_for(app_mod), ModelDict())]
|
||||||
|
else:
|
||||||
|
app_list = []
|
||||||
|
else:
|
||||||
|
if only_installed:
|
||||||
|
app_list = [self.app_models.get(app_label, ModelDict())
|
||||||
|
for app_label in six.iterkeys(self.app_labels)]
|
||||||
|
else:
|
||||||
|
app_list = six.itervalues(self.app_models)
|
||||||
|
model_list = []
|
||||||
|
for app in app_list:
|
||||||
|
model_list.extend(
|
||||||
|
model for model in app.values()
|
||||||
|
if ((not model._deferred or include_deferred) and
|
||||||
|
(not model._meta.auto_created or include_auto_created) and
|
||||||
|
(not model._meta.swapped or include_swapped))
|
||||||
|
)
|
||||||
|
self._get_models_cache[cache_key] = model_list
|
||||||
|
if self.available_apps is not None and only_installed:
|
||||||
|
model_list = [m for m in model_list if m._meta.app_label in self.available_apps]
|
||||||
|
return model_list
|
||||||
|
|
||||||
|
def get_model(self, app_label, model_name,
|
||||||
|
seed_cache=True, only_installed=True):
|
||||||
|
"""
|
||||||
|
Returns the model matching the given app_label and case-insensitive
|
||||||
|
model_name.
|
||||||
|
|
||||||
|
Returns None if no model is found.
|
||||||
|
|
||||||
|
Raises UnavailableApp when set_available_apps() in in effect and
|
||||||
|
doesn't include app_label.
|
||||||
|
"""
|
||||||
|
if not self.loads_installed:
|
||||||
|
only_installed = False
|
||||||
|
if seed_cache:
|
||||||
|
self._populate()
|
||||||
|
if only_installed and app_label not in self.app_labels:
|
||||||
|
return None
|
||||||
|
if (self.available_apps is not None and only_installed
|
||||||
|
and app_label not in self.available_apps):
|
||||||
|
raise UnavailableApp("App with label %s isn't available." % app_label)
|
||||||
|
try:
|
||||||
|
return self.app_models[app_label][model_name.lower()]
|
||||||
|
except KeyError:
|
||||||
|
return None
|
||||||
|
|
||||||
|
def register_models(self, app_label, *models):
|
||||||
|
"""
|
||||||
|
Register a set of models as belonging to an app.
|
||||||
|
"""
|
||||||
|
for model in models:
|
||||||
|
# Store as 'name: model' pair in a dictionary
|
||||||
|
# in the app_models dictionary
|
||||||
|
model_name = model._meta.model_name
|
||||||
|
model_dict = self.app_models.setdefault(app_label, ModelDict())
|
||||||
|
if model_name in model_dict:
|
||||||
|
# The same model may be imported via different paths (e.g.
|
||||||
|
# appname.models and project.appname.models). We use the source
|
||||||
|
# filename as a means to detect identity.
|
||||||
|
fname1 = os.path.abspath(upath(sys.modules[model.__module__].__file__))
|
||||||
|
fname2 = os.path.abspath(upath(sys.modules[model_dict[model_name].__module__].__file__))
|
||||||
|
# Since the filename extension could be .py the first time and
|
||||||
|
# .pyc or .pyo the second time, ignore the extension when
|
||||||
|
# comparing.
|
||||||
|
if os.path.splitext(fname1)[0] == os.path.splitext(fname2)[0]:
|
||||||
|
continue
|
||||||
|
model_dict[model_name] = model
|
||||||
|
self._get_models_cache.clear()
|
||||||
|
|
||||||
|
def set_available_apps(self, available):
|
||||||
|
if not set(available).issubset(set(settings.INSTALLED_APPS)):
|
||||||
|
extra = set(available) - set(settings.INSTALLED_APPS)
|
||||||
|
raise ValueError("Available apps isn't a subset of installed "
|
||||||
|
"apps, extra apps: " + ", ".join(extra))
|
||||||
|
self.available_apps = set(app.rsplit('.', 1)[-1] for app in available)
|
||||||
|
|
||||||
|
def unset_available_apps(self):
|
||||||
|
self.available_apps = None
|
||||||
|
|
||||||
|
|
||||||
|
class AppCache(BaseAppCache):
|
||||||
|
"""
|
||||||
|
A cache that stores installed applications and their models. Used to
|
||||||
|
provide reverse-relations and for app introspection (e.g. admin).
|
||||||
|
|
||||||
|
Borg version of the BaseAppCache class.
|
||||||
|
"""
|
||||||
|
|
||||||
|
__shared_state = _initialize()
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.__dict__ = self.__shared_state
|
||||||
|
|
||||||
|
|
||||||
|
cache = AppCache()
|
||||||
|
|
||||||
|
|
||||||
|
# These methods were always module level, so are kept that way for backwards
|
||||||
|
# compatibility.
|
||||||
|
get_apps = cache.get_apps
|
||||||
|
get_app_package = cache.get_app_package
|
||||||
|
get_app_path = cache.get_app_path
|
||||||
|
get_app_paths = cache.get_app_paths
|
||||||
|
get_app = cache.get_app
|
||||||
|
get_app_errors = cache.get_app_errors
|
||||||
|
get_models = cache.get_models
|
||||||
|
get_model = cache.get_model
|
||||||
|
register_models = cache.register_models
|
||||||
|
load_app = cache.load_app
|
||||||
|
app_cache_ready = cache.app_cache_ready
|
|
@ -1,6 +1,7 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from datetime import date
|
from datetime import date
|
||||||
|
|
||||||
|
from django.apps.cache import get_app
|
||||||
from django.contrib.auth import models, management
|
from django.contrib.auth import models, management
|
||||||
from django.contrib.auth.management import create_permissions
|
from django.contrib.auth.management import create_permissions
|
||||||
from django.contrib.auth.management.commands import changepassword
|
from django.contrib.auth.management.commands import changepassword
|
||||||
|
@ -12,7 +13,6 @@ from django.core import exceptions
|
||||||
from django.core.management import call_command
|
from django.core.management import call_command
|
||||||
from django.core.management.base import CommandError
|
from django.core.management.base import CommandError
|
||||||
from django.core.management.validation import get_validation_errors
|
from django.core.management.validation import get_validation_errors
|
||||||
from django.db.models.loading import get_app
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
|
|
|
@ -3,6 +3,7 @@ import os
|
||||||
import operator
|
import operator
|
||||||
from optparse import make_option
|
from optparse import make_option
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.core.management.base import BaseCommand, CommandError
|
from django.core.management.base import BaseCommand, CommandError
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
from django.db import connections, DEFAULT_DB_ALIAS, migrations
|
from django.db import connections, DEFAULT_DB_ALIAS, migrations
|
||||||
|
@ -11,7 +12,6 @@ from django.db.migrations.autodetector import MigrationAutodetector
|
||||||
from django.db.migrations.questioner import MigrationQuestioner, InteractiveMigrationQuestioner
|
from django.db.migrations.questioner import MigrationQuestioner, InteractiveMigrationQuestioner
|
||||||
from django.db.migrations.state import ProjectState
|
from django.db.migrations.state import ProjectState
|
||||||
from django.db.migrations.writer import MigrationWriter
|
from django.db.migrations.writer import MigrationWriter
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.utils.six.moves import reduce
|
from django.utils.six.moves import reduce
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@ from importlib import import_module
|
||||||
import itertools
|
import itertools
|
||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.management import call_command
|
from django.core.management import call_command
|
||||||
from django.core.management.base import BaseCommand, CommandError
|
from django.core.management.base import BaseCommand, CommandError
|
||||||
|
@ -16,7 +17,6 @@ from django.db.migrations.executor import MigrationExecutor
|
||||||
from django.db.migrations.loader import MigrationLoader, AmbiguityError
|
from django.db.migrations.loader import MigrationLoader, AmbiguityError
|
||||||
from django.db.migrations.state import ProjectState
|
from django.db.migrations.state import ProjectState
|
||||||
from django.db.migrations.autodetector import MigrationAutodetector
|
from django.db.migrations.autodetector import MigrationAutodetector
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.utils.module_loading import module_has_submodule
|
from django.utils.module_loading import module_has_submodule
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -66,7 +66,7 @@ class Command(NoArgsCommand):
|
||||||
def handle_noargs(self, **options):
|
def handle_noargs(self, **options):
|
||||||
# XXX: (Temporary) workaround for ticket #1796: force early loading of all
|
# XXX: (Temporary) workaround for ticket #1796: force early loading of all
|
||||||
# models from installed apps.
|
# models from installed apps.
|
||||||
from django.db.models.loading import get_models
|
from django.apps.cache import get_models
|
||||||
get_models()
|
get_models()
|
||||||
|
|
||||||
use_plain = options.get('plain', False)
|
use_plain = options.get('plain', False)
|
||||||
|
|
|
@ -26,8 +26,8 @@ def get_validation_errors(outfile, app=None):
|
||||||
validates all models of all installed apps. Writes errors, if any, to outfile.
|
validates all models of all installed apps. Writes errors, if any, to outfile.
|
||||||
Returns number of errors.
|
Returns number of errors.
|
||||||
"""
|
"""
|
||||||
|
from django.apps.cache import get_app_errors
|
||||||
from django.db import connection, models
|
from django.db import connection, models
|
||||||
from django.db.models.loading import get_app_errors
|
|
||||||
from django.db.models.deletion import SET_NULL, SET_DEFAULT
|
from django.db.models.deletion import SET_NULL, SET_DEFAULT
|
||||||
|
|
||||||
e = ModelErrorCollection(outfile)
|
e = ModelErrorCollection(outfile)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
from django.apps.cache import BaseAppCache
|
||||||
from django.db.backends.schema import BaseDatabaseSchemaEditor
|
from django.db.backends.schema import BaseDatabaseSchemaEditor
|
||||||
from django.db.models.fields.related import ManyToManyField
|
from django.db.models.fields.related import ManyToManyField
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
|
|
||||||
|
|
||||||
class DatabaseSchemaEditor(BaseDatabaseSchemaEditor):
|
class DatabaseSchemaEditor(BaseDatabaseSchemaEditor):
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from importlib import import_module
|
from importlib import import_module
|
||||||
from django.db.models.loading import cache
|
from django.apps.cache import cache
|
||||||
from django.db.migrations.recorder import MigrationRecorder
|
from django.db.migrations.recorder import MigrationRecorder
|
||||||
from django.db.migrations.graph import MigrationGraph
|
from django.db.migrations.graph import MigrationGraph
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
|
|
|
@ -2,7 +2,7 @@ import importlib
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from django.db.models.loading import cache
|
from django.apps.cache import cache
|
||||||
from django.utils import datetime_safe
|
from django.utils import datetime_safe
|
||||||
from django.utils.six.moves import input
|
from django.utils.six.moves import input
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
from django.apps.cache import BaseAppCache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
from django.utils.timezone import now
|
from django.utils.timezone import now
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
from django.apps.cache import BaseAppCache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
from django.db.models.options import DEFAULT_NAMES, normalize_unique_together
|
from django.db.models.options import DEFAULT_NAMES, normalize_unique_together
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
from django.utils.module_loading import import_by_path
|
from django.utils.module_loading import import_by_path
|
||||||
|
|
|
@ -3,12 +3,12 @@ import datetime
|
||||||
import types
|
import types
|
||||||
import os
|
import os
|
||||||
from importlib import import_module
|
from importlib import import_module
|
||||||
from django.utils import six
|
from django.apps.cache import cache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.db.migrations.loader import MigrationLoader
|
from django.db.migrations.loader import MigrationLoader
|
||||||
from django.utils.encoding import force_text
|
from django.utils.encoding import force_text
|
||||||
from django.utils.functional import Promise
|
from django.utils.functional import Promise
|
||||||
|
from django.utils import six
|
||||||
|
|
||||||
|
|
||||||
class MigrationWriter(object):
|
class MigrationWriter(object):
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
|
|
||||||
from django.core.exceptions import ObjectDoesNotExist, ImproperlyConfigured # NOQA
|
from django.apps.cache import ( # NOQA
|
||||||
from django.db.models.loading import ( # NOQA
|
|
||||||
get_apps, get_app_path, get_app_paths, get_app, get_models, get_model,
|
get_apps, get_app_path, get_app_paths, get_app, get_models, get_model,
|
||||||
register_models, UnavailableApp)
|
register_models, UnavailableApp)
|
||||||
|
from django.core.exceptions import ObjectDoesNotExist, ImproperlyConfigured # NOQA
|
||||||
from django.db.models.query import Q, QuerySet, Prefetch # NOQA
|
from django.db.models.query import Q, QuerySet, Prefetch # NOQA
|
||||||
from django.db.models.expressions import F # NOQA
|
from django.db.models.expressions import F # NOQA
|
||||||
from django.db.models.manager import Manager # NOQA
|
from django.db.models.manager import Manager # NOQA
|
||||||
|
|
|
@ -5,6 +5,7 @@ import sys
|
||||||
from functools import update_wrapper
|
from functools import update_wrapper
|
||||||
from django.utils.six.moves import zip
|
from django.utils.six.moves import zip
|
||||||
|
|
||||||
|
from django.apps.cache import get_model, MODELS_MODULE_NAME
|
||||||
import django.db.models.manager # NOQA: Imported to register signal handler.
|
import django.db.models.manager # NOQA: Imported to register signal handler.
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.exceptions import (ObjectDoesNotExist,
|
from django.core.exceptions import (ObjectDoesNotExist,
|
||||||
|
@ -19,7 +20,6 @@ from django.db.models.query_utils import DeferredAttribute, deferred_class_facto
|
||||||
from django.db.models.deletion import Collector
|
from django.db.models.deletion import Collector
|
||||||
from django.db.models.options import Options
|
from django.db.models.options import Options
|
||||||
from django.db.models import signals
|
from django.db.models import signals
|
||||||
from django.db.models.loading import get_model, MODELS_MODULE_NAME
|
|
||||||
from django.utils.translation import ugettext_lazy as _
|
from django.utils.translation import ugettext_lazy as _
|
||||||
from django.utils.functional import curry
|
from django.utils.functional import curry
|
||||||
from django.utils.encoding import force_str, force_text
|
from django.utils.encoding import force_str, force_text
|
||||||
|
|
|
@ -9,8 +9,8 @@ import warnings
|
||||||
from base64 import b64decode, b64encode
|
from base64 import b64decode, b64encode
|
||||||
from itertools import tee
|
from itertools import tee
|
||||||
|
|
||||||
|
from django.apps.cache import get_model
|
||||||
from django.db import connection
|
from django.db import connection
|
||||||
from django.db.models.loading import get_model
|
|
||||||
from django.db.models.query_utils import QueryWrapper
|
from django.db.models.query_utils import QueryWrapper
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django import forms
|
from django import forms
|
||||||
|
|
|
@ -1,387 +1,15 @@
|
||||||
"Utilities for loading models and the modules that contain them."
|
import warnings
|
||||||
|
|
||||||
from collections import OrderedDict
|
from django.apps.cache import cache
|
||||||
import copy
|
|
||||||
import imp
|
|
||||||
from importlib import import_module
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
|
|
||||||
from django.conf import settings
|
warnings.warn(
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
"The utilities in django.db.models.loading are deprecated "
|
||||||
from django.utils.module_loading import module_has_submodule
|
"in favor of the new application loading system.",
|
||||||
from django.utils._os import upath
|
PendingDeprecationWarning, stacklevel=2)
|
||||||
from django.utils import six
|
|
||||||
|
|
||||||
__all__ = ('get_apps', 'get_app', 'get_models', 'get_model', 'register_models',
|
__all__ = ('get_apps', 'get_app', 'get_models', 'get_model', 'register_models',
|
||||||
'load_app', 'app_cache_ready')
|
'load_app', 'app_cache_ready')
|
||||||
|
|
||||||
MODELS_MODULE_NAME = 'models'
|
|
||||||
|
|
||||||
|
|
||||||
class ModelDict(OrderedDict):
|
|
||||||
"""
|
|
||||||
We need to special-case the deepcopy for this, as the keys are modules,
|
|
||||||
which can't be deep copied.
|
|
||||||
"""
|
|
||||||
def __deepcopy__(self, memo):
|
|
||||||
return self.__class__([(key, copy.deepcopy(value, memo))
|
|
||||||
for key, value in self.items()])
|
|
||||||
|
|
||||||
|
|
||||||
class UnavailableApp(Exception):
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def _initialize():
|
|
||||||
"""
|
|
||||||
Returns a dictionary to be used as the initial value of the
|
|
||||||
[shared] state of the app cache.
|
|
||||||
"""
|
|
||||||
return dict(
|
|
||||||
# Keys of app_store are the model modules for each application.
|
|
||||||
app_store=ModelDict(),
|
|
||||||
|
|
||||||
# Mapping of installed app_labels to model modules for that app.
|
|
||||||
app_labels={},
|
|
||||||
|
|
||||||
# Mapping of app_labels to a dictionary of model names to model code.
|
|
||||||
# May contain apps that are not installed.
|
|
||||||
app_models=ModelDict(),
|
|
||||||
|
|
||||||
# Mapping of app_labels to errors raised when trying to import the app.
|
|
||||||
app_errors={},
|
|
||||||
|
|
||||||
# Pending lookups for lazy relations
|
|
||||||
pending_lookups={},
|
|
||||||
|
|
||||||
# List of app_labels that allows restricting the set of apps.
|
|
||||||
# Used by TransactionTestCase.available_apps for performance reasons.
|
|
||||||
available_apps=None,
|
|
||||||
|
|
||||||
# -- Everything below here is only used when populating the cache --
|
|
||||||
loads_installed=True,
|
|
||||||
loaded=False,
|
|
||||||
handled=set(),
|
|
||||||
postponed=[],
|
|
||||||
nesting_level=0,
|
|
||||||
_get_models_cache={},
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class BaseAppCache(object):
|
|
||||||
"""
|
|
||||||
A cache that stores installed applications and their models. Used to
|
|
||||||
provide reverse-relations and for app introspection (e.g. admin).
|
|
||||||
|
|
||||||
This provides the base (non-Borg) AppCache class - the AppCache
|
|
||||||
subclass adds borg-like behaviour for the few cases where it's needed.
|
|
||||||
"""
|
|
||||||
|
|
||||||
def __init__(self):
|
|
||||||
self.__dict__ = _initialize()
|
|
||||||
# This stops _populate loading from INSTALLED_APPS and ignores the
|
|
||||||
# only_installed arguments to get_model[s]
|
|
||||||
self.loads_installed = False
|
|
||||||
|
|
||||||
def _populate(self):
|
|
||||||
"""
|
|
||||||
Fill in all the cache information. This method is threadsafe, in the
|
|
||||||
sense that every caller will see the same state upon return, and if the
|
|
||||||
cache is already initialised, it does no work.
|
|
||||||
"""
|
|
||||||
if self.loaded:
|
|
||||||
return
|
|
||||||
if not self.loads_installed:
|
|
||||||
self.loaded = True
|
|
||||||
return
|
|
||||||
# Note that we want to use the import lock here - the app loading is
|
|
||||||
# in many cases initiated implicitly by importing, and thus it is
|
|
||||||
# possible to end up in deadlock when one thread initiates loading
|
|
||||||
# without holding the importer lock and another thread then tries to
|
|
||||||
# import something which also launches the app loading. For details of
|
|
||||||
# this situation see #18251.
|
|
||||||
imp.acquire_lock()
|
|
||||||
try:
|
|
||||||
if self.loaded:
|
|
||||||
return
|
|
||||||
for app_name in settings.INSTALLED_APPS:
|
|
||||||
if app_name in self.handled:
|
|
||||||
continue
|
|
||||||
self.load_app(app_name, True)
|
|
||||||
if not self.nesting_level:
|
|
||||||
for app_name in self.postponed:
|
|
||||||
self.load_app(app_name)
|
|
||||||
self.loaded = True
|
|
||||||
finally:
|
|
||||||
imp.release_lock()
|
|
||||||
|
|
||||||
def _label_for(self, app_mod):
|
|
||||||
"""
|
|
||||||
Return app_label for given models module.
|
|
||||||
|
|
||||||
"""
|
|
||||||
return app_mod.__name__.split('.')[-2]
|
|
||||||
|
|
||||||
def load_app(self, app_name, can_postpone=False):
|
|
||||||
"""
|
|
||||||
Loads the app with the provided fully qualified name, and returns the
|
|
||||||
model module.
|
|
||||||
"""
|
|
||||||
app_module = import_module(app_name)
|
|
||||||
self.handled.add(app_name)
|
|
||||||
self.nesting_level += 1
|
|
||||||
try:
|
|
||||||
models = import_module('%s.%s' % (app_name, MODELS_MODULE_NAME))
|
|
||||||
except ImportError:
|
|
||||||
self.nesting_level -= 1
|
|
||||||
# If the app doesn't have a models module, we can just ignore the
|
|
||||||
# ImportError and return no models for it.
|
|
||||||
if not module_has_submodule(app_module, MODELS_MODULE_NAME):
|
|
||||||
return None
|
|
||||||
# But if the app does have a models module, we need to figure out
|
|
||||||
# whether to suppress or propagate the error. If can_postpone is
|
|
||||||
# True then it may be that the package is still being imported by
|
|
||||||
# Python and the models module isn't available yet. So we add the
|
|
||||||
# app to the postponed list and we'll try it again after all the
|
|
||||||
# recursion has finished (in populate). If can_postpone is False
|
|
||||||
# then it's time to raise the ImportError.
|
|
||||||
else:
|
|
||||||
if can_postpone:
|
|
||||||
self.postponed.append(app_name)
|
|
||||||
return None
|
|
||||||
else:
|
|
||||||
raise
|
|
||||||
|
|
||||||
self.nesting_level -= 1
|
|
||||||
if models not in self.app_store:
|
|
||||||
self.app_store[models] = len(self.app_store)
|
|
||||||
self.app_labels[self._label_for(models)] = models
|
|
||||||
return models
|
|
||||||
|
|
||||||
def app_cache_ready(self):
|
|
||||||
"""
|
|
||||||
Returns true if the model cache is fully populated.
|
|
||||||
|
|
||||||
Useful for code that wants to cache the results of get_models() for
|
|
||||||
themselves once it is safe to do so.
|
|
||||||
"""
|
|
||||||
return self.loaded
|
|
||||||
|
|
||||||
def get_apps(self):
|
|
||||||
"""
|
|
||||||
Returns a list of all installed modules that contain models.
|
|
||||||
"""
|
|
||||||
self._populate()
|
|
||||||
|
|
||||||
apps = self.app_store.items()
|
|
||||||
if self.available_apps is not None:
|
|
||||||
apps = [elt for elt in apps
|
|
||||||
if self._label_for(elt[0]) in self.available_apps]
|
|
||||||
|
|
||||||
# Ensure the returned list is always in the same order (with new apps
|
|
||||||
# added at the end). This avoids unstable ordering on the admin app
|
|
||||||
# list page, for example.
|
|
||||||
apps = sorted(apps, key=lambda elt: elt[1])
|
|
||||||
|
|
||||||
return [elt[0] for elt in apps]
|
|
||||||
|
|
||||||
def _get_app_package(self, app):
|
|
||||||
return '.'.join(app.__name__.split('.')[:-1])
|
|
||||||
|
|
||||||
def get_app_package(self, app_label):
|
|
||||||
return self._get_app_package(self.get_app(app_label))
|
|
||||||
|
|
||||||
def _get_app_path(self, app):
|
|
||||||
if hasattr(app, '__path__'): # models/__init__.py package
|
|
||||||
app_path = app.__path__[0]
|
|
||||||
else: # models.py module
|
|
||||||
app_path = app.__file__
|
|
||||||
return os.path.dirname(upath(app_path))
|
|
||||||
|
|
||||||
def get_app_path(self, app_label):
|
|
||||||
return self._get_app_path(self.get_app(app_label))
|
|
||||||
|
|
||||||
def get_app_paths(self):
|
|
||||||
"""
|
|
||||||
Returns a list of paths to all installed apps.
|
|
||||||
|
|
||||||
Useful for discovering files at conventional locations inside apps
|
|
||||||
(static files, templates, etc.)
|
|
||||||
"""
|
|
||||||
self._populate()
|
|
||||||
|
|
||||||
app_paths = []
|
|
||||||
for app in self.get_apps():
|
|
||||||
app_paths.append(self._get_app_path(app))
|
|
||||||
return app_paths
|
|
||||||
|
|
||||||
def get_app(self, app_label, emptyOK=False):
|
|
||||||
"""
|
|
||||||
Returns the module containing the models for the given app_label.
|
|
||||||
|
|
||||||
Returns None if the app has no models in it and emptyOK is True.
|
|
||||||
|
|
||||||
Raises UnavailableApp when set_available_apps() in in effect and
|
|
||||||
doesn't include app_label.
|
|
||||||
"""
|
|
||||||
self._populate()
|
|
||||||
imp.acquire_lock()
|
|
||||||
try:
|
|
||||||
for app_name in settings.INSTALLED_APPS:
|
|
||||||
if app_label == app_name.split('.')[-1]:
|
|
||||||
mod = self.load_app(app_name, False)
|
|
||||||
if mod is None and not emptyOK:
|
|
||||||
raise ImproperlyConfigured("App with label %s is missing a models.py module." % app_label)
|
|
||||||
if self.available_apps is not None and app_label not in self.available_apps:
|
|
||||||
raise UnavailableApp("App with label %s isn't available." % app_label)
|
|
||||||
return mod
|
|
||||||
raise ImproperlyConfigured("App with label %s could not be found" % app_label)
|
|
||||||
finally:
|
|
||||||
imp.release_lock()
|
|
||||||
|
|
||||||
def get_app_errors(self):
|
|
||||||
"Returns the map of known problems with the INSTALLED_APPS."
|
|
||||||
self._populate()
|
|
||||||
return self.app_errors
|
|
||||||
|
|
||||||
def get_models(self, app_mod=None,
|
|
||||||
include_auto_created=False, include_deferred=False,
|
|
||||||
only_installed=True, include_swapped=False):
|
|
||||||
"""
|
|
||||||
Given a module containing models, returns a list of the models.
|
|
||||||
Otherwise returns a list of all installed models.
|
|
||||||
|
|
||||||
By default, auto-created models (i.e., m2m models without an
|
|
||||||
explicit intermediate table) are not included. However, if you
|
|
||||||
specify include_auto_created=True, they will be.
|
|
||||||
|
|
||||||
By default, models created to satisfy deferred attribute
|
|
||||||
queries are *not* included in the list of models. However, if
|
|
||||||
you specify include_deferred, they will be.
|
|
||||||
|
|
||||||
By default, models that aren't part of installed apps will *not*
|
|
||||||
be included in the list of models. However, if you specify
|
|
||||||
only_installed=False, they will be. If you're using a non-default
|
|
||||||
AppCache, this argument does nothing - all models will be included.
|
|
||||||
|
|
||||||
By default, models that have been swapped out will *not* be
|
|
||||||
included in the list of models. However, if you specify
|
|
||||||
include_swapped, they will be.
|
|
||||||
"""
|
|
||||||
if not self.loads_installed:
|
|
||||||
only_installed = False
|
|
||||||
cache_key = (app_mod, include_auto_created, include_deferred, only_installed, include_swapped)
|
|
||||||
model_list = None
|
|
||||||
try:
|
|
||||||
model_list = self._get_models_cache[cache_key]
|
|
||||||
if self.available_apps is not None and only_installed:
|
|
||||||
model_list = [m for m in model_list if m._meta.app_label in self.available_apps]
|
|
||||||
|
|
||||||
return model_list
|
|
||||||
except KeyError:
|
|
||||||
pass
|
|
||||||
self._populate()
|
|
||||||
if app_mod:
|
|
||||||
if app_mod in self.app_store:
|
|
||||||
app_list = [self.app_models.get(self._label_for(app_mod), ModelDict())]
|
|
||||||
else:
|
|
||||||
app_list = []
|
|
||||||
else:
|
|
||||||
if only_installed:
|
|
||||||
app_list = [self.app_models.get(app_label, ModelDict())
|
|
||||||
for app_label in six.iterkeys(self.app_labels)]
|
|
||||||
else:
|
|
||||||
app_list = six.itervalues(self.app_models)
|
|
||||||
model_list = []
|
|
||||||
for app in app_list:
|
|
||||||
model_list.extend(
|
|
||||||
model for model in app.values()
|
|
||||||
if ((not model._deferred or include_deferred) and
|
|
||||||
(not model._meta.auto_created or include_auto_created) and
|
|
||||||
(not model._meta.swapped or include_swapped))
|
|
||||||
)
|
|
||||||
self._get_models_cache[cache_key] = model_list
|
|
||||||
if self.available_apps is not None and only_installed:
|
|
||||||
model_list = [m for m in model_list if m._meta.app_label in self.available_apps]
|
|
||||||
return model_list
|
|
||||||
|
|
||||||
def get_model(self, app_label, model_name,
|
|
||||||
seed_cache=True, only_installed=True):
|
|
||||||
"""
|
|
||||||
Returns the model matching the given app_label and case-insensitive
|
|
||||||
model_name.
|
|
||||||
|
|
||||||
Returns None if no model is found.
|
|
||||||
|
|
||||||
Raises UnavailableApp when set_available_apps() in in effect and
|
|
||||||
doesn't include app_label.
|
|
||||||
"""
|
|
||||||
if not self.loads_installed:
|
|
||||||
only_installed = False
|
|
||||||
if seed_cache:
|
|
||||||
self._populate()
|
|
||||||
if only_installed and app_label not in self.app_labels:
|
|
||||||
return None
|
|
||||||
if (self.available_apps is not None and only_installed
|
|
||||||
and app_label not in self.available_apps):
|
|
||||||
raise UnavailableApp("App with label %s isn't available." % app_label)
|
|
||||||
try:
|
|
||||||
return self.app_models[app_label][model_name.lower()]
|
|
||||||
except KeyError:
|
|
||||||
return None
|
|
||||||
|
|
||||||
def register_models(self, app_label, *models):
|
|
||||||
"""
|
|
||||||
Register a set of models as belonging to an app.
|
|
||||||
"""
|
|
||||||
for model in models:
|
|
||||||
# Store as 'name: model' pair in a dictionary
|
|
||||||
# in the app_models dictionary
|
|
||||||
model_name = model._meta.model_name
|
|
||||||
model_dict = self.app_models.setdefault(app_label, ModelDict())
|
|
||||||
if model_name in model_dict:
|
|
||||||
# The same model may be imported via different paths (e.g.
|
|
||||||
# appname.models and project.appname.models). We use the source
|
|
||||||
# filename as a means to detect identity.
|
|
||||||
fname1 = os.path.abspath(upath(sys.modules[model.__module__].__file__))
|
|
||||||
fname2 = os.path.abspath(upath(sys.modules[model_dict[model_name].__module__].__file__))
|
|
||||||
# Since the filename extension could be .py the first time and
|
|
||||||
# .pyc or .pyo the second time, ignore the extension when
|
|
||||||
# comparing.
|
|
||||||
if os.path.splitext(fname1)[0] == os.path.splitext(fname2)[0]:
|
|
||||||
continue
|
|
||||||
model_dict[model_name] = model
|
|
||||||
self._get_models_cache.clear()
|
|
||||||
|
|
||||||
def set_available_apps(self, available):
|
|
||||||
if not set(available).issubset(set(settings.INSTALLED_APPS)):
|
|
||||||
extra = set(available) - set(settings.INSTALLED_APPS)
|
|
||||||
raise ValueError("Available apps isn't a subset of installed "
|
|
||||||
"apps, extra apps: " + ", ".join(extra))
|
|
||||||
self.available_apps = set(app.rsplit('.', 1)[-1] for app in available)
|
|
||||||
|
|
||||||
def unset_available_apps(self):
|
|
||||||
self.available_apps = None
|
|
||||||
|
|
||||||
|
|
||||||
class AppCache(BaseAppCache):
|
|
||||||
"""
|
|
||||||
A cache that stores installed applications and their models. Used to
|
|
||||||
provide reverse-relations and for app introspection (e.g. admin).
|
|
||||||
|
|
||||||
Borg version of the BaseAppCache class.
|
|
||||||
"""
|
|
||||||
|
|
||||||
__shared_state = _initialize()
|
|
||||||
|
|
||||||
def __init__(self):
|
|
||||||
self.__dict__ = self.__shared_state
|
|
||||||
|
|
||||||
|
|
||||||
cache = AppCache()
|
|
||||||
|
|
||||||
|
|
||||||
# These methods were always module level, so are kept that way for backwards
|
# These methods were always module level, so are kept that way for backwards
|
||||||
# compatibility.
|
# compatibility.
|
||||||
get_apps = cache.get_apps
|
get_apps = cache.get_apps
|
||||||
|
|
|
@ -5,11 +5,11 @@ import re
|
||||||
from bisect import bisect
|
from bisect import bisect
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
|
from django.apps.cache import app_cache_ready, cache
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.db.models.fields.related import ManyToManyRel
|
from django.db.models.fields.related import ManyToManyRel
|
||||||
from django.db.models.fields import AutoField, FieldDoesNotExist
|
from django.db.models.fields import AutoField, FieldDoesNotExist
|
||||||
from django.db.models.fields.proxy import OrderWrt
|
from django.db.models.fields.proxy import OrderWrt
|
||||||
from django.db.models.loading import app_cache_ready, cache
|
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
from django.utils.functional import cached_property
|
from django.utils.functional import cached_property
|
||||||
from django.utils.encoding import force_text, smart_text, python_2_unicode_compatible
|
from django.utils.encoding import force_text, smart_text, python_2_unicode_compatible
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
from collections import defaultdict
|
from collections import defaultdict
|
||||||
|
|
||||||
from django.db.models.loading import get_model
|
from django.apps.cache import get_model
|
||||||
from django.dispatch import Signal
|
from django.dispatch import Signal
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ import unittest
|
||||||
from unittest import skipIf # NOQA: Imported here for backward compatibility
|
from unittest import skipIf # NOQA: Imported here for backward compatibility
|
||||||
from unittest.util import safe_repr
|
from unittest.util import safe_repr
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core import mail
|
from django.core import mail
|
||||||
from django.core.exceptions import ValidationError, ImproperlyConfigured
|
from django.core.exceptions import ValidationError, ImproperlyConfigured
|
||||||
|
@ -25,7 +26,6 @@ from django.core.management.commands import flush
|
||||||
from django.core.servers.basehttp import WSGIRequestHandler, WSGIServer
|
from django.core.servers.basehttp import WSGIRequestHandler, WSGIServer
|
||||||
from django.core.urlresolvers import clear_url_caches, set_urlconf
|
from django.core.urlresolvers import clear_url_caches, set_urlconf
|
||||||
from django.db import connection, connections, DEFAULT_DB_ALIAS, transaction
|
from django.db import connection, connections, DEFAULT_DB_ALIAS, transaction
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.forms.fields import CharField
|
from django.forms.fields import CharField
|
||||||
from django.http import QueryDict
|
from django.http import QueryDict
|
||||||
from django.test.client import Client
|
from django.test.client import Client
|
||||||
|
|
|
@ -222,6 +222,9 @@ these changes.
|
||||||
* ``django.core.cache.get_cache`` will be removed. Add suitable entries
|
* ``django.core.cache.get_cache`` will be removed. Add suitable entries
|
||||||
to :setting:`CACHES` and use :data:`django.core.cache.caches` instead.
|
to :setting:`CACHES` and use :data:`django.core.cache.caches` instead.
|
||||||
|
|
||||||
|
* ``django.db.models.loading`` will be removed. Use the new application
|
||||||
|
loading APIs instead.
|
||||||
|
|
||||||
2.0
|
2.0
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
from django.apps.cache import BaseAppCache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
|
|
||||||
# We're testing app cache presence on load, so this is handy.
|
# We're testing app cache presence on load, so this is handy.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
from django.test import TestCase
|
|
||||||
from django.db.models.loading import cache, BaseAppCache
|
from django.apps.cache import cache, BaseAppCache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
from .models import TotallyNormal, SoAlternative, new_app_cache
|
from .models import TotallyNormal, SoAlternative, new_app_cache
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ import os
|
||||||
import sys
|
import sys
|
||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
|
|
||||||
from django.db.models.loading import cache, load_app, get_model, get_models, AppCache
|
from django.apps.cache import cache, load_app, get_model, get_models, AppCache
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
from django.utils._os import upath
|
from django.utils._os import upath
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.apps.cache import BaseAppCache
|
||||||
from django.contrib.contenttypes.models import ContentType
|
from django.contrib.contenttypes.models import ContentType
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
|
||||||
from .models import Author, Article
|
from .models import Author, Article
|
||||||
|
|
|
@ -2,10 +2,10 @@ from __future__ import unicode_literals
|
||||||
|
|
||||||
from operator import attrgetter
|
from operator import attrgetter
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.contrib.contenttypes.models import ContentType
|
from django.contrib.contenttypes.models import ContentType
|
||||||
from django.contrib.sessions.backends.db import SessionStore
|
from django.contrib.sessions.backends.db import SessionStore
|
||||||
from django.db.models import Count
|
from django.db.models import Count
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
from django.apps.cache import get_app
|
||||||
from django.core.exceptions import ImproperlyConfigured
|
from django.core.exceptions import ImproperlyConfigured
|
||||||
from django.db.models.loading import get_app
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
|
|
|
@ -2,8 +2,8 @@ import copy
|
||||||
import sys
|
import sys
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from django.apps.cache import cache, load_app
|
||||||
from django.core.management.validation import get_validation_errors
|
from django.core.management.validation import get_validation_errors
|
||||||
from django.db.models.loading import cache, load_app
|
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
from django.utils.six import StringIO
|
from django.utils.six import StringIO
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
import copy
|
import copy
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.template import Context, Template
|
from django.template import Context, Template
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.apps.cache import BaseAppCache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
from django.utils.encoding import python_2_unicode_compatible
|
from django.utils.encoding import python_2_unicode_compatible
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,8 +6,8 @@ import copy
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.core.management import call_command, CommandError
|
from django.core.management import call_command, CommandError
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
from django.utils._os import upath
|
from django.utils._os import upath
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
from django.test import TestCase
|
from django.apps.cache import BaseAppCache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
from django.db.migrations.state import ProjectState, ModelState, InvalidBasesError
|
from django.db.migrations.state import ProjectState, ModelState, InvalidBasesError
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
|
||||||
class StateTests(TestCase):
|
class StateTests(TestCase):
|
||||||
|
|
|
@ -6,10 +6,10 @@ import copy
|
||||||
import datetime
|
import datetime
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.core.validators import RegexValidator, EmailValidator
|
from django.core.validators import RegexValidator, EmailValidator
|
||||||
from django.db import models, migrations
|
from django.db import models, migrations
|
||||||
from django.db.migrations.writer import MigrationWriter
|
from django.db.migrations.writer import MigrationWriter
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.test import TestCase, override_settings
|
from django.test import TestCase, override_settings
|
||||||
from django.utils import six
|
from django.utils import six
|
||||||
from django.utils.deconstruct import deconstructible
|
from django.utils.deconstruct import deconstructible
|
||||||
|
|
|
@ -3,9 +3,9 @@ from __future__ import unicode_literals
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
from django.apps.cache import cache, load_app
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.core.management import call_command
|
from django.core.management import call_command
|
||||||
from django.db.models.loading import cache, load_app
|
|
||||||
from django.test import TestCase, TransactionTestCase
|
from django.test import TestCase, TransactionTestCase
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
from django.utils._os import upath
|
from django.utils._os import upath
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
import copy
|
import copy
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
from django.contrib.contenttypes.models import ContentType
|
from django.contrib.contenttypes.models import ContentType
|
||||||
from django.core import management
|
from django.core import management
|
||||||
from django.core.exceptions import FieldError
|
from django.core.exceptions import FieldError
|
||||||
from django.db import models, DEFAULT_DB_ALIAS
|
from django.db import models, DEFAULT_DB_ALIAS
|
||||||
from django.db.models import signals
|
from django.db.models import signals
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
|
|
||||||
|
|
|
@ -80,14 +80,14 @@ def get_test_modules():
|
||||||
|
|
||||||
|
|
||||||
def get_installed():
|
def get_installed():
|
||||||
from django.db.models.loading import get_apps
|
from django.apps.cache import get_apps
|
||||||
return [app.__name__.rsplit('.', 1)[0] for app in get_apps()]
|
return [app.__name__.rsplit('.', 1)[0] for app in get_apps()]
|
||||||
|
|
||||||
|
|
||||||
def setup(verbosity, test_labels):
|
def setup(verbosity, test_labels):
|
||||||
import django
|
import django
|
||||||
|
from django.apps.cache import get_apps, load_app
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.db.models.loading import get_apps, load_app
|
|
||||||
from django.test import TransactionTestCase, TestCase
|
from django.test import TransactionTestCase, TestCase
|
||||||
|
|
||||||
print("Testing against Django installed in '%s'" % os.path.dirname(django.__file__))
|
print("Testing against Django installed in '%s'" % os.path.dirname(django.__file__))
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
from django.apps.cache import BaseAppCache
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
|
|
||||||
# Because we want to test creation and deletion of these as separate things,
|
# Because we want to test creation and deletion of these as separate things,
|
||||||
# these models are all inserted into a separate AppCache so the main test
|
# these models are all inserted into a separate AppCache so the main test
|
||||||
|
|
|
@ -2,10 +2,10 @@ from __future__ import unicode_literals
|
||||||
|
|
||||||
from django.utils.six import StringIO
|
from django.utils.six import StringIO
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.contrib.auth.models import Permission
|
from django.contrib.auth.models import Permission
|
||||||
from django.contrib.contenttypes.models import ContentType
|
from django.contrib.contenttypes.models import ContentType
|
||||||
from django.core import management
|
from django.core import management
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
from django.test.utils import override_settings
|
from django.test.utils import override_settings
|
||||||
|
|
||||||
|
|
|
@ -2,9 +2,9 @@ from __future__ import unicode_literals
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
|
|
||||||
|
from django.apps.cache import cache
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from django.db import connection
|
from django.db import connection
|
||||||
from django.db.models.loading import cache
|
|
||||||
from django.core.management.color import no_style
|
from django.core.management.color import no_style
|
||||||
from django.test import TestCase, skipIfDBFeature, skipUnlessDBFeature
|
from django.test import TestCase, skipIfDBFeature, skipUnlessDBFeature
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@ from __future__ import unicode_literals
|
||||||
import datetime
|
import datetime
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from django.apps.cache import BaseAppCache
|
||||||
from django.core.exceptions import ValidationError
|
from django.core.exceptions import ValidationError
|
||||||
from django.db import models
|
from django.db import models
|
||||||
from django.db.models.loading import BaseAppCache
|
|
||||||
from django.test import TestCase
|
from django.test import TestCase
|
||||||
|
|
||||||
from .models import (CustomPKModel, UniqueTogetherModel, UniqueFieldsModel,
|
from .models import (CustomPKModel, UniqueTogetherModel, UniqueFieldsModel,
|
||||||
|
|
Loading…
Reference in New Issue