SConscript revision 4202
15222Sksewell@umich.edu# -*- mode:python -*-
25222Sksewell@umich.edu
35222Sksewell@umich.edu# Copyright (c) 2004-2005 The Regents of The University of Michigan
45222Sksewell@umich.edu# All rights reserved.
55222Sksewell@umich.edu#
65222Sksewell@umich.edu# Redistribution and use in source and binary forms, with or without
75222Sksewell@umich.edu# modification, are permitted provided that the following conditions are
85222Sksewell@umich.edu# met: redistributions of source code must retain the above copyright
95222Sksewell@umich.edu# notice, this list of conditions and the following disclaimer;
105222Sksewell@umich.edu# redistributions in binary form must reproduce the above copyright
115222Sksewell@umich.edu# notice, this list of conditions and the following disclaimer in the
125222Sksewell@umich.edu# documentation and/or other materials provided with the distribution;
135222Sksewell@umich.edu# neither the name of the copyright holders nor the names of its
145222Sksewell@umich.edu# contributors may be used to endorse or promote products derived from
155222Sksewell@umich.edu# this software without specific prior written permission.
165222Sksewell@umich.edu#
175222Sksewell@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
185222Sksewell@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
195222Sksewell@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
205222Sksewell@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215222Sksewell@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
225222Sksewell@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
235222Sksewell@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245222Sksewell@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255222Sksewell@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
265222Sksewell@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275222Sksewell@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285222Sksewell@umich.edu#
295222Sksewell@umich.edu# Authors: Steve Reinhardt
305222Sksewell@umich.edu#          Nathan Binkert
315222Sksewell@umich.edu
325222Sksewell@umich.eduimport os
335222Sksewell@umich.eduimport zipfile
348739Sgblack@eecs.umich.edu
355222Sksewell@umich.edu# handy function for path joins
365222Sksewell@umich.edudef join(*args):
378335Snate@binkert.org    return os.path.normpath(os.path.join(*args))
385222Sksewell@umich.edu
395222Sksewell@umich.eduImport('*')
405222Sksewell@umich.edu
415222Sksewell@umich.edu# This SConscript is in charge of collecting .py files and generating
4211233Sandreas.sandberg@arm.com# a zip archive that is appended to the m5 binary.
43
44# List of files & directories to include in the zip file.  To include
45# a package, list only the root directory of the package, not any
46# internal .py files (else they will get the path stripped off when
47# they are imported into the zip file).
48pyzip_files = []
49
50# List of additional files on which the zip archive depends, but which
51# are not included in pyzip_files... i.e. individual .py files within
52# a package.
53pyzip_dep_files = []
54
55# Add the specified package to the zip archive.  Adds the directory to
56# pyzip_files and all included .py files to pyzip_dep_files.
57def addPkg(pkgdir):
58    pyzip_files.append(pkgdir)
59    origdir = os.getcwd()
60    srcdir = join(Dir('.').srcnode().abspath, pkgdir)
61    os.chdir(srcdir)
62    for path, dirs, files in os.walk('.'):
63        for i,dir in enumerate(dirs):
64            if dir == 'SCCS':
65                del dirs[i]
66                break
67
68        for f in files:
69            if f.endswith('.py'):
70                pyzip_dep_files.append(join(pkgdir, path, f))
71
72    os.chdir(origdir)
73
74# Generate Python file that contains a dict specifying the current
75# build_env flags.
76def MakeDefinesPyFile(target, source, env):
77    f = file(str(target[0]), 'w')
78    print >>f, "m5_build_env = ", source[0]
79    f.close()
80
81optionDict = dict([(opt, env[opt]) for opt in env.ExportOptions])
82env.Command('m5/defines.py', Value(optionDict), MakeDefinesPyFile)
83
84def MakeInfoPyFile(target, source, env):
85    f = file(str(target[0]), 'w')
86    for src in source:
87        data = ''.join(file(src.srcnode().abspath, 'r').xreadlines())
88        print >>f, "%s = %s" % (src, repr(data))
89    f.close()
90
91env.Command('m5/info.py',
92            [ '#/AUTHORS', '#/LICENSE', '#/README', '#/RELEASE_NOTES' ],
93            MakeInfoPyFile)
94
95# Now specify the packages & files for the zip archive.
96addPkg('m5')
97pyzip_files.append('m5/defines.py')
98pyzip_files.append('m5/info.py')
99pyzip_files.append(join(env['ROOT'], 'util/pbs/jobfile.py'))
100pyzip_files.append(join(env['ROOT'], 'src/base/traceflags.py'))
101
102swig_modules = []
103def swig_it(module):
104    env.Command(['swig/%s_wrap.cc' % module, 'm5/internal/%s.py' % module],
105                'swig/%s.i' % module,
106                '$SWIG $SWIGFLAGS -outdir ${TARGETS[1].dir} '
107                '-o ${TARGETS[0]} $SOURCES')
108    swig_modules.append(module)
109    Source('swig/%s_wrap.cc' % module)
110
111Source('swig/init.cc')
112Source('swig/pyevent.cc')
113Source('swig/pyobject.cc')
114
115swig_it('core')
116swig_it('debug')
117swig_it('event')
118swig_it('random')
119swig_it('sim_object')
120swig_it('stats')
121swig_it('trace')
122
123# Automatically generate m5/internals/__init__.py
124def MakeInternalsInit(target, source, env):
125    f = file(str(target[0]), 'w')
126    for m in swig_modules:
127        print >>f, 'import %s' % m
128    f.close()
129
130swig_py_files = [ 'm5/internal/%s.py' % m for m in swig_modules ]
131env.Command('m5/internal/__init__.py', swig_py_files, MakeInternalsInit)
132pyzip_dep_files.append('m5/internal/__init__.py')
133
134def MakeSwigInit(target, source, env):
135    f = file(str(target[0]), 'w')
136    print >>f, 'extern "C" {'
137    for m in swig_modules:
138        print >>f, '    void init_%s();' % m
139    print >>f, '}'
140    print >>f, 'void init_swig() {'
141    for m in swig_modules:
142        print >>f, '    init_%s();' % m
143    print >>f, '}'
144    f.close()
145
146swig_cc_files = [ 'swig/%s_wrap.cc' % m for m in swig_modules ]
147env.Command('swig/init.cc', swig_cc_files, MakeSwigInit)
148
149# Action function to build the zip archive.  Uses the PyZipFile module
150# included in the standard Python library.
151def buildPyZip(target, source, env):
152    pzf = zipfile.PyZipFile(str(target[0]), 'w')
153    for s in source:
154        pzf.writepy(str(s))
155
156# Add the zip file target to the environment.
157env.Command('m5py.zip', pyzip_files, buildPyZip)
158env.Depends('m5py.zip', pyzip_dep_files)
159