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
|
#!/usr/bin/python
"""
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
"""
from optparse import OptionParser
from zipfile import ZipFile
from subprocess import Popen,PIPE
from glob import glob
import os,re
def main() :
usage= "usage: %prog [optons]"
description = "Generate a jar file which contains the OpenJPA class files which have been changed. The output from svn info and svn diff may also be included. A typical \
use is to run from the same directory as the parent pom. This will automatically include all changed files with a .java extension."
version = "$prog 0.5"
parser = OptionParser(usage=usage, version=version, description = description)
parser.add_option("-f", "--files", dest="files", help="list of filenames to include")
parser.add_option("-p", "--patchfile", dest="patchfile", help="patch file name", default="patch.jar")
parser.add_option("-i", "--noinfo", action="store_false", dest="includeInfo", help="exclude output from svn info", default=True)
parser.add_option("-d", "--nodiff", action="store_false", dest="includeDiff", help="exclude output from svn diff",default=True)
parser.add_option("-v", "--verbose", action="store_true", dest="verbose", help="print debug information",default=False)
# parser.add_option("-p", "--pattern", dest="pattern", help="regex of filenames to match")
global options
(options,args) = parser.parse_args()
genZip(options)
def genZip(options):
""" generate the zip file """
if options.files == None:
files = getAllFiles()
else :
files = getFilesFromList(options.files)
zip = ZipFile(options.patchfile, 'w')
if options.includeInfo:
writeInfo(zip, files)
if options.includeDiff:
writeDiff(zip, files)
writeClasses(zip, files)
zip.close()
print 'Wrote patch to %s. ' % (options.patchfile)
if options.verbose:
print 'Files in patch: %s' % ("\n".join(files))
def getAllFiles():
""" get the list of all modified files. Only Added or Modified .java, .properties files will be considered """
if options.verbose:
print ' > getAllFiles'
files = []
commandOutput = Popen(['svn', 'stat'], stdout=PIPE).communicate()[0].splitlines()
prog = re.compile('([A|M] *)(.*\.java)')
for candidate in commandOutput:
match = prog.match(candidate)
if match :
files.append(match.group(2))
prog = re.compile('([A|M] *)(.*\.properties)')
for candidate in commandOutput:
match = prog.match(candidate)
if match :
files.append(match.group(2))
if options.verbose:
print 'Found modified files : ' + str(files)
print ' < getAllFiles'
return files
def getFilesFromList(files) :
""" get a list of modified files from a comma separated list usually from the command line """
if options.verbose :
print ' > getFilesFromList'
print ' returning ' + str(files.split(','))
print ' < getFilesFromList'
return files.split(',')
def writeInfo(zip, files=None):
""" write the output of svn info to a temp file and store in a zip """
if options.verbose :
print ' > writeInfo'
patchFile = open('info.txt', 'w')
args = ['svn', 'info']
if files:
args.extend(files)
Popen(args=args, stdout=patchFile).communicate()[0]
zip.write(patchFile.name)
patchFile.close()
os.remove(patchFile.name)
if options.verbose:
print ' < writeInfo'
def writeDiff(zip, files=None):
""" Write the output of svn diff to a temp file and store in a zip """
if options.verbose:
print ' > writeDiff'
patchFile = open('patch.txt', 'w')
args = ['svn', 'diff']
if files:
args.extend(files)
Popen(args=args, stdout=patchFile).communicate()[0]
zip.write(patchFile.name)
patchFile.close()
os.remove(patchFile.name)
if options.verbose:
print ' < writeDiff'
def javaToClass(file) :
""" simple helper function, converts a string from svn stat (or command line) to its corresponding
.class file
"""
rval = file.replace('src','target').replace('main','classes').replace('test','test-classes').replace('.java', '.class').replace('java','').replace('\\\\','\\')
return rval;
def javaToInnerClass(file):
""" helper function, converts .java file to a glob pattern that matches inner classes """
return javaToClass(file).replace('.class', '$*.class')
def writeClasses(zip, files=None):
""" Write class files to a zip """
prog = re.compile('(.*classes.)(.*)')
propertiesProg = re.compile('(.*resources.)(.*)')
for file in files :
if str(file).endswith('.java'):
for globMatch in glob(javaToClass(file)) :
if(prog.match(globMatch)):
target = prog.match(globMatch).group(2)
zip.write(os.path.realpath(globMatch), target)
# match again on inner classes, not sure if glob supports optional matches.
for globMatch in glob(javaToInnerClass(file)) :
if(prog.match(globMatch)):
target = prog.match(globMatch).group(2)
zip.write(os.path.realpath(globMatch), target)
elif str(file).endswith('.properties'):
for globMatch in glob(file) :
if(propertiesProg.match(globMatch)):
target = propertiesProg.match(globMatch).group(2)
zip.write(os.path.realpath(globMatch), target)
if __name__ == "__main__":
main()
|