runant.py 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #!/usr/bin/python
  2. # Licensed to the Apache Software Foundation (ASF) under one or more
  3. # contributor license agreements. See the NOTICE file distributed with
  4. # this work for additional information regarding copyright ownership.
  5. # The ASF licenses this file to You under the Apache License, Version 2.0
  6. # (the "License"); you may not use this file except in compliance with
  7. # the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. """
  18. runant.py
  19. This script is a translation of the runant.pl written by Steve Loughran.
  20. It runs ant with/out arguments, it should be quite portable (thanks to
  21. the python os library)
  22. This script has been tested with Python2.0/Win2K
  23. created: 2001-04-11
  24. author: Pierre Dittgen [email protected]
  25. Assumptions:
  26. - the "java" executable/script is on the command path
  27. """
  28. import os, os.path, string, sys
  29. # Change it to 1 to get extra debug information
  30. debug = 0
  31. #######################################################################
  32. # If ANT_HOME is not set default to script's parent directory
  33. if os.environ.has_key('ANT_HOME'):
  34. ANT_HOME = os.environ['ANT_HOME']
  35. else:
  36. ANT_HOME = os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0])))
  37. # set ANT_LIB location
  38. ANT_LIB = os.path.join(ANT_HOME, 'lib')
  39. # set JAVACMD (check variables JAVACMD and JAVA_HOME)
  40. JAVACMD = None
  41. if not os.environ.has_key('JAVACMD'):
  42. if os.environ.has_key('JAVA_HOME'):
  43. if not os.path.exists(os.environ['JAVA_HOME']):
  44. print "Warning: JAVA_HOME is not defined correctly."
  45. else:
  46. JAVACMD = os.path.join(os.environ['JAVA_HOME'], 'bin', 'java')
  47. else:
  48. print "Warning: JAVA_HOME not set."
  49. else:
  50. JAVACMD = os.environ['JAVACMD']
  51. if not JAVACMD:
  52. JAVACMD = 'java'
  53. launcher_jar = os.path.join(ANT_LIB, 'ant-launcher.jar')
  54. if not os.path.exists(launcher_jar):
  55. print 'Warning: Unable to locate ant-launcher.jar. Expected to find it in %s' % \
  56. ANT_LIB
  57. # Build up standard classpath (LOCALCLASSPATH)
  58. LOCALCLASSPATH = launcher_jar
  59. if os.environ.has_key('LOCALCLASSPATH'):
  60. LOCALCLASSPATH += os.pathsep + os.environ['LOCALCLASSPATH']
  61. ANT_OPTS = ""
  62. if os.environ.has_key('ANT_OPTS'):
  63. ANT_OPTS = os.environ['ANT_OPTS']
  64. OPTS = ""
  65. if os.environ.has_key('JIKESPATH'):
  66. OPTS = '-Djikes.class.path=\"%s\"' % os.environ['JIKESPATH']
  67. ANT_ARGS = ""
  68. if os.environ.has_key('ANT_ARGS'):
  69. ANT_ARGS = os.environ['ANT_ARGS']
  70. CLASSPATH = ""
  71. if os.environ.has_key('CLASSPATH'):
  72. CLASSPATH = "-lib " + os.environ['CLASSPATH']
  73. # Builds the commandline
  74. cmdline = ('%s %s -classpath %s -Dant.home=%s %s ' + \
  75. 'org.apache.tools.ant.launch.Launcher %s %s %s') \
  76. % (JAVACMD, ANT_OPTS, LOCALCLASSPATH, ANT_HOME, OPTS, ANT_ARGS, \
  77. CLASSPATH, string.join(sys.argv[1:], ' '))
  78. if debug:
  79. print '\n%s\n\n' % (cmdline)
  80. sys.stdout.flush()
  81. # Run the biniou!
  82. os.system(cmdline)