OLD | NEW |
(Empty) | |
| 1 """SCons.Tool.rmic |
| 2 |
| 3 Tool-specific initialization for rmic. |
| 4 |
| 5 There normally shouldn't be any need to import this module directly. |
| 6 It will usually be imported through the generic SCons.Tool.Tool() |
| 7 selection method. |
| 8 |
| 9 """ |
| 10 |
| 11 # |
| 12 # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The S
Cons Foundation |
| 13 # |
| 14 # Permission is hereby granted, free of charge, to any person obtaining |
| 15 # a copy of this software and associated documentation files (the |
| 16 # "Software"), to deal in the Software without restriction, including |
| 17 # without limitation the rights to use, copy, modify, merge, publish, |
| 18 # distribute, sublicense, and/or sell copies of the Software, and to |
| 19 # permit persons to whom the Software is furnished to do so, subject to |
| 20 # the following conditions: |
| 21 # |
| 22 # The above copyright notice and this permission notice shall be included |
| 23 # in all copies or substantial portions of the Software. |
| 24 # |
| 25 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY |
| 26 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE |
| 27 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 28 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 29 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 30 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 31 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 32 # |
| 33 |
| 34 __revision__ = "src/engine/SCons/Tool/rmic.py 5134 2010/08/16 23:02:40 bdeegan" |
| 35 |
| 36 import os.path |
| 37 |
| 38 import SCons.Action |
| 39 import SCons.Builder |
| 40 import SCons.Node.FS |
| 41 import SCons.Util |
| 42 |
| 43 def emit_rmic_classes(target, source, env): |
| 44 """Create and return lists of Java RMI stub and skeleton |
| 45 class files to be created from a set of class files. |
| 46 """ |
| 47 class_suffix = env.get('JAVACLASSSUFFIX', '.class') |
| 48 classdir = env.get('JAVACLASSDIR') |
| 49 |
| 50 if not classdir: |
| 51 try: |
| 52 s = source[0] |
| 53 except IndexError: |
| 54 classdir = '.' |
| 55 else: |
| 56 try: |
| 57 classdir = s.attributes.java_classdir |
| 58 except AttributeError: |
| 59 classdir = '.' |
| 60 classdir = env.Dir(classdir).rdir() |
| 61 if str(classdir) == '.': |
| 62 c_ = None |
| 63 else: |
| 64 c_ = str(classdir) + os.sep |
| 65 |
| 66 slist = [] |
| 67 for src in source: |
| 68 try: |
| 69 classname = src.attributes.java_classname |
| 70 except AttributeError: |
| 71 classname = str(src) |
| 72 if c_ and classname[:len(c_)] == c_: |
| 73 classname = classname[len(c_):] |
| 74 if class_suffix and classname[:-len(class_suffix)] == class_suffix: |
| 75 classname = classname[-len(class_suffix):] |
| 76 s = src.rfile() |
| 77 s.attributes.java_classdir = classdir |
| 78 s.attributes.java_classname = classname |
| 79 slist.append(s) |
| 80 |
| 81 stub_suffixes = ['_Stub'] |
| 82 if env.get('JAVAVERSION') == '1.4': |
| 83 stub_suffixes.append('_Skel') |
| 84 |
| 85 tlist = [] |
| 86 for s in source: |
| 87 for suff in stub_suffixes: |
| 88 fname = s.attributes.java_classname.replace('.', os.sep) + \ |
| 89 suff + class_suffix |
| 90 t = target[0].File(fname) |
| 91 t.attributes.java_lookupdir = target[0] |
| 92 tlist.append(t) |
| 93 |
| 94 return tlist, source |
| 95 |
| 96 RMICAction = SCons.Action.Action('$RMICCOM', '$RMICCOMSTR') |
| 97 |
| 98 RMICBuilder = SCons.Builder.Builder(action = RMICAction, |
| 99 emitter = emit_rmic_classes, |
| 100 src_suffix = '$JAVACLASSSUFFIX', |
| 101 target_factory = SCons.Node.FS.Dir, |
| 102 source_factory = SCons.Node.FS.File) |
| 103 |
| 104 def generate(env): |
| 105 """Add Builders and construction variables for rmic to an Environment.""" |
| 106 env['BUILDERS']['RMIC'] = RMICBuilder |
| 107 |
| 108 env['RMIC'] = 'rmic' |
| 109 env['RMICFLAGS'] = SCons.Util.CLVar('') |
| 110 env['RMICCOM'] = '$RMIC $RMICFLAGS -d ${TARGET.attributes.java_looku
pdir} -classpath ${SOURCE.attributes.java_classdir} ${SOURCES.attributes.java_cl
assname}' |
| 111 env['JAVACLASSSUFFIX'] = '.class' |
| 112 |
| 113 def exists(env): |
| 114 return env.Detect('rmic') |
| 115 |
| 116 # Local Variables: |
| 117 # tab-width:4 |
| 118 # indent-tabs-mode:nil |
| 119 # End: |
| 120 # vim: set expandtab tabstop=4 shiftwidth=4: |
OLD | NEW |