~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to setup/build.py

Tutorial: Added a message, "no attempts have been made to this exercise",
    rather than displaying the empty box and View button.
    As a contingency, also fixed the View button - won't crash if there are no
    items in the list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
# Author: Matt Giuca, Refactored by David Coles
20
20
# Date:   02/07/2008
21
21
 
22
 
# setup/build.py
23
 
# Compiles all files and sets up a jail template in the source directory.
24
 
# Details:
25
 
# Compiles (GCC) trampoline/trampoline.c to trampoline/trampoline.
26
 
# Creates jail/.
27
 
# Creates standard subdirs inside the jail, eg bin, opt, home, tmp.
28
 
# Copies console/ to a location within the jail.
29
 
# Copies OS programs and files to corresponding locations within the jail
30
 
#   (eg. python and Python libs, ld.so, etc).
31
 
# Generates .pyc files for all the IVLE .py files.
32
 
 
33
22
import optparse
34
23
import os
 
24
import sys
35
25
import compileall
36
 
from setuputil import *
 
26
 
 
27
from setup import util
37
28
 
38
29
def build(args):
39
30
    usage = """usage: %prog build [options]
41
32
Compiles all files and sets up a jail template in the source directory.
42
33
-O is recommended to cause compilation to be optimised.
43
34
Details:
44
 
Compiles (GCC) trampoline/trampoline.c to trampoline/trampoline.
45
 
Compiles (GCC) timount/timount.c to timount/timount.
 
35
Compiles (GCC) bin/trampoline/trampoline.c to bin/trampoline/trampoline.
 
36
Compiles (GCC) bin/timount/timount.c to bin/timount/timount.
46
37
Creates jail with system and student packages installed from MIRROR.
47
38
Copies console/ to a location within the jail.
48
39
Copies OS programs and files to corresponding locations within the jail
63
54
    (options, args) = parser.parse_args(args)
64
55
 
65
56
    # Call the real function
66
 
    __build(options.dry, options.rebuildjail, options.apt_mirror)
 
57
    return __build(options.dry, options.rebuildjail, options.apt_mirror)
67
58
 
68
59
def __build(dry=False,rebuildjail=False,apt_mirror=None):
69
 
    # Importing configuration is a little tricky
70
 
    sys.path.append(os.pardir)
71
 
    import install_list
 
60
    # We need to import the one in the working copy, not in the system path.
 
61
    confmodule = __import__("ivle/conf/conf")
 
62
    install_list = util.InstallList()
72
63
 
73
64
    # Must be run as root or a dry run  
74
65
    if dry:
79
70
        print >>sys.stderr, "(I need to chroot)."
80
71
        return 1
81
72
    
82
 
    # Find out the revison number
83
 
    revnum = get_svn_revision()
84
 
    print "Building Revision %s"%str(revnum)
85
 
    if not dry:
86
 
        vfile = open('BUILD-VERSION','w')
87
 
        vfile.write(str(revnum) + '\n')
88
 
        vfile.close()
 
73
    if not rebuildjail and not os.path.exists('jail'):
 
74
        print >> sys.stderr, "No jail exists -- please rerun with -j."
 
75
        return 1
89
76
 
90
77
    # Compile the trampoline
91
78
    curdir = os.getcwd()
92
 
    os.chdir('trampoline')
93
 
    action_runprog('make', [], dry)
 
79
    os.chdir('bin/trampoline')
 
80
    util.action_runprog('make', [], dry)
94
81
    os.chdir(curdir)
95
82
 
96
83
    # Compile timount
97
84
    curdir = os.getcwd()
98
 
    os.chdir('timount')
99
 
    action_runprog('make', [], dry)
 
85
    os.chdir('bin/timount')
 
86
    util.action_runprog('make', [], dry)
100
87
    os.chdir(curdir)
101
88
 
102
89
    if rebuildjail:
104
91
        # Note: Other subdirs will be made by copying files
105
92
        if apt_mirror != None:
106
93
            os.environ['MIRROR'] = apt_mirror
107
 
        action_runprog('./buildjail.sh', [], dry)
 
94
        util.action_runprog('setup/buildjail.sh', [], dry)
108
95
 
109
96
    # Copy all console and operating system files into the jail
110
 
    action_copylist(install_list.list_scripts, 'jail/opt/ivle', dry)
111
 
    
 
97
    jail_share = os.path.join('jail', confmodule.share_path[1:])
 
98
    jail_services = os.path.join(jail_share, 'services')
 
99
    util.action_copylist(install_list.list_services, jail_share, dry)
 
100
 
112
101
    # Chmod the python console
113
 
    action_chmod_x('jail/opt/ivle/scripts/python-console', dry)
114
 
    action_chmod_x('jail/opt/ivle/scripts/fileservice', dry)
115
 
    action_chmod_x('jail/opt/ivle/scripts/serveservice', dry)
116
 
    
 
102
    util.action_chmod_x(os.path.join(jail_services, 'python-console'), dry)
 
103
    util.action_chmod_x(os.path.join(jail_services, 'fileservice'), dry)
 
104
    util.action_chmod_x(os.path.join(jail_services, 'serveservice'), dry)
 
105
 
117
106
    # Also copy the IVLE lib directory into the jail
118
 
    # This is necessary for running certain scripts
119
 
    action_copylist(install_list.list_lib, 'jail/opt/ivle', dry)
120
 
    # IMPORTANT: The file jail/opt/ivle/lib/conf/conf.py contains details
 
107
    # This is necessary for running certain services
 
108
    jail_site_packages = os.path.join('jail',
 
109
                                      confmodule.python_site_packages[1:])
 
110
    util.action_copylist(install_list.list_ivle_lib, jail_site_packages, dry)
 
111
    # IMPORTANT: ivle/conf/conf.py contains details
121
112
    # which could compromise security if left in the jail (such as the DB
122
113
    # password).
123
114
    # The "safe" version is in jailconf.py. Delete conf.py and replace it with
124
115
    # jailconf.py.
125
 
    action_copyfile('lib/conf/jailconf.py',
126
 
        'jail/opt/ivle/lib/conf/conf.py', dry)
 
116
    util.action_copyfile('ivle/conf/jailconf.py',
 
117
        os.path.join(jail_site_packages, 'ivle/conf/conf.py'), dry)
127
118
 
128
119
    # Compile .py files into .pyc or .pyo files
129
120
    compileall.compile_dir('www', quiet=True)
130
 
    compileall.compile_dir('lib', quiet=True)
131
 
    compileall.compile_dir('scripts', quiet=True)
132
 
    compileall.compile_dir('jail/opt/ivle/lib', quiet=True)
133
 
 
134
 
    # Set up ivle.pth inside the jail
135
 
    # Need to set /opt/ivle/lib to be on the import path
136
 
    ivle_pth = \
137
 
        "jail/usr/lib/python%s/site-packages/ivle.pth" % PYTHON_VERSION
138
 
    f = open(ivle_pth, 'w')
139
 
    f.write('/opt/ivle/lib\n')
140
 
    f.close()
 
121
    compileall.compile_dir('ivle', quiet=True)
 
122
    compileall.compile_dir('services', quiet=True)
 
123
    compileall.compile_dir(os.path.join(jail_site_packages, 'ivle'),quiet=True)
141
124
 
142
125
    return 0
143
126