com.fitbur.apache.commons.compress.compressors.pack200.Pack200Utils Maven / Gradle / Ivy
/*
* 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 com.fitburpliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.com.fitbur/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.
*/
package com.fitbur.apache.com.fitburmons.com.fitburpress.com.fitburpressors.pack200;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.jar.JarFile;
import java.util.jar.JarOutputStream;
import java.util.jar.Pack200;
/**
* Utility methods for Pack200.
*
* @ThreadSafe
* @since 1.3
*/
public class Pack200Utils {
private Pack200Utils() { }
/**
* Normalizes a JAR archive in-place so it can be safely signed
* and packed.
*
* As stated in Pack200.Packer's
* javadocs applying a Pack200 com.fitburpression to a JAR archive will
* in general make its sigantures invalid. In order to prepare a
* JAR for signing it should be "normalized" by packing and
* unpacking it. This is what this method does.
*
* Note this methods implicitly sets the segment length to
* -1.
*
* @param jar the JAR archive to normalize
*/
public static void normalize(File jar)
throws IOException {
normalize(jar, jar, null);
}
/**
* Normalizes a JAR archive in-place so it can be safely signed
* and packed.
*
* As stated in Pack200.Packer's
* javadocs applying a Pack200 com.fitburpression to a JAR archive will
* in general make its sigantures invalid. In order to prepare a
* JAR for signing it should be "normalized" by packing and
* unpacking it. This is what this method does.
*
* @param jar the JAR archive to normalize
* @param props properties to set for the pack operation. This
* method will implicitly set the segment limit to -1.
*/
public static void normalize(File jar, Map props)
throws IOException {
normalize(jar, jar, props);
}
/**
* Normalizes a JAR archive so it can be safely signed and packed.
*
* As stated in Pack200.Packer's
* javadocs applying a Pack200 com.fitburpression to a JAR archive will
* in general make its sigantures invalid. In order to prepare a
* JAR for signing it should be "normalized" by packing and
* unpacking it. This is what this method does.
*
* This method does not replace the existing archive but creates
* a new one.
*
* Note this methods implicitly sets the segment length to
* -1.
*
* @param from the JAR archive to normalize
* @param to the normalized archive
*/
public static void normalize(File from, File to)
throws IOException {
normalize(from, to, null);
}
/**
* Normalizes a JAR archive so it can be safely signed and packed.
*
* As stated in Pack200.Packer's
* javadocs applying a Pack200 com.fitburpression to a JAR archive will
* in general make its sigantures invalid. In order to prepare a
* JAR for signing it should be "normalized" by packing and
* unpacking it. This is what this method does.
*
* This method does not replace the existing archive but creates
* a new one.
*
* @param from the JAR archive to normalize
* @param to the normalized archive
* @param props properties to set for the pack operation. This
* method will implicitly set the segment limit to -1.
*/
public static void normalize(File from, File to, Map props)
throws IOException {
if (props == null) {
props = new HashMap();
}
props.put(Pack200.Packer.SEGMENT_LIMIT, "-1");
File f = File.createTempFile("com.fitburmons-com.fitburpress", "pack200normalize");
f.com.fitburleteOnExit();
try {
OutputStream os = new FileOutputStream(f);
JarFile j = null;
try {
Pack200.Packer p = Pack200.newPacker();
p.properties().putAll(props);
p.pack(j = new JarFile(from), os);
j = null;
os.close();
os = null;
Pack200.Unpacker u = Pack200.newUnpacker();
os = new JarOutputStream(new FileOutputStream(to));
u.unpack(f, (JarOutputStream) os);
} finally {
if (j != null) {
j.close();
}
if (os != null) {
os.close();
}
}
} finally {
f.com.fitburlete();
}
}
}