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
|
from __future__ import print_function
import invoke
from invoke import task
import os
from yaksh.settings import SERVER_POOL_PORT
SCRIPT_DIR = os.path.abspath(os.path.dirname(__file__))
TARGET_CONTAINER_NAME = 'yaksh_code_server'
SRC_IMAGE_NAME = 'fossee/yaksh_codeserver'
CHECK_FILE = 'server_running.txt'
CHECK_FILE_PATH = os.path.join(SCRIPT_DIR, 'yaksh_data', CHECK_FILE)
OS_NAME = sys.platform
def create_dir(path):
if not os.path.exists(path):
os.makedirs(path)
def remove_check_file(path):
if os.path.isfile(path):
os.remove(path)
def run_as(os_name):
if os_name.startswith('linux') or os_name == 'darwin':
return 'sudo'
elif os_name.startswith('Win32'):
return None
def get_cmd(run_as_cmd, base_cmd):
if run_as_cmd:
return '{0} {1}'.format(run_as_cmd, base_cmd)
else:
return base_cmd
@task
def setupdb(ctx):
print("** Setting up & migrating database **")
ctx.run("python manage.py makemigrations")
ctx.run("python manage.py migrate")
ctx.run("python manage.py loaddata demo_fixtures.json")
@task(setupdb)
def serve(ctx):
print("** Running the Django web server. Press Ctrl-C to Exit **")
ctx.run("python manage.py runserver")
@task
def clean(ctx):
print("** Discarding database **")
ctx.run("rm -rf {0}".format(os.path.join(SCRIPT_DIR, 'db.sqlite3')))
@task
def getimage(ctx, image=SRC_IMAGE_NAME):
try:
result = ctx.run("sudo docker inspect {0}".format(image), hide=True)
except invoke.exceptions.Failure:
print("The docker image {0} does not exist locally".format(image))
print("\n** Pulling latest image <{0}> from docker hub **".format(image))
base_cmd = "docker pull {0}".format(image)
run_as_cmd = run_as(OS_NAME)
cmd = get_cmd(run_as_cmd, base_cmd)
ctx.run(cmd)
print("\n** Done! Successfully pulled latest image <{0}> **".format(image))
@task
def start(ctx, ports=SERVER_POOL_PORT, image=SRC_IMAGE_NAME, unsafe=False,
version=3):
if unsafe:
with ctx.cd(SCRIPT_DIR):
print("** Initializing local code server **")
base_cmd = "python{0} -m yaksh.code_server".format(
version
)
run_as_cmd = run_as(OS_NAME)
cmd = get_cmd(run_as_cmd, base_cmd)
ctx.run(cmd)
else:
cmd_params = {'ports': ports,
'image': SRC_IMAGE_NAME,
'name': TARGET_CONTAINER_NAME,
'vol_mount': os.path.join(SCRIPT_DIR, 'yaksh_data'),
'command': 'sh {0}'.format(
os.path.join(SCRIPT_DIR,
'yaksh_data', 'yaksh', 'scripts', 'yaksh_script.sh')
)
}
remove_check_file(CHECK_FILE_PATH)
getimage(ctx, image=SRC_IMAGE_NAME)
print("** Preparing code server **")
create_dir(os.path.join(SCRIPT_DIR, 'yaksh_data', 'data'))
create_dir(os.path.join(SCRIPT_DIR, 'yaksh_data', 'output'))
ctx.run('cp -r {0} {1}'.format(
os.path.join(SCRIPT_DIR, 'yaksh'),
os.path.join(SCRIPT_DIR, 'yaksh_data')
)
)
ctx.run('cp {0} {1}'.format(
os.path.join(SCRIPT_DIR, 'requirements', 'requirements-codeserver.txt'),
os.path.join(SCRIPT_DIR, 'yaksh_data')
)
)
print("** Initializing code server within docker container **")
ctx.run(
"sudo docker run \
-dp {ports}:{ports} --name={name} \
-v {vol_mount}:{vol_mount} \
-w {vol_mount} \
{image} {command}".format(**cmd_params)
)
while not os.path.isfile(CHECK_FILE_PATH):
print("** Checking code server status. Press Ctrl-C to exit **\r", end="")
print("** Code server is up and running successfully **")
@task
def stop(ctx, container=TARGET_CONTAINER_NAME, hide=True):
result = ctx.run("sudo docker ps -q --filter='name={0}'".format(container))
remove_check_file(CHECK_FILE_PATH)
if result.stdout:
print ("** Stopping the docker container <{0}>".format(container))
base_cmd = "docker stop {0}".format(container)
run_as_cmd = run_as(OS_NAME)
cmd = get_cmd(run_as_cmd, base_cmd)
ctx.run(cmd)
print ("** Done! Stopped the docker container <{0}>".format(container))
print ("** Discarding the docker container <{0}>".format(container))
base_cmd = "docker rm {0}".format(container)
run_as_cmd = run_as(OS_NAME)
cmd = get_cmd(run_as_cmd, base_cmd)
print ("** Done! Discarded the docker container <{0}>".format(container))
else:
print("** Docker container <{0}> not found **".format(container))
|