Class EMFVMLauncher
java.lang.Object
org.eclipse.m2m.atl.engine.emfvm.launch.EMFVMLauncher
- All Implemented Interfaces:
ILauncher
- Direct Known Subclasses:
EMFVMUILauncher
The EMFVM implementation of the
ILauncher interface.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringTheILauncherextension name.static final StringThe Default model factory name to use.Fields inherited from interface org.eclipse.m2m.atl.core.launch.ILauncher
DEBUG_MODE, RUN_MODE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddInModel(IModel model, String name, String referenceModelName) Adds an input model to the transformation context.voidaddInOutModel(IModel model, String name, String referenceModelName) Adds an input/output model to the transformation context.voidaddLibrary(String name, Object library) Adds a preloaded library module to the transformation, or anInputStream.protected voidAdds any model to the local map.voidaddOutModel(IModel model, String name, String referenceModelName) Adds an output model to the transformation context.protected ASMgetASMFromObject(Object module) Load a module if necessary.Returns the default ModelFactory name.getLibrary(String libraryName) Returns a previously added library with the given name.Returns a previously added model with the given name.String[]getModes()Returns the supported modes.getName()Returns theILaunchername.voidinitialize(Map<String, Object> parameters) Initialize the launcher.protected ObjectinternalLaunch(ITool[] tools, org.eclipse.core.runtime.IProgressMonitor monitor, Map<String, Object> options, Object... modules) Launches the transformation with preloaded modules.launch(String mode, org.eclipse.core.runtime.IProgressMonitor monitor, Map<String, Object> options, Object... modules) Launches the transformation using the given parameters and the given set of preloaded modules, orInputStream.loadModule(InputStream inputStream) Loads a transformation module from anInputStream.
-
Field Details
-
LAUNCHER_NAME
TheILauncherextension name.- See Also:
-
MODEL_FACTORY_NAME
The Default model factory name to use.- See Also:
-
models
-
libraries
-
-
Constructor Details
-
EMFVMLauncher
public EMFVMLauncher()
-
-
Method Details
-
getName
Description copied from interface:ILauncherReturns theILaunchername. -
addModel
Adds any model to the local map.- Parameters:
model- theIModelname- the model namereferenceModelName- the model reference model name
-
addInModel
Adds an input model to the transformation context. This method is also used to load the metamodels used in this transformation.- Specified by:
addInModelin interfaceILauncher- Parameters:
model- the loaded modelname- the name of the model as described in the main modulereferenceModelName- the name of the metamodel as described in the main module- See Also:
-
addInOutModel
Adds an input/output model to the transformation context.- Specified by:
addInOutModelin interfaceILauncher- Parameters:
model- the loaded modelname- the name of the model as described in the main modulereferenceModelName- the name of the metamodel as described in the main module- See Also:
-
addOutModel
Adds an output model to the transformation context.- Specified by:
addOutModelin interfaceILauncher- Parameters:
model- the loaded modelname- the name of the model as described in the main modulereferenceModelName- the name of the metamodel as described in the main module- See Also:
-
addLibrary
Adds a preloaded library module to the transformation, or anInputStream.- Specified by:
addLibraryin interfaceILauncher- Parameters:
name- the name of the library as described in the main modulelibrary- the loaded library- See Also:
-
initialize
Initialize the launcher.- Specified by:
initializein interfaceILauncher- Parameters:
parameters- initialization options- See Also:
-
launch
public Object launch(String mode, org.eclipse.core.runtime.IProgressMonitor monitor, Map<String, Object> options, Object... modules) Launches the transformation using the given parameters and the given set of preloaded modules, orInputStream.- Specified by:
launchin interfaceILauncher- Parameters:
mode- the launching modemonitor- the progress monitoroptions- vm optionsmodules- single module/ordered module set. A module set is used for superimposition, where the first module of the set is override by the next ones. A module can be passed as an InputStream or directly a module loaded by the loadModule method.- Returns:
- the transformation return result
- See Also:
-
internalLaunch
protected Object internalLaunch(ITool[] tools, org.eclipse.core.runtime.IProgressMonitor monitor, Map<String, Object> options, Object... modules) Launches the transformation with preloaded modules.- Parameters:
tools- the execution toolsmonitor- the progression monitoroptions- the launching optionsmodules- the transformation modules- Returns:
- the execution result
-
loadModule
Loads a transformation module from anInputStream.- Specified by:
loadModulein interfaceILauncher- Parameters:
inputStream- the input stream to load- Returns:
- the loaded module
- See Also:
-
getASMFromObject
Load a module if necessary.- Parameters:
module- the givenASMorInputStream.- Returns:
- the
ASM
-
getModel
Returns a previously added model with the given name. -
getLibrary
Returns a previously added library with the given name.- Specified by:
getLibraryin interfaceILauncher- Parameters:
libraryName- the library name- Returns:
- a previously added library with the given name
- See Also:
-
getDefaultModelFactoryName
Returns the default ModelFactory name.- Specified by:
getDefaultModelFactoryNamein interfaceILauncher- Returns:
- the default ModelFactory name
- See Also:
-
getModes
Returns the supported modes.
-