File: support.py

package info (click to toggle)
jython 2.7.3%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 62,820 kB
  • sloc: python: 641,384; java: 306,981; xml: 2,066; sh: 514; ansic: 126; makefile: 77
file content (249 lines) | stat: -rw-r--r-- 8,141 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
import sys
is_jython = sys.platform[:4] == "java"

import re, exceptions, thread, os, shutil
import support_config as cfg

if is_jython:
    import jarray
    from java.io import FileInputStream
    from java.io import FileOutputStream
    from java.util.jar import JarEntry
    from java.util.jar import JarFile
    from java.util.jar import JarInputStream
    from java.util.jar import JarOutputStream
    from java.util.jar import Manifest

UNIX = os.pathsep == ":"
WIN  = os.pathsep == ";"
test_jythonc = 1

class TestError(exceptions.Exception):
  def __init__(self, args):
    exceptions.Exception.__init__(self, args)

if not UNIX ^ WIN:
  raise TestError("Unknown platform")

class TestWarning(exceptions.Exception):
  def __init__(self, args):
    exceptions.Exception.__init__(self, args)

class TestSkip(exceptions.Exception):
  def __init__(self, args):
    exceptions.Exception.__init__(self, args)

def compare(s, pattern):
  m = re.search(pattern, str(s))
  if m is None:
    raise TestError("string compare error\n   '" + str(s) + "'\n   '" + pattern + "'")

def StreamReader(instream, outstream):
  while 1:
    ch = instream.read()
    if ch == -1: break
    outstream.write(ch)

def execCmd(cmd, kw):
  __doc__ = """execute a command, and wait for its results
returns 0 if everything was ok
raises a TestError if the command did not end normally"""
  if kw.has_key("verbose") and kw["verbose"]:
    print cmd
  import java
  r = java.lang.Runtime.getRuntime()
  e = getattr(r, "exec")
  p = e(cmd)

  if kw.has_key("output"):
    outstream = java.io.FileOutputStream(kw['output'])
  else:
    outstream = java.lang.System.out
  if kw.has_key("error"):
    errstream = java.io.FileOutputStream(kw['error'])
  else:
    errstream = java.lang.System.out

  thread.start_new_thread(StreamReader, (p.inputStream, outstream))
  thread.start_new_thread(StreamReader, (p.errorStream, errstream))

  ret = p.waitFor()
  if ret != 0 and not kw.has_key("expectError"):
    raise TestError, "%s failed with %d" % (cmd, ret)

  return ret

def compileJava(src, **kw):
  classfile = src.replace('.java', '.class')
  if not 'force' in kw and os.path.exists(classfile) and os.stat(src).st_mtime < os.stat(classfile).st_mtime:
    return 0
  classpath = cfg.classpath
  if "classpath" in kw:
    classpath = os.pathsep.join([cfg.classpath, kw["classpath"]])
  if UNIX:
    cmd = "%s/bin/javac -classpath %s %s" % (cfg.java_home, classpath, src)
  elif WIN:
    src = src.replace("/", "\\")
    cmd = 'cmd /C "%s/bin/javac.exe" -classpath %s %s' % (cfg.java_home, classpath, src)
  return execCmd(cmd, kw)

def runJava(cls, **kw):
  classpath = cfg.classpath
  if "classpath" in kw:
    classpath = os.pathsep.join([cfg.classpath, kw["classpath"]])
  if kw.get('pass_jython_home', 0):
    defs = "-Dpython.home=%s" % cfg.jython_home
  else:
    defs = ''
  if UNIX:
    cmd = ['/bin/sh', '-c', "%s/bin/java -classpath %s %s %s" % (cfg.java_home, classpath, defs, cls)]
  elif WIN:
    cmd = 'cmd /C "%s/bin/java.exe" -classpath %s %s %s' % (cfg.java_home, classpath, defs, cls)
  return execCmd(cmd, kw)

def runJavaJar(jar, *args, **kw):
  argString = " ".join(args)
  if UNIX:
    cmd = ['/bin/sh', '-c', "%s/bin/java -jar %s %s" % (cfg.java_home, jar, argString)]
  elif WIN:
    cmd = 'cmd /C "%s/bin/java.exe" -jar %s %s' % (cfg.java_home, jar, argString)
  return execCmd(cmd, kw)

def runJython(cls, **kw):
  javaargs = ''
  if 'javaargs' in kw:
      javaargs = kw['javaargs']
  classpath = cfg.classpath
  if "classpath" in kw:
    classpath = os.pathsep.join([cfg.classpath, kw["classpath"]])
  if UNIX:
    cmd = "%s/bin/java -classpath %s %s -Dpython.home=%s org.python.util.jython %s" % (cfg.java_home, classpath, javaargs, cfg.jython_home, cls)
  elif WIN:
    cmd = 'cmd /C "%s/bin/java.exe" -classpath %s %s -Dpython.home=%s org.python.util.jython %s' % (cfg.java_home, classpath, javaargs, cfg.jython_home, cls)
  return execCmd(cmd, kw)

