Andrew M. Kuchling | 3f819ec | 2001-01-15 16:09:35 +0000 | [diff] [blame^] | 1 | """distutils.mwerkscompiler |
| 2 | |
| 3 | Contains MWerksCompiler, an implementation of the abstract CCompiler class |
| 4 | for MetroWerks CodeWarrior on the Macintosh. Needs work to support CW on |
| 5 | Windows.""" |
| 6 | |
| 7 | import sys, os, string |
| 8 | from types import * |
| 9 | from distutils.errors import \ |
| 10 | DistutilsExecError, DistutilsPlatformError, \ |
| 11 | CompileError, LibError, LinkError |
| 12 | from distutils.ccompiler import \ |
| 13 | CCompiler, gen_preprocess_options, gen_lib_options |
| 14 | import distutils.util |
| 15 | import distutils.dir_util |
| 16 | import mkcwproject |
| 17 | |
| 18 | class MWerksCompiler (CCompiler) : |
| 19 | """Concrete class that implements an interface to Microsoft Visual C++, |
| 20 | as defined by the CCompiler abstract class.""" |
| 21 | |
| 22 | compiler_type = 'mwerks' |
| 23 | |
| 24 | # Just set this so CCompiler's constructor doesn't barf. We currently |
| 25 | # don't use the 'set_executables()' bureaucracy provided by CCompiler, |
| 26 | # as it really isn't necessary for this sort of single-compiler class. |
| 27 | # Would be nice to have a consistent interface with UnixCCompiler, |
| 28 | # though, so it's worth thinking about. |
| 29 | executables = {} |
| 30 | |
| 31 | # Private class data (need to distinguish C from C++ source for compiler) |
| 32 | _c_extensions = ['.c'] |
| 33 | _cpp_extensions = ['.cc', '.cpp', '.cxx'] |
| 34 | _rc_extensions = ['.r'] |
| 35 | _exp_extension = '.exp' |
| 36 | |
| 37 | # Needed for the filename generation methods provided by the |
| 38 | # base class, CCompiler. |
| 39 | src_extensions = (_c_extensions + _cpp_extensions + |
| 40 | _rc_extensions) |
| 41 | res_extension = '.rsrc' |
| 42 | obj_extension = '.obj' # Not used, really |
| 43 | static_lib_extension = '.lib' |
| 44 | shared_lib_extension = '.slb' |
| 45 | static_lib_format = shared_lib_format = '%s%s' |
| 46 | exe_extension = '' |
| 47 | |
| 48 | |
| 49 | def __init__ (self, |
| 50 | verbose=0, |
| 51 | dry_run=0, |
| 52 | force=0): |
| 53 | |
| 54 | CCompiler.__init__ (self, verbose, dry_run, force) |
| 55 | |
| 56 | |
| 57 | def compile (self, |
| 58 | sources, |
| 59 | output_dir=None, |
| 60 | macros=None, |
| 61 | include_dirs=None, |
| 62 | debug=0, |
| 63 | extra_preargs=None, |
| 64 | extra_postargs=None): |
| 65 | self.__sources = sources |
| 66 | self.__macros = macros |
| 67 | self.__include_dirs = include_dirs |
| 68 | # Don't need extra_preargs and extra_postargs for CW |
| 69 | |
| 70 | def link (self, |
| 71 | target_desc, |
| 72 | objects, |
| 73 | output_filename, |
| 74 | output_dir=None, |
| 75 | libraries=None, |
| 76 | library_dirs=None, |
| 77 | runtime_library_dirs=None, |
| 78 | export_symbols=None, |
| 79 | debug=0, |
| 80 | extra_preargs=None, |
| 81 | extra_postargs=None, |
| 82 | build_temp=None): |
| 83 | # First examine a couple of options for things that aren't implemented yet |
| 84 | if not target_desc in (self.SHARED_LIBRARY, self.SHARED_OBJECT): |
| 85 | raise DistutilsPlatformError, 'Can only make SHARED_LIBRARY or SHARED_OBJECT targets on the Mac' |
| 86 | if runtime_library_dirs: |
| 87 | raise DistutilsPlatformError, 'Runtime library dirs not implemented yet' |
| 88 | if extra_preargs or extra_postargs: |
| 89 | raise DistutilsPlatformError, 'Runtime library dirs not implemented yet' |
| 90 | if len(export_symbols) != 1: |
| 91 | raise DistutilsPlatformError, 'Need exactly one export symbol' |
| 92 | # Next there are various things for which we need absolute pathnames. |
| 93 | # This is because we (usually) create the project in a subdirectory of |
| 94 | # where we are now, and keeping the paths relative is too much work right |
| 95 | # now. |
| 96 | sources = map(self._filename_to_abs, self.__sources) |
| 97 | include_dirs = map(self._filename_to_abs, self.__include_dirs) |
| 98 | if objects: |
| 99 | objects = map(self._filename_to_abs, objects) |
| 100 | else: |
| 101 | objects = [] |
| 102 | if build_temp: |
| 103 | build_temp = self._filename_to_abs(build_temp) |
| 104 | else: |
| 105 | build_temp = os.curdir() |
| 106 | if output_dir: |
| 107 | output_filename = os.path.join(output_dir, output_filename) |
| 108 | # The output filename needs special handling: splitting it into dir and |
| 109 | # filename part. Actually I'm not sure this is really needed, but it |
| 110 | # can't hurt. |
| 111 | output_filename = self._filename_to_abs(output_filename) |
| 112 | output_dir, output_filename = os.path.split(output_filename) |
| 113 | # Now we need the short names of a couple of things for putting them |
| 114 | # into the project. |
| 115 | if output_filename[-8:] == '.ppc.slb': |
| 116 | basename = output_filename[:-8] |
| 117 | else: |
| 118 | basename = os.path.strip(output_filename)[0] |
| 119 | projectname = basename + '.mcp' |
| 120 | targetname = basename |
| 121 | xmlname = basename + '.xml' |
| 122 | exportname = basename + '.mcp.exp' |
| 123 | prefixname = 'mwerks_%s_config.h'%basename |
| 124 | # Create the directories we need |
| 125 | distutils.dir_util.mkpath(build_temp, self.verbose, self.dry_run) |
| 126 | distutils.dir_util.mkpath(output_dir, self.verbose, self.dry_run) |
| 127 | # And on to filling in the parameters for the project builder |
| 128 | settings = {} |
| 129 | settings['mac_exportname'] = exportname |
| 130 | settings['mac_outputdir'] = output_dir |
| 131 | settings['mac_dllname'] = output_filename |
| 132 | settings['mac_targetname'] = targetname |
| 133 | settings['sysprefix'] = sys.prefix |
| 134 | settings['mac_sysprefixtype'] = 'Absolute' |
| 135 | sourcefilenames = [] |
| 136 | sourcefiledirs = [] |
| 137 | for filename in sources + objects: |
| 138 | dirname, filename = os.path.split(filename) |
| 139 | sourcefilenames.append(filename) |
| 140 | if not dirname in sourcefiledirs: |
| 141 | sourcefiledirs.append(dirname) |
| 142 | settings['sources'] = sourcefilenames |
| 143 | settings['extrasearchdirs'] = sourcefiledirs + include_dirs + library_dirs |
| 144 | if self.dry_run: |
| 145 | print 'CALLING LINKER IN', os.getcwd() |
| 146 | for key, value in settings.items(): |
| 147 | print '%20.20s %s'%(key, value) |
| 148 | return |
| 149 | # Build the export file |
| 150 | exportfilename = os.path.join(build_temp, exportname) |
| 151 | if self.verbose: |
| 152 | print '\tCreate export file', exportfilename |
| 153 | fp = open(exportfilename, 'w') |
| 154 | fp.write('%s\n'%export_symbols[0]) |
| 155 | fp.close() |
| 156 | # Generate the prefix file, if needed, and put it in the settings |
| 157 | if self.__macros: |
| 158 | prefixfilename = os.path.join(os.getcwd(), os.path.join(build_temp, prefixname)) |
| 159 | fp = open(prefixfilename, 'w') |
| 160 | fp.write('#include "mwerks_plugin_config.h"\n') |
| 161 | for name, value in self.__macros: |
| 162 | if value is None: |
| 163 | fp.write('#define %s\n'%name) |
| 164 | else: |
| 165 | fp.write('#define %s "%s"\n'%(name, value)) |
| 166 | fp.close() |
| 167 | settings['prefixname'] = prefixname |
| 168 | |
| 169 | # Build the XML file. We need the full pathname (only lateron, really) |
| 170 | # because we pass this pathname to CodeWarrior in an AppleEvent, and CW |
| 171 | # doesn't have a clue about our working directory. |
| 172 | xmlfilename = os.path.join(os.getcwd(), os.path.join(build_temp, xmlname)) |
| 173 | if self.verbose: |
| 174 | print '\tCreate XML file', xmlfilename |
| 175 | xmlbuilder = mkcwproject.cwxmlgen.ProjectBuilder(settings) |
| 176 | xmlbuilder.generate() |
| 177 | xmldata = settings['tmp_projectxmldata'] |
| 178 | fp = open(xmlfilename, 'w') |
| 179 | fp.write(xmldata) |
| 180 | fp.close() |
| 181 | # Generate the project. Again a full pathname. |
| 182 | projectfilename = os.path.join(os.getcwd(), os.path.join(build_temp, projectname)) |
| 183 | if self.verbose: |
| 184 | print '\tCreate project file', projectfilename |
| 185 | mkcwproject.makeproject(xmlfilename, projectfilename) |
| 186 | # And build it |
| 187 | if self.verbose: |
| 188 | print '\tBuild project' |
| 189 | mkcwproject.buildproject(projectfilename) |
| 190 | |
| 191 | def _filename_to_abs(self, filename): |
| 192 | # Some filenames seem to be unix-like. Convert to Mac names. |
| 193 | ## if '/' in filename and ':' in filename: |
| 194 | ## raise DistutilsPlatformError, 'Filename may be Unix or Mac style: %s'%filename |
| 195 | ## if '/' in filename: |
| 196 | ## filename = macurl2path(filename) |
| 197 | filename = distutils.util.convert_path(filename) |
| 198 | if not os.path.isabs(filename): |
| 199 | curdir = os.getcwd() |
| 200 | filename = os.path.join(curdir, filename) |
| 201 | return filename |
| 202 | |
| 203 | |