mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-12-18 07:41:47 +01:00
50 lines
1.6 KiB
Python
Executable File
50 lines
1.6 KiB
Python
Executable File
#!/usr/bin/env python
|
|
#FIXME Add license
|
|
|
|
from zipfile import ZipFile, ZipInfo
|
|
import os
|
|
|
|
def generateOar(output, files=[]):
|
|
# Note this is not a compressed zip
|
|
with ZipFile(output, 'w') as zip:
|
|
for file, mvnCoords in files:
|
|
mvnCoords = mvnCoords.replace("mvn:", "")
|
|
filename = file.split('/')[-1]
|
|
if mvnCoords == 'NONE':
|
|
if 'app-xml.xml' in filename:
|
|
dest = 'app.xml'
|
|
else:
|
|
dest = filename
|
|
else:
|
|
parts = mvnCoords.split(':')
|
|
if len(parts) > 3:
|
|
parts.insert(2, parts.pop()) # move version to the 3rd position
|
|
groupId, artifactId, version = parts[0:3]
|
|
groupId = groupId.replace('.', '/')
|
|
extension = filename.split('.')[-1]
|
|
if extension == 'jar':
|
|
filename = '%s-%s.jar' % ( artifactId, version )
|
|
elif 'feature-xml' in filename:
|
|
filename = '%s-%s-features.xml' % ( artifactId, version )
|
|
dest = 'm2/%s/%s/%s/%s' % ( groupId, artifactId, version, filename )
|
|
f = open(file, 'rb')
|
|
zip.writestr(ZipInfo(dest, date_time=(1980, 1, 1, 0, 0, 0)), f.read())
|
|
f.close()
|
|
|
|
if __name__ == '__main__':
|
|
import sys
|
|
|
|
if len(sys.argv) < 2:
|
|
print 'USAGE'
|
|
sys.exit(1)
|
|
|
|
output = sys.argv[1]
|
|
args = sys.argv[2:]
|
|
|
|
if len(args) % 2 != 0:
|
|
print 'There must be an even number of args: file mvn_coords'
|
|
sys.exit(2)
|
|
|
|
files = zip(*[iter(args)]*2)
|
|
generateOar(output, files)
|