view vm-find/command/src/main/java/com/redhat/thermostat/vm/find/command/internal/FindVmCommand.java @ 2049:a92d602216ad

Update copyright license headers for 2017 PR3290 Reviewed-by: jerboaa Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-January/021974.html
author Andrew Azores <aazores@redhat.com>
date Tue, 17 Jan 2017 12:19:56 -0500
parents 9ae4735019dc
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.vm.find.command.internal;

import com.redhat.thermostat.common.cli.AbstractCommand;
import com.redhat.thermostat.common.cli.Arguments;
import com.redhat.thermostat.common.cli.CommandContext;
import com.redhat.thermostat.common.cli.CommandException;
import com.redhat.thermostat.shared.locale.Translate;
import com.redhat.thermostat.storage.core.HostRef;
import com.redhat.thermostat.storage.dao.AgentInfoDAO;
import com.redhat.thermostat.storage.dao.HostInfoDAO;
import com.redhat.thermostat.storage.dao.VmInfoDAO;
import com.redhat.thermostat.storage.model.AgentInformation;
import com.redhat.thermostat.storage.model.HostInfo;
import com.redhat.thermostat.storage.model.VmInfo;
import com.redhat.thermostat.vm.find.command.locale.LocaleResources;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

public class FindVmCommand extends AbstractCommand {

    static final String REGISTER_NAME = "find-vm";

    private static final Translate<LocaleResources> translator = LocaleResources.createTranslator();

    static final String ALIVE_AGENTS_ONLY_ARGUMENT = "alive-agents-only";
    static final String AGENT_ID_ARGUMENT = "agentId";

    private AgentInfoDAO agentInfoDAO;
    private HostInfoDAO hostInfoDAO;
    private VmInfoDAO vmInfoDAO;
    private CountDownLatch servicesLatch = new CountDownLatch(3);

    private final Map<HostRef, List<VmInfo>> hostVmsMap = new HashMap<>();
    private final Map<HostRef, HostInfo> hostInfoMap = new HashMap<>();

    @Override
    public void run(CommandContext ctx) throws CommandException {
        try {
            servicesLatch.await(500, TimeUnit.MILLISECONDS);
        } catch (InterruptedException e) {
            throw new CommandException(translator.localize(LocaleResources.COMMAND_INTERRUPTED));
        }

        requireNonNull(agentInfoDAO, translator.localize(LocaleResources.AGENT_SERVICE_UNAVAILABLE));
        requireNonNull(hostInfoDAO, translator.localize(LocaleResources.HOST_SERVICE_UNAVAILABLE));
        requireNonNull(vmInfoDAO, translator.localize(LocaleResources.VM_SERVICE_UNAVAILABLE));

        initDaoData();

        Arguments arguments = ctx.getArguments();
        List<AgentInformation> agentsToSearch = getAgentsToSearch(arguments);

        Map<String, String> hostCriteria = getHostCriteria(arguments);
        Map<String, String> vmCriteria = getVmCriteria(arguments);
        assertCriteriaGiven(hostCriteria, vmCriteria);

        HostMatcher hostMatcher = new HostMatcher(hostCriteria);
        VmMatcher vmMatcher = new VmMatcher(vmCriteria);

        List<MatchContext> results = performSearch(agentsToSearch, hostMatcher, vmMatcher);

        ResultsRenderer resultsRenderer = new ResultsRenderer(arguments);
        resultsRenderer.print(ctx.getConsole().getOutput(), results);
    }

    void initDaoData() {
        hostVmsMap.clear();
        hostInfoMap.clear();

        List<VmInfo> allVms = vmInfoDAO.getAllVmInfos();
        List<HostInfo> allHosts = hostInfoDAO.getAllHostInfos();

        for (HostInfo host : allHosts) {
            HostRef ref = getHostRefForAgentInformation(host.getAgentId());
            hostInfoMap.put(ref, host);
        }
        for (VmInfo vm : allVms) {
            HostRef hostRef = getHostRefForAgentInformation(vm.getAgentId());
            if (!hostVmsMap.containsKey(hostRef)) {
                hostVmsMap.put(hostRef, new ArrayList<VmInfo>());
            }
            hostVmsMap.get(hostRef).add(vm);
        }
    }

    List<AgentInformation> getAgentsToSearch(Arguments arguments) throws CommandException {
        validateAgentStatusArguments(arguments);
        List<AgentInformation> aliveAgents;
        if (arguments.hasArgument(AGENT_ID_ARGUMENT)) {
            String agentId = arguments.getArgument(AGENT_ID_ARGUMENT);

            aliveAgents = Collections.singletonList(agentInfoDAO.getAgentInformation(getHostRefForAgentInformation(agentId)));
        } else if (arguments.hasArgument(ALIVE_AGENTS_ONLY_ARGUMENT)) {
            aliveAgents = agentInfoDAO.getAliveAgents();
        } else {
            aliveAgents = agentInfoDAO.getAllAgentInformation();
        }
        return aliveAgents;
    }

    static void validateAgentStatusArguments(Arguments arguments) throws CommandException {
        boolean hasAgentIdArgument = arguments.hasArgument(AGENT_ID_ARGUMENT);
        boolean hasAliveAgentsOnlyArgument = arguments.hasArgument(ALIVE_AGENTS_ONLY_ARGUMENT);
        if (hasAgentIdArgument && hasAliveAgentsOnlyArgument) {
            throw new CommandException(translator.localize(LocaleResources.AGENT_FLAGS_CLASH, AGENT_ID_ARGUMENT, ALIVE_AGENTS_ONLY_ARGUMENT));
        }
    }

    static Map<String, String> getHostCriteria(Arguments arguments) {
        Map<String, String> hostCriteria = new HashMap<>();
        for (HostCriterion criterion : HostCriterion.values()) {
            if (arguments.hasArgument(criterion.getCliSwitch())) {
                hostCriteria.put(criterion.getCliSwitch(), arguments.getArgument(criterion.getCliSwitch()));
            }
        }
        return hostCriteria;
    }

    static void assertCriteriaGiven(Map<String, String> hostCriteria, Map<String, String> vmCriteria) throws CommandException {
        if (hostCriteria.isEmpty() && vmCriteria.isEmpty()) {
            throw new CommandException(translator.localize(LocaleResources.NO_CRITERIA_GIVEN));
        }
    }

    static Map<String, String> getVmCriteria(Arguments arguments) {
        Map<String, String> vmCriteria = new HashMap<>();
        for (VmCriterion criterion : VmCriterion.values()) {
            if (arguments.hasArgument(criterion.getCliSwitch())) {
                vmCriteria.put(criterion.getCliSwitch(), arguments.getArgument(criterion.getCliSwitch()));
            }
        }
        return vmCriteria;
    }

    List<MatchContext> performSearch(Iterable<AgentInformation> agents, HostMatcher hostMatcher, VmMatcher vmMatcher) throws UnrecognizedArgumentException {
        List<MatchContext> matchContexts = new ArrayList<>();
        for (AgentInformation agentInformation : filterAgents(agents, hostMatcher)) {
            HostInfo hostInfo = getHostInfo(agentInformation);
            List<VmInfo> matchingVms = getMatchingVms(agentInformation, hostInfo, vmMatcher);
            for (VmInfo vm : matchingVms) {
                MatchContext context = MatchContext.builder()
                        .agentInfo(agentInformation)
                        .hostInfo(hostInfo)
                        .vmInfo(vm)
                        .build();
                matchContexts.add(context);
            }
        }
        return matchContexts;
    }

    List<AgentInformation> filterAgents(Iterable<AgentInformation> agents, HostMatcher hostMatcher) throws UnrecognizedArgumentException {
        List<AgentInformation> list = new ArrayList<>();
        for (AgentInformation agent : agents) {
            HostInfo hostInfo = getHostInfo(agent);
            MatchContext context = MatchContext.builder()
                    .agentInfo(agent)
                    .hostInfo(hostInfo)
                    .build();
            if (hostMatcher.match(context)) {
                list.add(agent);
            }
        }
        return list;
    }

    private HostInfo getHostInfo(AgentInformation agentInformation) {
        return hostInfoMap.get(getHostRefForAgentInformation(agentInformation.getAgentId()));
    }

    private HostRef getHostRefForAgentInformation(String agentId) {
        return new HostRef(agentId, "dummy");
    }

    List<VmInfo> getMatchingVms(AgentInformation agent, HostInfo hostInfo, VmMatcher vmMatcher) throws UnrecognizedArgumentException {
        List<VmInfo> list = new ArrayList<>();
        for (VmInfo vmInfo : getVmInfos(agent.getAgentId())) {
            MatchContext context = MatchContext.builder()
                    .agentInfo(agent)
                    .hostInfo(hostInfo)
                    .vmInfo(vmInfo)
                    .build();
            if (vmMatcher.match(context)) {
                list.add(vmInfo);
            }
        }
        return list;
    }

    List<VmInfo> getVmInfos(String agentId) {
        return getVmInfos(getHostRefForAgentInformation(agentId));
    }

    List<VmInfo> getVmInfos(HostRef hostRef) {
        return hostVmsMap.get(hostRef);
    }

    public void setAgentInfoDAO(AgentInfoDAO agentInfoDAO) {
        this.agentInfoDAO = agentInfoDAO;
        servicesLatch.countDown();
    }

    public void setHostInfoDAO(HostInfoDAO hostInfoDAO) {
        this.hostInfoDAO = hostInfoDAO;
        servicesLatch.countDown();
    }

    public void setVmInfoDAO(VmInfoDAO vmInfoDAO) {
        this.vmInfoDAO = vmInfoDAO;
        servicesLatch.countDown();
    }

    public void servicesUnavailable() {
        setAgentInfoDAO(null);
        setHostInfoDAO(null);
        setVmInfoDAO(null);
        servicesLatch = new CountDownLatch(3);
    }
}