/* * The MIT License * * Copyright 2010 Sony Ericsson Mobile Communications. All rights reserved. * Copyright 2014 Sony Mobile Communications AB. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package com.sonymobile.tools.gerrit.gerritevents.workers.cmd; import java.io.IOException; import com.sonymobile.tools.gerrit.gerritevents.GerritCmdRunner; import com.sonymobile.tools.gerrit.gerritevents.GerritCmdRunner2; import com.sonymobile.tools.gerrit.gerritevents.GerritConnectionConfig; import com.sonymobile.tools.gerrit.gerritevents.GerritConnectionConfig2; import com.sonymobile.tools.gerrit.gerritevents.ssh.SshConnection; import com.sonymobile.tools.gerrit.gerritevents.ssh.SshConnectionFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * An abstract Job implementation * to be scheduled on {@link com.sonymobile.tools.gerrit.gerritevents.GerritSendCommandQueue}. * * @author Robert Sandell <robert.sandell@sonyericsson.com> */ public abstract class AbstractSendCommandJob implements Runnable, GerritCmdRunner, GerritCmdRunner2 { /** * An instance of a logger for sub-classes to use. */ protected static Logger logger = LoggerFactory.getLogger(AbstractSendCommandJob.class); private GerritConnectionConfig2 config; /** * Standard constructor taking the latest configuration. * @param config the connection config. */ protected AbstractSendCommandJob(GerritConnectionConfig2 config) { this.config = config; } /** * Gets the connection config used when sending a command. * @return the config. */ public GerritConnectionConfig getConfig() { return config; } /** * Sends a command to the Gerrit server. * @param command the command. * @return true if there were no exceptions when sending. */ @Override public boolean sendCommand(String command) { try { sendCommand2(command); } catch (Exception ex) { logger.error("Could not run command " + command, ex); return false; } return true; } /** * Sends a command to the Gerrit server, returning the output from the command. * @param command the command. * @return the output from the command. */ @Override public String sendCommandStr(String command) { String str = null; try { str = sendCommand2(command); } catch (Exception ex) { logger.error("Could not run command " + command, ex); } return str; } /** * Runs a command on the gerrit server and returns the output from the command. * @param command the command. * @return the output of the command, or null if something went wrong. * @throws IOException if error. */ @Override public String sendCommand2(String command) throws IOException { String str = null; SshConnection ssh = null; try { ssh = SshConnectionFactory.getConnection(config.getGerritHostName(), config.getGerritSshPort(), config.getGerritProxy(), config.getGerritAuthentication()); str = ssh.executeCommand(command); } catch (Exception ex) { throw new IOException("Error during sending command", ex); } finally { if (ssh != null) { ssh.disconnect(); } } return str; } }