view local/command/src/main/java/com/redhat/thermostat/local/command/internal/LocalCommand.java @ 2596:e7eca163e587

Fix time sensitive test in LocalCommandTest. Reviewed-by: almac Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-February/022218.html PR3327
author Severin Gehwolf <sgehwolf@redhat.com>
date Thu, 16 Feb 2017 18:04:56 +0100
parents 879eb9424133
children
line wrap: on
line source

/*
 * Copyright 2012-2017 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.local.command.internal;

import com.redhat.thermostat.common.cli.AbstractCommand;
import com.redhat.thermostat.common.cli.CommandContext;
import com.redhat.thermostat.common.cli.CommandException;
import com.redhat.thermostat.common.cli.DependencyServices;
import com.redhat.thermostat.common.utils.LoggingUtils;
import com.redhat.thermostat.shared.config.CommonPaths;
import com.redhat.thermostat.shared.locale.Translate;
import com.redhat.thermostat.launcher.Launcher;

import java.awt.SplashScreen;
import java.io.File;
import java.lang.ProcessBuilder.Redirect;
import java.io.IOException;

import java.nio.file.FileSystems;
import java.nio.file.Path;
import java.nio.file.WatchEvent;
import java.nio.file.WatchKey;
import java.nio.file.WatchService;
import java.util.concurrent.TimeUnit;
import java.util.logging.Level;
import java.util.logging.Logger;

import static java.nio.file.StandardWatchEventKinds.ENTRY_DELETE;

public class LocalCommand extends AbstractCommand {

    private static final Logger logger = LoggingUtils.getLogger(LocalCommand.class);
    private static final Translate<LocaleResources> t = LocaleResources.createLocalizer();
    private static String SHOW_SPLASH = "--show-splash";
    private final DependencyServices dependentServices = new DependencyServices();
    private Launcher launcher;
    private CommonPaths paths;
    private boolean splashScreenEnabled;

    public void run(CommandContext ctx) throws CommandException {
        this.paths = dependentServices.getRequiredService(CommonPaths.class);
        this.launcher = dependentServices.getRequiredService(Launcher.class);

        ServiceLauncher serviceLauncher = createServiceLauncher();
        serviceLauncher.start();
        if (ctx.getArguments().hasArgument(SHOW_SPLASH)) {
            splashScreenEnabled = true;
            File stamp = paths.getUserSplashScreenStampFile();
            try {
                stamp.createNewFile();
            } catch (IOException | SecurityException e) {
                logger.log(Level.WARNING, "Unable to create file splashscreen.stamp", e);
            }
        }
        
        try {
            // this blocks
            runGui();
        } finally {
            serviceLauncher.stop();
        }
    }

    // package-private for testing
    ServiceLauncher createServiceLauncher() {
        return new ServiceLauncher(launcher, paths);
    }

    private void runGui() throws CommandException {
        String thermostat = paths.getSystemBinRoot() + "/thermostat";
        Process gui;

        try {
            gui = execProcess(thermostat, "gui");
        } catch (IOException e) {
            throw new CommandException(t.localize(LocaleResources.ERROR_STARTING_GUI));
        }

        if (isSplashScreenEnabled()) {
            closeSplashScreen();
        }

        int exitStatus;
        try {
            exitStatus = gui.waitFor();
        } catch (InterruptedException e) {
            throw new CommandException(t.localize(LocaleResources.RUNNING_GUI_INTERRUPTED));
        }

        if (exitStatus != 0) {
            throw new CommandException(t.localize(LocaleResources.ERROR_RUNNING_GUI));
        }
    }

    // package-private for testing
    Process execProcess(String... command) throws IOException {
        ProcessBuilder pb = new ProcessBuilder(command);
        pb.redirectOutput(Redirect.INHERIT);
        pb.redirectError(Redirect.INHERIT);
        return pb.start();
    }

    // package private for testing
    boolean isSplashScreenEnabled() {
        return splashScreenEnabled;
    }

    private void closeSplashScreen() {
        try {
            WatchService watcher = FileSystems.getDefault().newWatchService();
            Path splashStampPath = paths.getUserSplashScreenStampFile().toPath().getParent();
            splashStampPath.register(watcher, ENTRY_DELETE);
            while(paths.getUserSplashScreenStampFile().exists()) {
                WatchKey key = watcher.poll(5L, TimeUnit.MINUTES);
                for (WatchEvent<?> event : key.pollEvents()) {
                    if (paths.getUserSplashScreenStampFile().getName().equals(event.context().toString())) {
                        doCloseSplashScreen();
                    }
                }
            }
        } catch (IOException | InterruptedException e) {
            logger.log(Level.WARNING, "Failed to complete WatcherService.", e);
            doCloseSplashScreen();
        }
    }

    private void doCloseSplashScreen() {
        SplashScreen spScreen = SplashScreen.getSplashScreen();
        if (spScreen != null) { // if it's null there is nothing to close
            spScreen.close();
        }
    }

    public void setPaths(CommonPaths paths) {
        dependentServices.addService(CommonPaths.class, paths);
    }

    public void setLauncher(Launcher launcher) {
        dependentServices.addService(Launcher.class, launcher);
    }

    public void setServicesUnavailable() {
        dependentServices.removeService(Launcher.class);
        dependentServices.removeService(CommonPaths.class);
    }

    @Override
    public boolean isStorageRequired() {
        return false;
    }
}