rmic.py.svn-base
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:4k
源码类别:

外挂编程

开发平台:

Windows_Unix

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