Class EMFTVMLauncher
java.lang.Object
org.eclipse.m2m.atl.emftvm.launcher.compat.EMFTVMLauncher
- All Implemented Interfaces:
ILauncher
- Direct Known Subclasses:
EMFTVMUILauncher
The EMFVM implementation of the
ILauncher
interface.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected ExecEnv
static final String
The Default model factory name to use.protected ModuleResolver
protected org.eclipse.emf.ecore.resource.ResourceSet
protected org.eclipse.emf.ecore.resource.ResourceSet
protected TimingData
Fields inherited from interface org.eclipse.m2m.atl.core.launch.ILauncher
DEBUG_MODE, RUN_MODE
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addInModel
(IModel model, String name, String referenceModelName) Adds an input model to the transformation context.void
addInOutModel
(IModel model, String name, String referenceModelName) Adds an input/output model to the transformation context.void
addLibrary
(String name, Object library) Adds a preloaded library module to the transformation, or anInputStream
.protected Model
Adds any model to the local map.void
addOutModel
(IModel model, String name, String referenceModelName) Adds an output model to the transformation context.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.protected Module
getModuleFromObject
(Object module) Load a module if necessary.getName()
Returns theILauncher
name.void
initialize
(Map<String, Object> parameters) Initialize the launcher.protected Object
internalLaunch
(VMMonitor tool, 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
-
MODEL_FACTORY_NAME
The Default model factory name to use.- See Also:
-
models
-
libraries
-
moduleResourceSet
protected org.eclipse.emf.ecore.resource.ResourceSet moduleResourceSet -
moduleResolver
-
execEnv
-
outputResourceSet
protected org.eclipse.emf.ecore.resource.ResourceSet outputResourceSet -
timingData
-
-
Constructor Details
-
EMFTVMLauncher
public EMFTVMLauncher()
-
-
Method Details
-
getName
Returns theILauncher
name. -
addModel
Adds any model to the local map. -
addInModel
Adds an input model to the transformation context. This method is also used to load the metamodels used in this transformation.- Specified by:
addInModel
in 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:
addInOutModel
in 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:
addOutModel
in 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:
addLibrary
in 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:
initialize
in 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:
launch
in 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(VMMonitor tool, org.eclipse.core.runtime.IProgressMonitor monitor, Map<String, Object> options, Object... modules) Launches the transformation with preloaded modules.- Parameters:
tool
- the execution toolmonitor
- the progression monitoroptions
- the launching optionsmodules
- the transformation modules- Returns:
- the execution result
-
loadModule
Loads a transformation module from anInputStream
.- Specified by:
loadModule
in interfaceILauncher
- Parameters:
inputStream
- the input stream to load- Returns:
- the loaded module
- See Also:
-
getModuleFromObject
Load a module if necessary.- Parameters:
module
- the givenModule
orInputStream
.- Returns:
- the
Module
-
getModel
Returns a previously added model with the given name. -
getLibrary
Returns a previously added library with the given name.- Specified by:
getLibrary
in 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:
getDefaultModelFactoryName
in interfaceILauncher
- Returns:
- the default ModelFactory name
- See Also:
-
getModes
Returns the supported modes.
-