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

com.hivemq.util.ManifestUtils Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019-present HiveMQ GmbH
 *
 * 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 com.hivemq.util;

import com.google.common.annotations.VisibleForTesting;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.jar.Attributes;
import java.util.jar.Manifest;

public class ManifestUtils {

    private static final Logger log = LoggerFactory.getLogger(ManifestUtils.class);

    public static String getValueFromManifest(final Class clazz, final String name) {
        try {
            final URL resource = getResource(clazz, "META-INF/MANIFEST.MF");

            if (resource == null) {
                return null;
            }

            final Manifest manifest = new Manifest(resource.openStream());
            // do stuff with it
            final Attributes attributes = manifest.getMainAttributes();
            return attributes.getValue(name);
        } catch (final IOException e) {
            return null;
        }
    }

    @VisibleForTesting
    public static URL getResource(final Class clazz, final String resourcePath) {

        try {

            if (clazz == null || resourcePath == null) {
                return null;
            }

            final ClassLoader cl = clazz.getClassLoader();
            final Enumeration resources = cl.getResources(resourcePath);
            final List urls = new ArrayList<>();
            // There could be multiple jar file (windows service for example)
            while (resources.hasMoreElements()) {
                urls.add(resources.nextElement());
            }
            if (urls.isEmpty()) {
                // There is no Resource
                return null;
            }
            URL url = null;
            if (urls.size() == 1) {
                // There is only one jar file
                url = urls.get(0);
            } else {
                for (final URL currentUrl : urls) {
                    if (currentUrl.getPath().contains("hivemq.jar")) {
                        // If there are multiple jar files, we pick the one that contains the substring "hivemq.jar"
                        url = currentUrl;
                        break;
                    }
                }
                if (url == null) {
                    // If non of the urls contains the substring "hivemq.jar" we return the first one
                    url = urls.get(0);
                }
            }

            return url;
        } catch (final IOException e) {
            log.warn("Could not read resource " + resourcePath);
            log.debug("Original exception: ", e);
            return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy