Search in sources :

Example 11 with ExecutionError

use of de.cinovo.cloudconductor.agent.exceptions.ExecutionError in project cloudconductor-agent-redhat by cinovo.

the class PackageHandler method reportInstalledPackages.

private PackageStateChanges reportInstalledPackages() throws ExecutionError {
    PackageState installedPackages;
    PackageHandler.LOGGER.debug("Starting to report packages");
    IExecutor<List<PackageVersion>> execute = new InstalledPackages().execute();
    PackageHandler.LOGGER.debug("Found packages to report");
    installedPackages = new PackageState(execute.getResult());
    try {
        return ServerCom.notifyInstalledPackages(installedPackages);
    } catch (CloudConductorException e) {
        PackageHandler.LOGGER.error("Error reporting installed packages: ", e);
        throw new ExecutionError(e);
    }
}
Also used : CloudConductorException(de.cinovo.cloudconductor.api.lib.exceptions.CloudConductorException) ExecutionError(de.cinovo.cloudconductor.agent.exceptions.ExecutionError) InstalledPackages(de.cinovo.cloudconductor.agent.executors.InstalledPackages) PackageState(de.cinovo.cloudconductor.api.model.PackageState) List(java.util.List)

Example 12 with ExecutionError

use of de.cinovo.cloudconductor.agent.exceptions.ExecutionError in project cloudconductor-agent-redhat by cinovo.

the class ServiceHandler method run.

/**
 * @throws ExecutionError an error occurred during execution
 */
public void run() throws ExecutionError {
    ServiceHandler.LOGGER.debug("Start ServiceHandler");
    ServiceHandler.LOGGER.debug("ServiceHandler : Report running services");
    List<String> runningServices = this.collectRunningServices();
    ServiceStates req = new ServiceStates(runningServices);
    ServiceStatesChanges serviceChanges;
    try {
        serviceChanges = ServerCom.notifyRunningServices(req);
    } catch (CloudConductorException e) {
        throw new ExecutionError(e);
    }
    int nStart = serviceChanges.getToStart().size();
    int nStop = serviceChanges.getToStop().size();
    int nRestart = serviceChanges.getToRestart().size();
    ServiceHandler.LOGGER.debug("Service changes: " + nStart + " to be started, " + nStop + " to be stopped, " + nRestart + " to be restarted");
    // handle service changes
    ServiceHandler.LOGGER.debug("ServiceHandler: Handle service changes");
    ScriptExecutor serviceHandler = ScriptExecutor.generateServiceStateHandler(serviceChanges.getToRestart(), serviceChanges.getToStart(), serviceChanges.getToStop());
    try {
        serviceHandler.execute();
    } catch (ExecutionError e) {
        // just log the error but go on with execution
        ServiceHandler.LOGGER.error("Error executing service handler: ", e);
    }
    // notify server on current state
    ServiceHandler.LOGGER.debug("ServiceHandler : Report running services again");
    runningServices = this.collectRunningServices();
    req = new ServiceStates(runningServices);
    try {
        ServerCom.notifyRunningServices(req);
    } catch (CloudConductorException e) {
        throw new ExecutionError(e);
    }
    ServiceHandler.LOGGER.debug("Finished ServiceHandler");
}
Also used : CloudConductorException(de.cinovo.cloudconductor.api.lib.exceptions.CloudConductorException) ExecutionError(de.cinovo.cloudconductor.agent.exceptions.ExecutionError) ServiceStates(de.cinovo.cloudconductor.api.model.ServiceStates) ServiceStatesChanges(de.cinovo.cloudconductor.api.model.ServiceStatesChanges) ScriptExecutor(de.cinovo.cloudconductor.agent.executors.ScriptExecutor)

Example 13 with ExecutionError

use of de.cinovo.cloudconductor.agent.exceptions.ExecutionError in project cloudconductor-agent-redhat by cinovo.

the class ServiceHandler method collectRunningServices.

private List<String> collectRunningServices() throws ExecutionError {
    Set<Service> services = null;
    try {
        services = ServerCom.getServices();
    } catch (CloudConductorException e) {
        throw new ExecutionError("Error getting services from server: ", e);
    }
    List<String> runningServices = new ArrayList<String>();
    ScriptExecutor serviceStateHandler = ScriptExecutor.generateCheckServiceState(services);
    serviceStateHandler.execute();
    try (Scanner s = new Scanner(serviceStateHandler.getResult())) {
        while (s.hasNextLine()) {
            String scriptName = s.next().trim();
            for (Service service : services) {
                if (service.getInitScript().equalsIgnoreCase(scriptName) && !runningServices.contains(service.getName())) {
                    runningServices.add(service.getName());
                }
            }
        }
    }
    ServiceHandler.LOGGER.debug(services.size() + " services registered, " + runningServices.size() + " running.");
    return runningServices;
}
Also used : CloudConductorException(de.cinovo.cloudconductor.api.lib.exceptions.CloudConductorException) Scanner(java.util.Scanner) ExecutionError(de.cinovo.cloudconductor.agent.exceptions.ExecutionError) ArrayList(java.util.ArrayList) Service(de.cinovo.cloudconductor.api.model.Service) ScriptExecutor(de.cinovo.cloudconductor.agent.executors.ScriptExecutor)

Aggregations

ExecutionError (de.cinovo.cloudconductor.agent.exceptions.ExecutionError)13 CloudConductorException (de.cinovo.cloudconductor.api.lib.exceptions.CloudConductorException)9 ScriptExecutor (de.cinovo.cloudconductor.agent.executors.ScriptExecutor)3 IOException (java.io.IOException)3 RepoHandler (de.cinovo.cloudconductor.agent.jobs.handler.RepoHandler)2 ConfigFile (de.cinovo.cloudconductor.api.model.ConfigFile)2 HashSet (java.util.HashSet)2 HashCode (com.google.common.hash.HashCode)1 TransformationErrorException (de.cinovo.cloudconductor.agent.exceptions.TransformationErrorException)1 FileExecutor (de.cinovo.cloudconductor.agent.executors.FileExecutor)1 InstalledPackages (de.cinovo.cloudconductor.agent.executors.InstalledPackages)1 AgentJob (de.cinovo.cloudconductor.agent.jobs.AgentJob)1 ConfigFileHandler (de.cinovo.cloudconductor.agent.jobs.handler.ConfigFileHandler)1 OptionHandler (de.cinovo.cloudconductor.agent.jobs.handler.OptionHandler)1 PackageHandler (de.cinovo.cloudconductor.agent.jobs.handler.PackageHandler)1 ServiceHandler (de.cinovo.cloudconductor.agent.jobs.handler.ServiceHandler)1 AgentOption (de.cinovo.cloudconductor.api.model.AgentOption)1 PackageState (de.cinovo.cloudconductor.api.model.PackageState)1 PackageVersion (de.cinovo.cloudconductor.api.model.PackageVersion)1 Repo (de.cinovo.cloudconductor.api.model.Repo)1