view launcher/src/main/java/com/redhat/thermostat/launcher/internal/BundleManagerImpl.java @ 1182:cb2842943f60

Use SymblicName and Version in thermostat-plugin.xml Reviewed-by: neugens, jerboaa Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2013-July/007583.html
author Omair Majid <omajid@redhat.com>
date Wed, 24 Jul 2013 13:56:13 -0400
parents edb423d5d5a0
children d448210350bf
line wrap: on
line source

/*
 * Copyright 2012, 2013 Red Hat, Inc.
 *
 * This file is part of Thermostat.
 *
 * Thermostat is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published
 * by the Free Software Foundation; either version 2, or (at your
 * option) any later version.
 *
 * Thermostat is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Thermostat; see the file COPYING.  If not see
 * <http://www.gnu.org/licenses/>.
 *
 * Linking this code with other modules is making a combined work
 * based on this code.  Thus, the terms and conditions of the GNU
 * General Public License cover the whole combination.
 *
 * As a special exception, the copyright holders of this code give
 * you permission to link this code with independent modules to
 * produce an executable, regardless of the license terms of these
 * independent modules, and to copy and distribute the resulting
 * executable under terms of your choice, provided that you also
 * meet, for each linked independent module, the terms and conditions
 * of the license of that module.  An independent module is a module
 * which is not derived from or based on this code.  If you modify
 * this code, you may extend this exception to your version of the
 * library, but you are not obligated to do so.  If you do not wish
 * to do so, delete this exception statement from your version.
 */

package com.redhat.thermostat.launcher.internal;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.nio.file.FileVisitResult;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.SimpleFileVisitor;
import java.nio.file.attribute.BasicFileAttributes;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.jar.JarFile;
import java.util.jar.Manifest;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.naming.ConfigurationException;

import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.BundleException;
import org.osgi.framework.Constants;
import org.osgi.framework.FrameworkUtil;
import org.osgi.framework.launch.Framework;

import com.redhat.thermostat.common.utils.LoggingUtils;
import com.redhat.thermostat.launcher.BundleInformation;
import com.redhat.thermostat.launcher.BundleManager;
import com.redhat.thermostat.shared.config.Configuration;

public class BundleManagerImpl extends BundleManager {

    private static final Logger logger = LoggingUtils.getLogger(BundleManagerImpl.class);

    // Bundle Name and version -> path
    private final Map<BundleInformation, Path> known;
    private Configuration configuration;
    private BundleLoader loader;

    BundleManagerImpl(Configuration configuration) throws ConfigurationException, FileNotFoundException, IOException {
        known = new HashMap<>();

        this.configuration = configuration;
        loader = new BundleLoader(configuration.getPrintOSGiInfo());

        scanForBundles();
    }

    private void scanForBundles() {
        long t1 = System.nanoTime();

        try {
            for (String root : new String[] { configuration.getLibRoot(), configuration.getPluginRoot() }) {
                Files.walkFileTree(Paths.get(root), new SimpleFileVisitor<Path>() {
                    @Override
                    public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
                        if (file.toFile().getName().endsWith(".jar")) {
                            try (JarFile jf = new JarFile(file.toFile())) {
                                Manifest mf = jf.getManifest();
                                String name = mf.getMainAttributes().getValue(Constants.BUNDLE_SYMBOLICNAME);
                                String version = mf.getMainAttributes().getValue(Constants.BUNDLE_VERSION);
                                if (name == null || version == null) {
                                    logger.config("file " + file.toString() + " is missing osgi metadata; wont be usable for dependencies");
                                } else {
                                    known.put(new BundleInformation(name, version), file);
                                }
                            } catch (IOException e) {
                                logger.severe("Error in reading " + file);
                                // continue with other files, even if one file is broken
                            }
                        }
                        return FileVisitResult.CONTINUE;
                    }
                });
            }
        } catch (IOException e) {
            logger.log(Level.WARNING, "Error scanning bundles for metadata", e);
        }

        long t2 = System.nanoTime();
        if (configuration.getPrintOSGiInfo()) {
            logger.fine("Found: " + known.size() + " bundles");
            logger.fine("Took " + (t2 -t1) + "ns");

            for (Entry<BundleInformation, Path> bundles : known.entrySet()) {
                logger.finest(bundles.getKey().toString() + " is at " + bundles.getValue().toString());
            }
        }
    }

    @Override
    public void setPrintOSGiInfo(boolean printOSGiInfo) {
        configuration.setPrintOSGiInfo(printOSGiInfo);
        loader.setPrintOSGiInfo(printOSGiInfo);
    }

    @Override
    public void loadBundlesByName(List<BundleInformation> bundles) throws BundleException, IOException {
        List<String> paths = new ArrayList<>();
        for (BundleInformation info : bundles) {
            Path bundlePath = known.get(info);
            if (bundlePath == null) {
                logger.warning("no known bundle matching " + info.toString());
                continue;
            }
            paths.add(bundlePath.toFile().toURI().toString());
        }
        loadBundlesByPath(paths);
    }

    @Override
    public void loadBundlesByPath(List<String> requiredBundles) throws BundleException, IOException {
        Framework framework = getFramework(this.getClass());
        BundleContext context = framework.getBundleContext();

        List<String> bundlesToLoad = new ArrayList<>();
        if (requiredBundles != null) {
            for (String resource : requiredBundles) {
                if (!isBundleActive(context, resource)) {
                    bundlesToLoad.add(resource);
                }
            }
        }
        loader.installAndStartBundles(framework, bundlesToLoad);
    }

    private boolean isBundleActive(BundleContext context, String location) {
        Bundle bundle = context.getBundle(location);
        return (bundle != null) && (bundle.getState() == Bundle.ACTIVE);
    }

    private Framework getFramework(Class<?> cls) {
        return (Framework) FrameworkUtil.getBundle(cls).getBundleContext().getBundle(0);
    }

    @Override
    public Configuration getConfiguration() {
        return configuration;
    }
}