/********************************************************* begin of preamble
**
** Copyright (C) 2003-2010 Software- und Organisations-Service GmbH.
** All rights reserved.
**
** This file may be used under the terms of either the
**
** GNU General Public License version 2.0 (GPL)
**
** as published by the Free Software Foundation
** http://www.gnu.org/licenses/gpl-2.0.txt and appearing in the file
** LICENSE.GPL included in the packaging of this file.
**
** or the
**
** Agreement for Purchase and Licensing
**
** as offered by Software- und Organisations-Service GmbH
** in the respective terms of supply that ship with this file.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
** IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
** THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
** BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
** CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
** SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
** INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
** CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
** ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
** POSSIBILITY OF SUCH DAMAGE.
********************************************************** end of preamble*/
package sos.scheduler.InstallationService;
import org.apache.log4j.Logger;
import sos.scheduler.InstallationService.batchInstallationModel.JSBatchInstallerExecuter;
import sos.scheduler.job.IJSCommands;
import com.sos.JSHelper.Basics.JSJobUtilities;
import com.sos.JSHelper.Basics.JSToolBox;
import com.sos.localization.Messages;
/**
* \class JSBatchInstaller - Workerclass for "Unattended Batch Installation on remote servers"
*
* \brief AdapterClass of JSBatchInstaller for the SOSJobScheduler
*
* This Class JSBatchInstaller is the worker-class.
*
*
* see \see C:\Users\KB\Downloads\Preislisten\JSBatchInstaller.xml for (more) details.
*
* \verbatim ;
* mechanicaly created by C:\Users\KB\eclipse\xsl\JSJobDoc2JSWorkerClass.xsl from http://www.sos-berlin.com at 20110322142418
* \endverbatim
*/
public class JSBatchInstaller extends JSToolBox implements JSJobUtilities, IJSCommands {
private final String conClassName = "JSBatchInstaller"; //$NON-NLS-1$
private static Logger logger = null /* Logger.getLogger(JSBatchInstaller.class) */;
protected JSBatchInstallerOptions objOptions = null;
private JSJobUtilities objJSJobUtilities = this;
private IJSCommands objJSCommands = this;
/**
*
* \brief JSBatchInstaller
*
* \details
*
*/
public JSBatchInstaller() {
super();
logger = Logger.getLogger(JSBatchInstaller.class);
}
public IJSCommands getJSCommands () {
return objJSCommands;
}
/**
*
* \brief Options - returns the JSBatchInstallerOptionClass
*
* \details
* The JSBatchInstallerOptionClass is used as a Container for all Options (Settings) which are
* needed.
*
* \return JSBatchInstallerOptions
*
*/
public JSBatchInstallerOptions Options() {
@SuppressWarnings("unused")//$NON-NLS-1$
final String conMethodName = conClassName + "::Options"; //$NON-NLS-1$
if (objOptions == null) {
objOptions = new JSBatchInstallerOptions();
}
return objOptions;
}
/**
*
* \brief Options - set the JSBatchInstallerOptionClass
*
* \details
* The JSBatchInstallerOptionClass is used as a Container for all Options (Settings) which are
* needed.
*
* \return JSBatchInstallerOptions
*
*/
public JSBatchInstallerOptions Options(final JSBatchInstallerOptions pobjOptions) {
@SuppressWarnings("unused")//$NON-NLS-1$
final String conMethodName = conClassName + "::Options"; //$NON-NLS-1$
objOptions = pobjOptions;
return objOptions;
}
/**
*
* \brief Execute - Start the Execution of JSBatchInstaller
*
* \details
*
* For more details see
*
* \see JobSchedulerAdapterClass
* \see JSBatchInstallerMain
*
* \return JSBatchInstaller
*
* @return
*/
public JSBatchInstaller Execute() throws Exception {
final String conMethodName = conClassName + "::Execute"; //$NON-NLS-1$
logger.debug(String.format(Messages.getMsg("JSJ-I-110"), conMethodName));
try {
Options().CheckMandatory();
logger.debug(Options().toString());
JSBatchInstallerExecuter jsBatchInstaller = new JSBatchInstallerExecuter();
jsBatchInstaller.performInstallation(this);
}
catch (Exception e) {
e.printStackTrace(System.err);
logger.error(String.format(Messages.getMsg("JSJ-I-107"), conMethodName), e);
}
finally {
logger.debug(String.format(Messages.getMsg("JSJ-I-111"), conMethodName));
}
return this;
}
public void init() {
@SuppressWarnings("unused")//$NON-NLS-1$
final String conMethodName = conClassName + "::init"; //$NON-NLS-1$
doInitialize();
}
private void doInitialize() {
} // doInitialize
public String myReplaceAll(String pstrSourceString, String pstrReplaceWhat, String pstrReplaceWith) {
String newReplacement = pstrReplaceWith.replaceAll("\\$", "\\\\\\$");
return pstrSourceString.replaceAll("(?m)" + pstrReplaceWhat, newReplacement);
}
/**
*
* \brief replaceSchedulerVars
*
* \details
* Dummy-Method to make sure, that there is always a valid Instance for the JSJobUtilities.
* \return
*
* @param isWindows
* @param pstrString2Modify
* @return
*/
@Override
public String replaceSchedulerVars(boolean isWindows, String pstrString2Modify) {
logger.debug("replaceSchedulerVars as Dummy-call executed. No Instance of JobUtilites specified.");
return pstrString2Modify;
}
/**
*
* \brief setJSParam
*
* \details
* Dummy-Method to make shure, that there is always a valid Instance for the JSJobUtilities.
* \return
*
* @param pstrKey
* @param pstrValue
*/
@Override
public void setJSParam(String pstrKey, String pstrValue) {
}
@Override
public void setJSParam(String pstrKey, StringBuffer pstrValue) {
}
/**
*
* \brief setJSJobUtilites
*
* \details
* The JobUtilities are a set of methods used by the SSH-Job or can be used be other, similar, job-
* implementations.
*
* \return void
*
* @param pobjJSJobUtilities
*/
public void setJSJobUtilites(JSJobUtilities pobjJSJobUtilities) {
if (pobjJSJobUtilities == null) {
objJSJobUtilities = this;
}
else {
objJSJobUtilities = pobjJSJobUtilities;
}
logger.debug("objJSJobUtilities = " + objJSJobUtilities.getClass().getName());
}
@Override
public String getCurrentNodeName() {
// TODO Auto-generated method stub
return null;
}
/**
*
* \brief setJSCommands
*
* \details
*
* \return void
*
* @param pobjJSCommands
*/
public void setJSCommands(IJSCommands pobjJSCommands) {
if (pobjJSCommands == null) {
objJSCommands = this;
}
else {
objJSCommands = pobjJSCommands;
}
logger.debug("pobjJSCommands = " + pobjJSCommands.getClass().getName());
}
@Override
public Object getSpoolerObject() {
return null;
}
@Override
public String executeXML(String pstrJSXmlCommand) {
return "";
}
} // class JSBatchInstaller