Package org.eclipse.m2m.atl.core.service
Class LauncherService
java.lang.Object
org.eclipse.m2m.atl.core.service.LauncherService
The LauncherService utility class provides a generic way to launch a transformation using the ATL Core API.
To parameterize launch accurately, use directly the
ILauncher
implementations.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
getBooleanOption
(Object value, boolean defaultValue) Returns the boolean value of the given input, or the defaultValue if null.static String
getRefinedModelName
(String modelName) Returns the refined model name.static Object
launch
(String mode, org.eclipse.core.runtime.IProgressMonitor monitor, ILauncher launcher, Map<String, String> inModels, Map<String, String> inoutModels, Map<String, String> outModels, Map<String, String> paths, Map<String, Object> options, Map<String, InputStream> libraries, InputStream... modules) Launches a transformation using the given parameters.static Object
launch
(String mode, org.eclipse.core.runtime.IProgressMonitor monitor, ILauncher launcher, Map<String, ModelFactory> modelFactories, Map<String, IExtractor> extractors, Map<String, IInjector> injectors, Map<String, String> inModels, Map<String, String> inoutModels, Map<String, String> outModels, Map<String, String> paths, Map<String, Object> options, Map<String, InputStream> libraries, InputStream... modules) Launches a transformation using the given parameters.
-
Field Details
-
REFINING_TRACE_METAMODEL
The refining trace metamodel name, as defined by the compiler.- See Also:
-
REFINING_TRACE_MODEL
The refining trace model name, as defined by the compiler.- See Also:
-
-
Method Details
-
launch
public static Object launch(String mode, org.eclipse.core.runtime.IProgressMonitor monitor, ILauncher launcher, Map<String, String> inModels, Map<String, throws ATLCoreExceptionString> inoutModels, Map<String, String> outModels, Map<String, String> paths, Map<String, Object> options, Map<String, InputStream> libraries, InputStream... modules) Launches a transformation using the given parameters. Process the injections, extractions.- Parameters:
mode
- the launching modemonitor
- the progress monitorlauncher
- theILauncher
inModels
- a map defining the source models names: [model name, reference model name]inoutModels
- a map defining the inout models names: [model name, reference model name]outModels
- a map defining the target models names: [model name, reference model name]paths
- a map defining the location of each model name: [model name, model location]options
- a map of transformation options: [key, value]libraries
- a map of libraries modules: [library name, module]modules
- a list of modules to superimpose. The first module overrides the next ones.- Returns:
- the transformation result
- Throws:
ATLCoreException
-
launch
public static Object launch(String mode, org.eclipse.core.runtime.IProgressMonitor monitor, ILauncher launcher, Map<String, ModelFactory> modelFactories, Map<String, throws ATLCoreExceptionIExtractor> extractors, Map<String, IInjector> injectors, Map<String, String> inModels, Map<String, String> inoutModels, Map<String, String> outModels, Map<String, String> paths, Map<String, Object> options, Map<String, InputStream> libraries, InputStream... modules) Launches a transformation using the given parameters. Process the injections, extractions.- Parameters:
mode
- the launching modemonitor
- the progress monitorlauncher
- theILauncher
modelFactories
- a map defining whichModelFactory
to use, for each model nameextractors
- a map defining whichIExtractor
to use, for each model nameinjectors
- a map defining whichIInjector
to use, for each model nameinModels
- a map defining the source models names: [model name, reference model name]inoutModels
- a map defining the inout models names: [model name, reference model name]outModels
- a map defining the target models names: [model name, reference model name]paths
- a map defining the location of each model name: [model name, model location]options
- a map of transformation options: [key, value]libraries
- a map of libraries modules: [library name, module]modules
- a list of modules to superimpose. The first module overrides the next ones.- Returns:
- the transformation result
- Throws:
ATLCoreException
-
getRefinedModelName
Returns the refined model name.- Parameters:
modelName
- the inital model name- Returns:
- the refined model name
-
getBooleanOption
Returns the boolean value of the given input, or the defaultValue if null.- Parameters:
value
- the input valuedefaultValue
- the default boolean value to return in case of null- Returns:
- the boolean value of the given input, or the defaultValue if null
-