/** * The MIT License * * Copyright (C) 2007 Asterios Raptis * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ package de.alpharogroup.lang.util; import java.io.IOException; import java.io.Serializable; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; import java.util.jar.Attributes; import java.util.jar.Manifest; import lombok.EqualsAndHashCode; import lombok.Getter; import lombok.Setter; import lombok.ToString; import org.joda.time.DateTime; import de.alpharogroup.lang.ClassExtensions; /** * Simple bean to hold information about the version of a Manifest. Can be used for JAR, EAR and WAR * manifest files. */ @Getter @Setter @EqualsAndHashCode @ToString public class ManifestVersion implements Serializable { /** The serialVersionUID. */ private static final long serialVersionUID = 1L; /** * Returns a ManifestVersion object by reading the manifest file from the JAR, WAR or EAR file * that contains the given class. * * @param clazz * the clazz * @return the manifest version */ public static ManifestVersion get(final Class<?> clazz) { final String manifestUrl = ClassExtensions.getManifestUrl(clazz); try { return of(manifestUrl != null ? new URL(manifestUrl) : null); } catch (final MalformedURLException ignore) { return of(null); } } /** * Creates a new {@code ManifestVersion} object of the given url. * * @param url * the url * @return the manifest version */ private static ManifestVersion of(final URL url) { final ManifestVersion version = new ManifestVersion(); if (url != null) { URLConnection urlConnection = null; try { urlConnection = url.openConnection(); version.setLastModified(new DateTime(urlConnection.getLastModified())); version.setManifest(new Manifest(urlConnection.getInputStream())); version .setTitle(version.getManifestAttribute(Attributes.Name.IMPLEMENTATION_TITLE)); version.setVersion(version .getManifestAttribute(Attributes.Name.IMPLEMENTATION_VERSION)); } catch (final IOException e) { throw new RuntimeException("Error while try to load manifest file from " + url, e); } } return version; } /** The manifest. */ private Manifest manifest; /** The last modified holds the {@code DateTime} when the last build was. */ private DateTime lastModified; /** The version number. */ private String version; /** The title. */ private String title; /** * Gets the manifest attribute value from the given {@code Attributes.Name} object. * * @param name * the name * @return the manifest attribute or an empty String if the manifest attribute value is null */ public String getManifestAttribute(final Attributes.Name name) { if (getManifest() != null) { final Attributes attributes = getManifest().getMainAttributes(); final Object value = attributes.get(name); if (value != null) { return value.toString().trim(); } } return ""; } }