Skip to content
Snippets Groups Projects
Commit 3d262f05 authored by Florian Hölzl's avatar Florian Hölzl
Browse files

code generation for composite

refs 121
parent db7c92f8
No related branches found
No related tags found
No related merge requests found
...@@ -31,7 +31,7 @@ import org.fortiss.tooling.kernel.service.ITransformationService; ...@@ -31,7 +31,7 @@ import org.fortiss.tooling.kernel.service.ITransformationService;
* @author hoelzl * @author hoelzl
* @author $Author$ * @author $Author$
* @version $Rev$ * @version $Rev$
* @ConQAT.Rating GREEN Hash: A592C08FD3D4504BBFC841C98C4A627A * @ConQAT.Rating YELLOW Hash: 34A2DE2F88136C0B20E55E74D6E7F00A
*/ */
public final class TransformationUtils { public final class TransformationUtils {
/** /**
...@@ -44,24 +44,22 @@ public final class TransformationUtils { ...@@ -44,24 +44,22 @@ public final class TransformationUtils {
* the class of the transformation result * the class of the transformation result
* @param context * @param context
* the transformation context * the transformation context
* @return the transformation result (an instance of class * @return the transformation result (an instance of class <code>targetClass</code>).
* <code>targetClass</code>).
* @throws ChainTransformationFailedException * @throws ChainTransformationFailedException
* if no transformation chain could be found or none of the * if no transformation chain could be found or none of the
* possible chains succeeded. * possible chains succeeded.
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public static <T extends Object> T createTransformedObjectFor( public static <T extends Object> T createTransformedObjectFor(final EObject sourceElement,
final EObject sourceElement, final Class<T> targetClass, final Class<T> targetClass, ITransformationContext context)
ITransformationContext context)
throws ChainTransformationFailedException { throws ChainTransformationFailedException {
List<TransformationProviderChain> chainList = ITransformationService.INSTANCE List<TransformationProviderChain> chainList =
.getTransformationProviderChain(sourceElement.getClass(), ITransformationService.INSTANCE.getTransformationProviderChain(
targetClass, context); sourceElement.getClass(), targetClass, context);
ChainTransformationFailedException e = null; ChainTransformationFailedException e = null;
if (!chainList.isEmpty()) { if(!chainList.isEmpty()) {
Object executableObject = null; Object executableObject = null;
for (TransformationProviderChain chain : chainList) { for(TransformationProviderChain chain : chainList) {
try { try {
// for the moment, we use the first chain // for the moment, we use the first chain
// alternatives need an interpretation of the context, which // alternatives need an interpretation of the context, which
...@@ -69,37 +67,36 @@ public final class TransformationUtils { ...@@ -69,37 +67,36 @@ public final class TransformationUtils {
executableObject = chain.transform(sourceElement, context); executableObject = chain.transform(sourceElement, context);
e = null; e = null;
break; break;
} catch (ChainTransformationFailedException ctfe) { } catch(ChainTransformationFailedException ctfe) {
// fall through // fall through
e = ctfe; e = ctfe;
} }
} }
if (e == null && executableObject != null) { if(e == null && executableObject != null) {
return (T) executableObject; return (T)executableObject;
} }
} }
if (e != null) { if(e != null) {
throw e; throw e;
} }
throw new ChainTransformationFailedException(null, null, null, null) { throw new ChainTransformationFailedException(null, null, null, null) {
/** {@inheritDoc} */ /** {@inheritDoc} */
@Override @Override
public String getMessage() { public String getMessage() {
return "No transformation chain found from " + sourceElement return "No transformation chain found from " + sourceElement + " to " +
+ " to " + targetClass.getName(); targetClass.getName();
} }
}; };
} }
/** /**
* Searches a transformation chain for the given model element and the * Searches a transformation chain for the given model element and the
* target class and returns the transformation result. This method returns * target class and returns the transformation result. This method returns <code>null</code> if
* <code>null</code> if the transformation failed. The exception is * the transformation failed. The exception is
* suppressed. * suppressed.
* *
* This is a fail-silent version of * This is a fail-silent version of
* {@link #createTransformedObjectFor(EObject, Class, ITransformationContext)} * {@link #createTransformedObjectFor(EObject, Class, ITransformationContext)} .
* .
* *
* @param sourceElement * @param sourceElement
* the source of the transformation * the source of the transformation
...@@ -107,18 +104,32 @@ public final class TransformationUtils { ...@@ -107,18 +104,32 @@ public final class TransformationUtils {
* the class of the transformation result * the class of the transformation result
* @param context * @param context
* the transformation context * the transformation context
* @return the transformation result (an instance of class * @return the transformation result (an instance of class <code>targetClass</code>).
* <code>targetClass</code>).
*/ */
public static <T extends Object> T createTransformedObjectWithoutExceptionFor( public static <T extends Object> T createTransformedObjectWithoutExceptionFor(
EObject sourceElement, Class<T> targetClass, EObject sourceElement, Class<T> targetClass, ITransformationContext context) {
ITransformationContext context) {
try { try {
T result = createTransformedObjectFor(sourceElement, targetClass, T result = createTransformedObjectFor(sourceElement, targetClass, context);
context);
return result; return result;
} catch (ChainTransformationFailedException ctfe) { } catch(ChainTransformationFailedException ctfe) {
return null; return null;
} }
} }
/**
* Searches a transformation chain for the given model element and the target class and returns
* {@code true} if such a chain exists.
*
* @param sourceElement
* the source of the transformation
* @param targetClass
* the class of the transformation result
* @param context
* the transformation context
* @return {@code true} if a transformation chain exists, {@code false} otherwise
*/
public static boolean canTransform(EObject sourceElement, Class<?> targetClass,
ITransformationContext context) {
return ITransformationService.INSTANCE.canTransform(sourceElement, targetClass, context);
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment