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

org.dbflute.lasta.di.util.LdiJarFileUtil Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014-2015 the original author or authors.
 *
 * Licensed 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.dbflute.lasta.di.util;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.JarURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.util.jar.JarFile;
import java.util.zip.ZipEntry;

import org.dbflute.lasta.di.exception.IORuntimeException;

/**
 * {@link java.util.jar.JarFile}を扱うユーティリティクラスです。
 * 
 * @author modified by jflute (originated in Seasar)
 */
public class LdiJarFileUtil {

    /**
     * インスタンスを構築します。
     */
    protected LdiJarFileUtil() {
    }

    /**
     * 指定されたJarファイルを読み取るためのJarFileを作成して返します。
     * 
     * @param file
     *            ファイルパス
     * @return 指定されたJarファイルを読み取るためのJarFile
     * @throws IORuntimeException
     *             入出力エラーが発生した場合にスローされます
     */
    public static JarFile create(final String file) {
        try {
            return new JarFile(file);
        } catch (final IOException e) {
            throw new IORuntimeException(e);
        }
    }

    /**
     * 指定されたJarファイルを読み取るためのJarFileを作成して返します。
     * 
     * @param file
     *            ファイル
     * @return 指定されたJarファイルを読み取るためのJarFile
     * @throws IORuntimeException
     *             入出力エラーが発生した場合にスローされます
     */
    public static JarFile create(final File file) {
        try {
            return new JarFile(file);
        } catch (final IOException e) {
            throw new IORuntimeException(e);
        }
    }

    /**
     * 指定されたJarファイルエントリの内容を読み込むための入力ストリームを返します。
     * 
     * @param file
     *            Jarファイル
     * @param entry
     *            Jarファイルエントリ
     * @return 指定されたJarファイルエントリの内容を読み込むための入力ストリーム
     * @throws IORuntimeException
     *             入出力エラーが発生した場合にスローされます
     */
    public static InputStream getInputStream(final JarFile file, final ZipEntry entry) {
        try {
            return file.getInputStream(entry);
        } catch (final IOException e) {
            throw new IORuntimeException(e);
        }
    }

    /**
     * URLで指定されたJarファイルを読み取るためのJarFileを作成して返します。
     * 
     * @param jarUrl
     *            Jarファイルを示すURL
     * @return 指定されたJarファイルを読み取るためのJarFile
     * @throws IORuntimeException
     *             入出力エラーが発生した場合にスローされます
     */
    public static JarFile toJarFile(final URL jarUrl) {
        final URLConnection con = LdiURLUtil.openConnection(jarUrl);
        if (con instanceof JarURLConnection) {
            return LdiJarURLConnectionUtil.getJarFile((JarURLConnection) con);
        }
        return create(new File(toJarFilePath(jarUrl)));
    }

    /**
     * URLで指定されたJarファイルのパスを返します。
     * 
     * @param jarUrl
     *            Jarファイルを示すURL
     * @return URLで指定されたJarファイルのパス
     * @throws IORuntimeException
     *             入出力エラーが発生した場合にスローされます
     */
    public static String toJarFilePath(final URL jarUrl) {
        final URL nestedUrl = LdiURLUtil.create(jarUrl.getPath());
        final String nestedUrlPath = nestedUrl.getPath();
        final int pos = nestedUrlPath.lastIndexOf('!');
        final String jarFilePath = nestedUrlPath.substring(0, pos);
        final File jarFile = new File(LdiURLUtil.decode(jarFilePath, "UTF8"));
        return LdiFileUtil.getCanonicalPath(jarFile);
    }

    /**
     * Jarファイルをクローズします。
     * 
     * @param jarFile
     *            Jarファイル
     * @throws IORuntimeException
     *             入出力エラーが発生した場合にスローされます
     */
    public static void close(final JarFile jarFile) {
        try {
            jarFile.close();
        } catch (final IOException e) {
            throw new IORuntimeException(e);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy