forked from dimagi/commcare-hq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage.py
executable file
·157 lines (123 loc) · 4.89 KB
/
manage.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
#!/usr/bin/env python
from __future__ import absolute_import
from __future__ import unicode_literals
import sys
import os
import mimetypes
import six
import requests
import attr
import django
@attr.s
class GeventCommand(object):
command = attr.ib()
contains = attr.ib(default=None)
http_adapter_pool_size = attr.ib(default=None)
def _set_source_root_parent(source_root_parent):
"""
add everything under `source_root_parent` to the list of source roots
e.g. if you call this with param 'submodules'
and you have the file structure
project/
submodules/
foo-src/
foo/
bar-src/
bar/
(where foo and bar are python modules)
then foo and bar would become top-level importable
"""
filedir = os.path.dirname(__file__)
submodules_list = os.listdir(os.path.join(filedir, source_root_parent))
for d in submodules_list:
if d == "__init__.py" or d == '.' or d == '..':
continue
sys.path.insert(1, os.path.join(filedir, source_root_parent, d))
sys.path.append(os.path.join(filedir, source_root_parent))
def _set_source_root(source_root):
filedir = os.path.dirname(__file__)
sys.path.insert(1, os.path.join(filedir, source_root))
# HACK monkey-patch django setup to prevent second setup by django_nose
def _setup_once(*args, **kw):
if not hasattr(_setup_once, "done"):
_setup_once.done = True
_setup_once.setup(*args, **kw)
_setup_once.setup = django.setup
django.setup = _setup_once
def init_hq_python_path():
_set_source_root_parent('submodules')
_set_source_root(os.path.join('corehq', 'ex-submodules'))
_set_source_root(os.path.join('custom', '_legacy'))
def _should_patch_gevent(args, gevent_commands):
should_patch = False
for gevent_command in gevent_commands:
should_patch = args[1] == gevent_command.command
if gevent_command.contains:
should_patch = should_patch and gevent_command.contains in ' '.join(args)
if should_patch:
if gevent_command.http_adapter_pool_size:
requests.adapters.DEFAULT_POOLSIZE = gevent_command.http_adapter_pool_size
break
return should_patch
def set_default_settings_path(argv):
if len(argv) > 1 and argv[1] == 'test' or os.environ.get('CCHQ_TESTING') == '1':
os.environ.setdefault('CCHQ_TESTING', '1')
module = 'testsettings'
else:
module = 'settings'
os.environ.setdefault("DJANGO_SETTINGS_MODULE", module)
def patch_jsonfield():
"""Patch the ``to_python`` method of JSONField
See https://github.com/bradjasper/django-jsonfield/pull/173 for more details
"""
import six
import json
from django.core.exceptions import ValidationError
from django.utils.translation import ugettext_lazy as _
from jsonfield import JSONField
def to_python(self, value):
if isinstance(value, six.string_types):
try:
return json.loads(value, **self.load_kwargs)
except ValueError:
raise ValidationError(_("Enter valid JSON"))
return value
JSONField.to_python = to_python
def patch_assertItemsEqual():
import unittest
if six.PY3:
unittest.TestCase.assertItemsEqual = unittest.TestCase.assertCountEqual
if __name__ == "__main__":
init_hq_python_path()
# important to apply gevent monkey patches before running any other code
# applying this later can lead to inconsistencies and threading issues
# but compressor doesn't like it
# ('module' object has no attribute 'poll' which has to do with
# gevent-patching subprocess)
GEVENT_COMMANDS = (
GeventCommand('mvp_force_update'),
GeventCommand('run_gunicorn'),
GeventCommand('run_sql'),
GeventCommand('run_blob_migration'),
GeventCommand('check_blob_logs'),
GeventCommand('preindex_everything'),
GeventCommand('migrate_multi'),
GeventCommand('prime_views'),
GeventCommand('ptop_preindex'),
GeventCommand('sync_prepare_couchdb_multi'),
GeventCommand('sync_couch_views'),
GeventCommand('celery', contains='-P gevent'),
GeventCommand('populate_form_date_modified'),
GeventCommand('migrate_domain_from_couch_to_sql', http_adapter_pool_size=32),
GeventCommand('migrate_multiple_domains_from_couch_to_sql', http_adapter_pool_size=32),
)
if len(sys.argv) > 1 and _should_patch_gevent(sys.argv, GEVENT_COMMANDS):
from gevent.monkey import patch_all; patch_all(subprocess=True)
from psycogreen.gevent import patch_psycopg; patch_psycopg()
# workaround for https://github.com/smore-inc/tinys3/issues/33
mimetypes.init()
patch_jsonfield()
patch_assertItemsEqual()
set_default_settings_path(sys.argv)
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)