def compileJPythonc(*files, **kw):
  if not test_jythonc:
     raise TestSkip('Skipping pythonc')
  if os.path.isdir("jpywork") and not kw.has_key("keep"):
     shutil.rmtree("jpywork", 1) 

  cmd = "-i "
  if kw.has_key("core"):
    cmd = cmd + "--core "
  if kw.has_key("deep"):
    cmd = cmd + "--deep "
  if kw.has_key("all"):
    cmd = cmd + "--all "
  if kw.has_key("package"):
    cmd = cmd + "--package %s " % kw['package']
  if kw.has_key("addpackages"):
    cmd = cmd + "--addpackages %s " % kw['addpackages']
  if kw.has_key("jar"):
    cmd = cmd + "--jar %s " % kw['jar']
    if os.path.isfile(kw['jar']):
      os.remove(kw['jar'])
  cmd = cmd + " ".join(files)

  classpath = cfg.classpath
  if "classpath" in kw:
    classpath = os.pathsep.join([cfg.classpath, kw["classpath"]])

  jythonc = "%s/Tools/jythonc/jythonc.py %s" % (cfg.jython_home, cmd)
  if UNIX:
    cmd = "%s/bin/java -classpath %s -Dpython.home=%s org.python.util.jython %s" % (cfg.java_home, classpath, cfg.jython_home, jythonc)
  elif WIN:
    cmd = 'cmd /C "%s/bin/java.exe" -classpath "%s" -Dpython.home=%s org.python.util.jython %s' % (cfg.java_home, classpath, cfg.jython_home, jythonc)
  return execCmd(cmd, kw)

def grep(file, text, count=0):
  f = open(file, "r")
  lines = f.readlines()
  f.close()

  result = []
  for line in lines:
    if re.search(text, line):
       result.append(line)

  if count:
    return len(result)
  return result

class JarPacker:
  __doc__ = """helper class to pack stuff into a jar file -
  the terms 'file' and 'dir' mean java.io.File here """

  def __init__(self, jarFile, bufsize=1024):
    self._jarFile = jarFile
    self._bufsize = bufsize
    self._manifest = None
    self._jarOutputStream = None

  def close(self):
    self.getJarOutputStream().close()

  def addManifestFile(self, manifestFile):
    __doc__ = """only one manifest file can be added"""
    self.addManifest(Manifest(FileInputStream(manifestFile)))

  def addManifest(self, manifest):
    if not self._manifest:
      self._manifest = manifest

  def addFile(self, file, parentDirName=None):
    buffer = jarray.zeros(self._bufsize, 'b')
    inputStream = FileInputStream(file)
    jarEntryName = file.getName()
    if parentDirName:
      jarEntryName = parentDirName + "/" + jarEntryName
    self.getJarOutputStream().putNextEntry(JarEntry(jarEntryName))
    read = inputStream.read(buffer)
    while read <> -1:
        self.getJarOutputStream().write(buffer, 0, read)
        read = inputStream.read(buffer)
    self.getJarOutputStream().closeEntry()
    inputStream.close()

  def addDirectory(self, dir, parentDirName=None):
    if not dir.isDirectory():
      return
    filesInDir = dir.listFiles()
    for currentFile in filesInDir:
      if currentFile.isFile():
        if parentDirName:
          self.addFile(currentFile, parentDirName + "/" + dir.getName())
        else:
          self.addFile(currentFile, dir.getName())
      else:
        if parentDirName:
          newParentDirName = parentDirName + "/" + dir.getName()
        else:
          newParentDirName = dir.getName()
        self.addDirectory(currentFile, newParentDirName)

  def addJarFile(self, jarFile):
    __doc__ = """if you want to add a .jar file with a MANIFEST, add it first"""
    jarJarFile = JarFile(jarFile)
    self.addManifest(jarJarFile.getManifest())
    jarJarFile.close()

    jarInputStream = JarInputStream(FileInputStream(jarFile))
    jarEntry = jarInputStream.getNextJarEntry()
    while jarEntry:
      self.getJarOutputStream().putNextEntry(jarEntry)
      buffer = jarray.zeros(self._bufsize, 'b')
      read = jarInputStream.read(buffer)
      while read <> -1:
        self.getJarOutputStream().write(buffer, 0, read)
        read = jarInputStream.read(buffer)
      self.getJarOutputStream().closeEntry()
      jarEntry = jarInputStream.getNextJarEntry()

  def getJarOutputStream(self):
    if not self._jarOutputStream:
      if self._manifest:
        self._jarOutputStream = JarOutputStream(FileOutputStream(self._jarFile), self._manifest)
      else:
        self._jarOutputStream = JarOutputStream(FileOutputStream(self._jarFile))
    return self._jarOutputStream