Class AbstractScriptedRatGenerator
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.flow.standalone.rats.generator.AbstractRatGenerator
-
- adams.flow.standalone.rats.generator.AbstractScriptedRatGenerator
-
- All Implemented Interfaces:
adams.core.Destroyable,adams.core.GlobalInfoSupporter,adams.core.logging.LoggingLevelHandler,adams.core.logging.LoggingSupporter,adams.core.option.OptionHandler,adams.core.scripting.FileBasedScripting,adams.core.scripting.FileBasedScriptingWithOptions,adams.core.SizeOfHandler,Serializable
- Direct Known Subclasses:
Scripted
public abstract class AbstractScriptedRatGenerator extends AbstractRatGenerator implements adams.core.scripting.FileBasedScriptingWithOptions
Abstract ancestor for rat generators that execute external scripts.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected adams.core.io.PlaceholderFilem_ScriptFilethe script.protected Objectm_ScriptObjectthe loaded script object.protected Stringm_ScriptOptionsthe options for the script.-
Fields inherited from class adams.flow.standalone.rats.generator.AbstractRatGenerator
m_Log, m_SendErrorQueue, m_ShowInControl
-
-
Constructor Summary
Constructors Constructor Description AbstractScriptedRatGenerator()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected voidcheck()Hook method for checks.protected abstract StringcheckScriptObject()Checks the script object.voiddefineOptions()Adds options to the internal list of options.voiddestroy()Frees up memory in a "destructive" non-reversible way.adams.core.io.PlaceholderFilegetScriptFile()Gets the script file.adams.core.base.BaseTextgetScriptOptions()Gets the script options.protected StringinitScriptObject()Tries to initialize the scripts object, sets its options and performs some checks.protected abstract StringloadScriptObject()Loads the scripts object and sets its options.voidreset()Resets the conversion.StringscriptFileTipText()Returns the tip text for this property.StringscriptOptionsTipText()Returns the tip text for this property.voidsetScriptFile(adams.core.io.PlaceholderFile value)Sets the script file.voidsetScriptOptions(adams.core.base.BaseText value)Sets the script options.-
Methods inherited from class adams.flow.standalone.rats.generator.AbstractRatGenerator
doGenerate, generate, getLog, getSendErrorQueue, getShowInControl, logTipText, sendErrorQueueTipText, setLog, setSendErrorQueue, setShowInControl, showInControlTipText
-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, initialize, loggingLevelTipText, newOptionManager, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Method Detail
-
defineOptions
public void defineOptions()
Adds options to the internal list of options.- Specified by:
defineOptionsin interfaceadams.core.option.OptionHandler- Overrides:
defineOptionsin classAbstractRatGenerator
-
reset
public void reset()
Resets the conversion.- Overrides:
resetin classadams.core.option.AbstractOptionHandler
-
setScriptFile
public void setScriptFile(adams.core.io.PlaceholderFile value)
Sets the script file.- Specified by:
setScriptFilein interfaceadams.core.scripting.FileBasedScripting- Parameters:
value- the script
-
getScriptFile
public adams.core.io.PlaceholderFile getScriptFile()
Gets the script file.- Specified by:
getScriptFilein interfaceadams.core.scripting.FileBasedScripting- Returns:
- the script
-
scriptFileTipText
public String scriptFileTipText()
Returns the tip text for this property.- Specified by:
scriptFileTipTextin interfaceadams.core.scripting.FileBasedScripting- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
setScriptOptions
public void setScriptOptions(adams.core.base.BaseText value)
Sets the script options.- Specified by:
setScriptOptionsin interfaceadams.core.scripting.FileBasedScriptingWithOptions- Parameters:
value- the options
-
getScriptOptions
public adams.core.base.BaseText getScriptOptions()
Gets the script options.- Specified by:
getScriptOptionsin interfaceadams.core.scripting.FileBasedScriptingWithOptions- Returns:
- the options
-
scriptOptionsTipText
public String scriptOptionsTipText()
Returns the tip text for this property.- Specified by:
scriptOptionsTipTextin interfaceadams.core.scripting.FileBasedScriptingWithOptions- Returns:
- tip text for this property suitable for displaying in the explorer/experimenter gui
-
loadScriptObject
protected abstract String loadScriptObject()
Loads the scripts object and sets its options.- Returns:
- null if OK, otherwise the error message
-
checkScriptObject
protected abstract String checkScriptObject()
Checks the script object.- Returns:
- null if OK, otherwise the error message
-
initScriptObject
protected String initScriptObject()
Tries to initialize the scripts object, sets its options and performs some checks.- Returns:
- null if OK, otherwise the error message
-
check
protected void check()
Hook method for checks.- Overrides:
checkin classAbstractRatGenerator
-
destroy
public void destroy()
Frees up memory in a "destructive" non-reversible way.- Specified by:
destroyin interfaceadams.core.Destroyable- Overrides:
destroyin classadams.core.option.AbstractOptionHandler
-
-