| #!/usr/bin/env python |
| # |
| # Checkout files from the SWIG library into Subversion's proxy directory |
| # |
| |
| import sys, os, re, fileinput, shutil |
| if __name__ == "__main__": |
| parent_dir = os.path.dirname(os.path.abspath(os.path.dirname(sys.argv[0]))) |
| sys.path[0:0] = [ parent_dir, os.path.dirname(parent_dir) ] |
| import generator.swig |
| from gen_base import build_path_splitfile, build_path_join |
| from generator.util.executable import run |
| |
| class Generator(generator.swig.Generator): |
| |
| def write(self): |
| """Checkout all files""" |
| for path in self.swig_checkout_files: |
| self.checkout(path) |
| |
| def write_makefile_rules(self, makefile): |
| """Write makefile rules to checkout files""" |
| script_path = 'build/generator/swig/checkout_swig_header.py' |
| conf = '$(abs_srcdir)/build.conf' |
| makefile.write('CHECKOUT_SWIG = cd $(top_srcdir) && $(PYTHON)' + |
| ' %s %s $(SWIG)\n\n' % (script_path, conf)) |
| checkout_locations = [] |
| for path in self.swig_checkout_files: |
| out = self._output_file(path) |
| checkout_locations.append(out) |
| makefile.write('%s: %s\n' % (out, script_path) + |
| '\t$(CHECKOUT_SWIG) %s\n\n' % path) |
| makefile.write('SWIG_CHECKOUT_FILES = %s\n\n\n' |
| % " ".join(checkout_locations)) |
| |
| def checkout(self, path): |
| """Checkout a specific header file from SWIG""" |
| out = self._output_file(path) |
| if os.path.exists(out): |
| os.remove(out) |
| if self._skip_checkout(path): |
| open(out, "w") |
| elif self.version() == 103024: |
| shutil.copy(build_path_join(self.swig_libdir, path), out) |
| else: |
| run("%s -o %s -co %s" % (self.swig_path, out, path)) |
| |
| # Fix generated SWIG files to never use "long long", which is not portable |
| if path == "python/python.swg": |
| python_swg = open(out).read() |
| file = open(out, "w") |
| file.write(""" |
| %fragment("SWIG_AsVal_" {long long},"header") { |
| } |
| %fragment("SWIG_Check_" {long long},"header") { |
| } |
| %fragment("SWIG_From_" {long long},"header") { |
| }\n""") |
| file.write(python_swg) |
| file.close() |
| |
| def _skip_checkout(self, path): |
| """Should we skip this checkout?""" |
| return (path == "ruby/rubytracking.swg" and self.version() < 103026 or |
| path == "common.swg" and self.version() > 103024) |
| |
| def _output_file(self, path): |
| """Get output filename""" |
| dir, filename = build_path_splitfile(path) |
| return build_path_join(self.proxy_dir, filename) |
| |
| if __name__ == "__main__": |
| if len(sys.argv) != 4: |
| print "Usage: %s build.conf swig file.swg" |
| print "Checkout a specific header file from SWIG's library into" |
| print "the Subversion proxy directory." |
| else: |
| gen = Generator(sys.argv[1], sys.argv[2]) |
| gen.checkout(sys.argv[3]) |