All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ant.compress.resources.CommonsCompressCompressorResource Maven / Gradle / Ivy

Go to download

Provides tasks and types that deal with AR, CPIO, TAR, DUMP and ZIP archives as well as BZIP2, PACK200, GZIP and XZ compressed files based on Apache Commons Compress.

There is a newer version: 1.5
Show newest version
/*
 *  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.
 *
 */
package org.apache.ant.compress.resources;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import org.apache.ant.compress.util.CompressorStreamFactory;
import org.apache.tools.ant.types.ResourceCollection;
import org.apache.tools.ant.types.resources.ContentTransformingResource;

/**
 * A compressed resource.
 *
 * 

Wraps around another resource, delegates all queries to that * other resource but uncompresses/compresses streams on the fly.

*/ public abstract class CommonsCompressCompressorResource extends ContentTransformingResource { private final String name; private final CompressorStreamFactory factory; /** A no-arg constructor */ protected CommonsCompressCompressorResource(String name, CompressorStreamFactory factory) { this.name = name; this.factory = factory; } /** * Constructor with another resource to wrap. * @param other the resource to wrap. */ protected CommonsCompressCompressorResource(String name, CompressorStreamFactory factory, ResourceCollection other) { super(other); this.name = name; this.factory = factory; } /** * Decompress on the fly. * @param in the stream to wrap. * @return the wrapped stream. * @throws IOException if there is a problem. */ protected final InputStream wrapStream(InputStream in) throws IOException { return factory.getCompressorStream(new BufferedInputStream(in)); } /** * Compress on the fly. * @param out the stream to wrap. * @return the wrapped stream. * @throws IOException if there is a problem. */ protected final OutputStream wrapStream(OutputStream out) throws IOException { return factory.getCompressorStream(new BufferedOutputStream(out)); } /** * Get the string representation of this Resource. * @return this Resource formatted as a String. */ public String toString() { return name + " compressed " + super.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy