From 53ca7ea590c59e4291b9352cf037b4cbe1e96b28 Mon Sep 17 00:00:00 2001 From: Anish Bhobe Date: Wed, 31 Jul 2024 17:20:03 +0200 Subject: [PATCH] Added a model mutation scheme. --- .gitignore | 1 + .../.classpath | 8 + .../.project | 28 + .../org.eclipse.core.resources.prefs | 2 + .../META-INF/MANIFEST.MF | 18 + .../build.properties | 10 + ...ogicBlock_components_RandomMutateModel.gif | Bin 0 -> 223 bytes ...odelContainer_models_RandomMutateModel.gif | Bin 0 -> 223 bytes ...eWorkflow_components_RandomMutateModel.gif | Bin 0 -> 223 bytes .../icons/full/obj16/RandomMutateModel.gif | Bin 0 -> 129 bytes .../plugin.properties | 24 + .../plugin.xml | 32 + .../mutator/provider/MutatorEditPlugin.java | 92 + .../MutatorItemProviderAdapterFactory.java | 454 ++++ .../RandomMutateModelItemProvider.java | 150 ++ .../.classpath | 8 + .../.project | 28 + .../org.eclipse.core.resources.prefs | 2 + .../META-INF/MANIFEST.MF | 20 + .../build.properties | 10 + .../icons/full/obj16/MutatorModelFile.gif | Bin 0 -> 346 bytes .../icons/full/wizban/NewMutator.gif | Bin 0 -> 2462 bytes .../plugin.properties | 53 + .../plugin.xml | 37 + .../MutatorActionBarContributor.java | 426 ++++ .../mutator/presentation/MutatorEditor.java | 1857 +++++++++++++++++ .../presentation/MutatorEditorPlugin.java | 94 + .../presentation/MutatorModelWizard.java | 631 ++++++ fr.tpt.mem4csd.loss.modelMutation/.classpath | 8 + fr.tpt.mem4csd.loss.modelMutation/.project | 28 + .../org.eclipse.core.resources.prefs | 2 + .../META-INF/MANIFEST.MF | 17 + .../build.properties | 10 + .../model/Mutator.ecore | 9 + .../model/Mutator.genmodel | 16 + .../plugin.properties | 4 + fr.tpt.mem4csd.loss.modelMutation/plugin.xml | 17 + .../src-gen/mutator/MutatorFactory.java | 42 + .../src-gen/mutator/MutatorPackage.java | 227 ++ .../src-gen/mutator/RandomMutateModel.java | 46 + .../mutator/impl/MutatorFactoryImpl.java | 97 + .../mutator/impl/MutatorPackageImpl.java | 194 ++ .../mutator/impl/RandomMutateModelImpl.java | 194 ++ .../mutator/util/MutatorAdapterFactory.java | 160 ++ .../src-gen/mutator/util/MutatorSwitch.java | 146 ++ .../modelMutationUtils/BaseMutations.java | 115 + .../LimitedAdditionExtractor.java | 96 + .../loss/modelMutationUtils/Mutation.java | 77 + .../modelMutationUtils/MutationExtractor.java | 10 + .../SiteOfLossGenerator.java | 80 + 50 files changed, 5580 insertions(+) create mode 100644 .gitignore create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/.classpath create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/.project create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/.settings/org.eclipse.core.resources.prefs create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/META-INF/MANIFEST.MF create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/build.properties create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateLogicBlock_components_RandomMutateModel.gif create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateModelContainer_models_RandomMutateModel.gif create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateWorkflow_components_RandomMutateModel.gif create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/obj16/RandomMutateModel.gif create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/plugin.properties create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/plugin.xml create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/MutatorEditPlugin.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/MutatorItemProviderAdapterFactory.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/RandomMutateModelItemProvider.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/.classpath create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/.project create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/.settings/org.eclipse.core.resources.prefs create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/META-INF/MANIFEST.MF create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/build.properties create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/icons/full/obj16/MutatorModelFile.gif create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/icons/full/wizban/NewMutator.gif create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/plugin.properties create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/plugin.xml create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorActionBarContributor.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorEditor.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorEditorPlugin.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorModelWizard.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/.classpath create mode 100644 fr.tpt.mem4csd.loss.modelMutation/.project create mode 100644 fr.tpt.mem4csd.loss.modelMutation/.settings/org.eclipse.core.resources.prefs create mode 100644 fr.tpt.mem4csd.loss.modelMutation/META-INF/MANIFEST.MF create mode 100644 fr.tpt.mem4csd.loss.modelMutation/build.properties create mode 100644 fr.tpt.mem4csd.loss.modelMutation/model/Mutator.ecore create mode 100644 fr.tpt.mem4csd.loss.modelMutation/model/Mutator.genmodel create mode 100644 fr.tpt.mem4csd.loss.modelMutation/plugin.properties create mode 100644 fr.tpt.mem4csd.loss.modelMutation/plugin.xml create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/MutatorFactory.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/MutatorPackage.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/RandomMutateModel.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/MutatorFactoryImpl.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/MutatorPackageImpl.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/RandomMutateModelImpl.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/util/MutatorAdapterFactory.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/util/MutatorSwitch.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/BaseMutations.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/LimitedAdditionExtractor.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/Mutation.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/MutationExtractor.java create mode 100644 fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/SiteOfLossGenerator.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5241a72 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.class \ No newline at end of file diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/.classpath b/fr.tpt.mem4csd.loss.modelMutation.edit/.classpath new file mode 100644 index 0000000..c3f9cf3 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/.classpath @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/.project b/fr.tpt.mem4csd.loss.modelMutation.edit/.project new file mode 100644 index 0000000..0fb2720 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/.project @@ -0,0 +1,28 @@ + + + fr.tpt.mem4csd.loss.modelMutation.edit + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.pde.PluginNature + + diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/.settings/org.eclipse.core.resources.prefs b/fr.tpt.mem4csd.loss.modelMutation.edit/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..99f26c0 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/META-INF/MANIFEST.MF b/fr.tpt.mem4csd.loss.modelMutation.edit/META-INF/MANIFEST.MF new file mode 100644 index 0000000..1ecd066 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/META-INF/MANIFEST.MF @@ -0,0 +1,18 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %pluginName +Bundle-SymbolicName: fr.tpt.mem4csd.loss.modelMutation.edit;singleton:=true +Automatic-Module-Name: fr.tpt.mem4csd.loss.modelMutation.edit +Bundle-Version: 1.0.0.qualifier +Bundle-ClassPath: . +Bundle-Activator: mutator.provider.MutatorEditPlugin$Implementation +Bundle-Vendor: %providerName +Bundle-Localization: plugin +Bundle-RequiredExecutionEnvironment: JavaSE-17 +Export-Package: mutator.provider +Require-Bundle: org.eclipse.core.runtime, + fr.tpt.mem4csd.loss.modelMutation;visibility:=reexport, + org.eclipse.emf.edit;visibility:=reexport, + de.mdelab.workflow;visibility:=reexport, + de.mdelab.workflow.edit;visibility:=reexport +Bundle-ActivationPolicy: lazy diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/build.properties b/fr.tpt.mem4csd.loss.modelMutation.edit/build.properties new file mode 100644 index 0000000..6e3e902 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/build.properties @@ -0,0 +1,10 @@ +# + +bin.includes = .,\ + icons/,\ + META-INF/,\ + plugin.xml,\ + plugin.properties +jars.compile.order = . +source.. = src/ +output.. = bin/ diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateLogicBlock_components_RandomMutateModel.gif b/fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateLogicBlock_components_RandomMutateModel.gif new file mode 100644 index 0000000000000000000000000000000000000000..a6fdabb17b6717ba487c7a22730d8fea3a98ec8f GIT binary patch literal 223 zcmZ?wbhEHb6krfwIKsg2|NsB{_xIb|$1^Z6eEs_S=+QUx=ijfay!8Kn{QP+P|M%@1 z8X689I57YId?3TY!C}{QH6YqLNqJqD{L&_=d6i-_ON9UZeGf!`Kc5GpKhGEczS|5m z4FVK@vM_>JIv@gMCj)DYfrlb&nYlQhND`=ydI zodY#yFF(O9(x)}&)JZoh1|7Bg-YymbK@GECBz#zOvYlyRf}8w}mYUnSTBl#8=QHHg OG^I8+WvePOSOWn08)H`h literal 0 HcmV?d00001 diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateModelContainer_models_RandomMutateModel.gif b/fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateModelContainer_models_RandomMutateModel.gif new file mode 100644 index 0000000000000000000000000000000000000000..3dc8f80e565da4798f37787ac84110ae1ec2b02d GIT binary patch literal 223 zcmZ?wbhEHb6krfwIKsg2|NsB{_xIb|$1^Z6eEs_S=+QUx=ijfay!8Kn{QP+P|M%@1 z8XB6`Tnp|wW?8&OC$eqVbTuH_I!Sq5m;BNusd<%RGfRa3{e2Hae?OlGqCd|U|GwJ{ zGz|h2f3h%wSUMmAWG4e_jDkX6N~E0{!_2dXr(D=NslT~zQi-SWXOo_5*^@NI)cd89 zGo1r9W-mX%F4Ctp=hR6zD+V34``#`V0znP4UnG23bh4dkVS=0djh33*xmu@Rrsp%{ P)HJ0wHf5_SGFSrul|N#} literal 0 HcmV?d00001 diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateWorkflow_components_RandomMutateModel.gif b/fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/ctool16/CreateWorkflow_components_RandomMutateModel.gif new file mode 100644 index 0000000000000000000000000000000000000000..2c2ef1ff95ca25215177a33244d28ddbe95bc64c GIT binary patch literal 223 zcmZ?wbhEHb6krfwIKsg2|NsB{_xIb|$1^Z6eEs_S=+QUx=ijfay!8Kn{QP+P|M%@1 z8X689I520<93Uh3SkJEMYCyDglJdGP`K3)#^D4z=mI(j*`yPn?em)OGf1WS?eYY8C z8U!f*WMKrcbU*~iP6pN(1%MmLCOy}(CuxeQ_e&*b zItOaZUVegIq)%(ksgrJ23_5D}yf*NMONcgbmWINNs1ULB`Ej71uwNAfG&u7S~ OX-aKu%2rimum%8ID`WEj literal 0 HcmV?d00001 diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/obj16/RandomMutateModel.gif b/fr.tpt.mem4csd.loss.modelMutation.edit/icons/full/obj16/RandomMutateModel.gif new file mode 100644 index 0000000000000000000000000000000000000000..1e5345fb3237c2f6eabcee2dbe44a371b49d8379 GIT binary patch literal 129 zcmZ?wbhEHb6krfw*vtS14M4Jip`qcxfddT<4GjN*-2XuK|Nmgt|NmdV{yuv2&HVZI zD=RN4{$ycfVBloX0qF#p!N8(taME-2UW?aXzNzp(EOgy&%6cm$!E3?7uQqxgr>R{v WEALsU$*;SdvD59yL?K~D25SItpfW}P literal 0 HcmV?d00001 diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/plugin.properties b/fr.tpt.mem4csd.loss.modelMutation.edit/plugin.properties new file mode 100644 index 0000000..71ab935 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/plugin.properties @@ -0,0 +1,24 @@ +# + +pluginName = fr.tpt.mem4csd.loss.modelMutation Edit Support +providerName = www.example.org + +_UI_CreateChild_text = {0} +_UI_CreateChild_text2 = {1} {0} +_UI_CreateChild_text3 = {1} +_UI_CreateChild_tooltip = Create New {0} Under {1} Feature +_UI_CreateChild_description = Create a new child of type {0} for the {1} feature of the selected {2}. +_UI_CreateSibling_description = Create a new sibling of type {0} for the selected {2}, under the {1} feature of their parent. + +_UI_PropertyDescriptor_description = The {0} of the {1} + +_UI_RandomMutateModel_type = Random Mutate Model +_UI_Unknown_type = Object + +_UI_Unknown_datatype= Value + +_UI_RandomMutateModel_srcModelSlot_feature = Src Model Slot +_UI_RandomMutateModel_dstModelSlot_feature = Dst Model Slot +_UI_Unknown_feature = Unspecified + +_UI_RandomMutateModel_modelSlot_feature = Model Slot diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/plugin.xml b/fr.tpt.mem4csd.loss.modelMutation.edit/plugin.xml new file mode 100644 index 0000000..a28ecf5 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/plugin.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/MutatorEditPlugin.java b/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/MutatorEditPlugin.java new file mode 100644 index 0000000..f7b28f3 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/MutatorEditPlugin.java @@ -0,0 +1,92 @@ +/** + */ +package mutator.provider; + +import de.mdelab.workflow.provider.WorkflowEditPlugin; + +import org.eclipse.emf.common.EMFPlugin; + +import org.eclipse.emf.common.util.ResourceLocator; + +/** + * This is the central singleton for the Mutator edit plugin. + * + * + * @generated + */ +public final class MutatorEditPlugin extends EMFPlugin { + /** + * Keep track of the singleton. + * + * + * @generated + */ + public static final MutatorEditPlugin INSTANCE = new MutatorEditPlugin(); + + /** + * Keep track of the singleton. + * + * + * @generated + */ + private static Implementation plugin; + + /** + * Create the instance. + * + * + * @generated + */ + public MutatorEditPlugin() { + super + (new ResourceLocator [] { + WorkflowEditPlugin.INSTANCE, + }); + } + + /** + * Returns the singleton instance of the Eclipse plugin. + * + * + * @return the singleton instance. + * @generated + */ + @Override + public ResourceLocator getPluginResourceLocator() { + return plugin; + } + + /** + * Returns the singleton instance of the Eclipse plugin. + * + * + * @return the singleton instance. + * @generated + */ + public static Implementation getPlugin() { + return plugin; + } + + /** + * The actual implementation of the Eclipse Plugin. + * + * + * @generated + */ + public static class Implementation extends EclipsePlugin { + /** + * Creates an instance. + * + * + * @generated + */ + public Implementation() { + super(); + + // Remember the static instance. + // + plugin = this; + } + } + +} diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/MutatorItemProviderAdapterFactory.java b/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/MutatorItemProviderAdapterFactory.java new file mode 100644 index 0000000..58a5f17 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/MutatorItemProviderAdapterFactory.java @@ -0,0 +1,454 @@ +/** + */ +package mutator.provider; + +import de.mdelab.workflow.Workflow; +import de.mdelab.workflow.WorkflowPackage; + +import de.mdelab.workflow.components.ComponentsPackage; +import de.mdelab.workflow.components.LogicBlock; +import de.mdelab.workflow.components.ModelContainer; + +import de.mdelab.workflow.components.util.ComponentsSwitch; + +import de.mdelab.workflow.util.WorkflowSwitch; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.List; + +import mutator.MutatorFactory; + +import mutator.MutatorPackage; +import mutator.util.MutatorAdapterFactory; + +import org.eclipse.emf.common.notify.Adapter; +import org.eclipse.emf.common.notify.Notification; +import org.eclipse.emf.common.notify.Notifier; + +import org.eclipse.emf.common.util.ResourceLocator; + +import org.eclipse.emf.ecore.EObject; + +import org.eclipse.emf.edit.command.CommandParameter; + +import org.eclipse.emf.edit.domain.EditingDomain; + +import org.eclipse.emf.edit.provider.ChangeNotifier; +import org.eclipse.emf.edit.provider.ChildCreationExtenderManager; +import org.eclipse.emf.edit.provider.ComposeableAdapterFactory; +import org.eclipse.emf.edit.provider.ComposedAdapterFactory; +import org.eclipse.emf.edit.provider.IChangeNotifier; +import org.eclipse.emf.edit.provider.IChildCreationExtender; +import org.eclipse.emf.edit.provider.IDisposable; +import org.eclipse.emf.edit.provider.IEditingDomainItemProvider; +import org.eclipse.emf.edit.provider.IItemLabelProvider; +import org.eclipse.emf.edit.provider.IItemPropertySource; +import org.eclipse.emf.edit.provider.INotifyChangedListener; +import org.eclipse.emf.edit.provider.IStructuredItemContentProvider; +import org.eclipse.emf.edit.provider.ITreeItemContentProvider; + +/** + * This is the factory that is used to provide the interfaces needed to support Viewers. + * The adapters generated by this factory convert EMF adapter notifications into calls to {@link #fireNotifyChanged fireNotifyChanged}. + * The adapters also support Eclipse property sheets. + * Note that most of the adapters are shared among multiple instances. + * + * + * @generated + */ +public class MutatorItemProviderAdapterFactory extends MutatorAdapterFactory implements ComposeableAdapterFactory, IChangeNotifier, IDisposable, IChildCreationExtender { + /** + * This keeps track of the root adapter factory that delegates to this adapter factory. + * + * + * @generated + */ + protected ComposedAdapterFactory parentAdapterFactory; + + /** + * This is used to implement {@link org.eclipse.emf.edit.provider.IChangeNotifier}. + * + * + * @generated + */ + protected IChangeNotifier changeNotifier = new ChangeNotifier(); + + /** + * This helps manage the child creation extenders. + * + * + * @generated + */ + protected ChildCreationExtenderManager childCreationExtenderManager = new ChildCreationExtenderManager(MutatorEditPlugin.INSTANCE, MutatorPackage.eNS_URI); + + /** + * This keeps track of all the supported types checked by {@link #isFactoryForType isFactoryForType}. + * + * + * @generated + */ + protected Collection supportedTypes = new ArrayList(); + + /** + * This constructs an instance. + * + * + * @generated + */ + public MutatorItemProviderAdapterFactory() { + supportedTypes.add(IEditingDomainItemProvider.class); + supportedTypes.add(IStructuredItemContentProvider.class); + supportedTypes.add(ITreeItemContentProvider.class); + supportedTypes.add(IItemLabelProvider.class); + supportedTypes.add(IItemPropertySource.class); + } + + /** + * This keeps track of the one adapter used for all {@link mutator.RandomMutateModel} instances. + * + * + * @generated + */ + protected RandomMutateModelItemProvider randomMutateModelItemProvider; + + /** + * This creates an adapter for a {@link mutator.RandomMutateModel}. + * + * + * @generated + */ + @Override + public Adapter createRandomMutateModelAdapter() { + if (randomMutateModelItemProvider == null) { + randomMutateModelItemProvider = new RandomMutateModelItemProvider(this); + } + + return randomMutateModelItemProvider; + } + + /** + * This returns the root adapter factory that contains this factory. + * + * + * @generated + */ + @Override + public ComposeableAdapterFactory getRootAdapterFactory() { + return parentAdapterFactory == null ? this : parentAdapterFactory.getRootAdapterFactory(); + } + + /** + * This sets the composed adapter factory that contains this factory. + * + * + * @generated + */ + @Override + public void setParentAdapterFactory(ComposedAdapterFactory parentAdapterFactory) { + this.parentAdapterFactory = parentAdapterFactory; + } + + /** + * + * + * @generated + */ + @Override + public boolean isFactoryForType(Object type) { + return supportedTypes.contains(type) || super.isFactoryForType(type); + } + + /** + * This implementation substitutes the factory itself as the key for the adapter. + * + * + * @generated + */ + @Override + public Adapter adapt(Notifier notifier, Object type) { + return super.adapt(notifier, this); + } + + /** + * + * + * @generated + */ + @Override + public Object adapt(Object object, Object type) { + if (isFactoryForType(type)) { + Object adapter = super.adapt(object, type); + if (!(type instanceof Class) || (((Class)type).isInstance(adapter))) { + return adapter; + } + } + + return null; + } + + /** + * + * + * @generated + */ + public List getChildCreationExtenders() { + return childCreationExtenderManager.getChildCreationExtenders(); + } + + /** + * + * + * @generated + */ + public Collection getNewChildDescriptors(Object object, EditingDomain editingDomain) { + return childCreationExtenderManager.getNewChildDescriptors(object, editingDomain); + } + + /** + * + * + * @generated + */ + public ResourceLocator getResourceLocator() { + return childCreationExtenderManager; + } + + /** + * This adds a listener. + * + * + * @generated + */ + @Override + public void addListener(INotifyChangedListener notifyChangedListener) { + changeNotifier.addListener(notifyChangedListener); + } + + /** + * This removes a listener. + * + * + * @generated + */ + @Override + public void removeListener(INotifyChangedListener notifyChangedListener) { + changeNotifier.removeListener(notifyChangedListener); + } + + /** + * This delegates to {@link #changeNotifier} and to {@link #parentAdapterFactory}. + * + * + * @generated + */ + @Override + public void fireNotifyChanged(Notification notification) { + changeNotifier.fireNotifyChanged(notification); + + if (parentAdapterFactory != null) { + parentAdapterFactory.fireNotifyChanged(notification); + } + } + + /** + * This disposes all of the item providers created by this factory. + * + * + * @generated + */ + @Override + public void dispose() { + if (randomMutateModelItemProvider != null) randomMutateModelItemProvider.dispose(); + } + + /** + * A child creation extender for the {@link WorkflowPackage}. + * + * + * @generated + */ + public static class WorkflowChildCreationExtender implements IChildCreationExtender { + /** + * The switch for creating child descriptors specific to each extended class. + * + * + * @generated + */ + protected static class CreationSwitch extends WorkflowSwitch { + /** + * The child descriptors being populated. + * + * + * @generated + */ + protected List newChildDescriptors; + + /** + * The domain in which to create the children. + * + * + * @generated + */ + protected EditingDomain editingDomain; + + /** + * Creates the a switch for populating child descriptors in the given domain. + * + * + * @generated + */ + CreationSwitch(List newChildDescriptors, EditingDomain editingDomain) { + this.newChildDescriptors = newChildDescriptors; + this.editingDomain = editingDomain; + } + /** + * + * + * @generated + */ + @Override + public Object caseWorkflow(Workflow object) { + newChildDescriptors.add + (createChildParameter + (WorkflowPackage.Literals.WORKFLOW__COMPONENTS, + MutatorFactory.eINSTANCE.createRandomMutateModel())); + + return null; + } + + /** + * + * + * @generated + */ + protected CommandParameter createChildParameter(Object feature, Object child) { + return new CommandParameter(null, feature, child); + } + + } + + /** + * + * + * @generated + */ + public Collection getNewChildDescriptors(Object object, EditingDomain editingDomain) { + ArrayList result = new ArrayList(); + new CreationSwitch(result, editingDomain).doSwitch((EObject)object); + return result; + } + + /** + * + * + * @generated + */ + public ResourceLocator getResourceLocator() { + return MutatorEditPlugin.INSTANCE; + } + } + + /** + * A child creation extender for the {@link ComponentsPackage}. + * + * + * @generated + */ + public static class ComponentsChildCreationExtender implements IChildCreationExtender { + /** + * The switch for creating child descriptors specific to each extended class. + * + * + * @generated + */ + protected static class CreationSwitch extends ComponentsSwitch { + /** + * The child descriptors being populated. + * + * + * @generated + */ + protected List newChildDescriptors; + + /** + * The domain in which to create the children. + * + * + * @generated + */ + protected EditingDomain editingDomain; + + /** + * Creates the a switch for populating child descriptors in the given domain. + * + * + * @generated + */ + CreationSwitch(List newChildDescriptors, EditingDomain editingDomain) { + this.newChildDescriptors = newChildDescriptors; + this.editingDomain = editingDomain; + } + /** + * + * + * @generated + */ + @Override + public Object caseModelContainer(ModelContainer object) { + newChildDescriptors.add + (createChildParameter + (ComponentsPackage.Literals.MODEL_CONTAINER__MODELS, + MutatorFactory.eINSTANCE.createRandomMutateModel())); + + return null; + } + + /** + * + * + * @generated + */ + @Override + public Object caseLogicBlock(LogicBlock object) { + newChildDescriptors.add + (createChildParameter + (ComponentsPackage.Literals.LOGIC_BLOCK__COMPONENTS, + MutatorFactory.eINSTANCE.createRandomMutateModel())); + + return null; + } + + /** + * + * + * @generated + */ + protected CommandParameter createChildParameter(Object feature, Object child) { + return new CommandParameter(null, feature, child); + } + + } + + /** + * + * + * @generated + */ + public Collection getNewChildDescriptors(Object object, EditingDomain editingDomain) { + ArrayList result = new ArrayList(); + new CreationSwitch(result, editingDomain).doSwitch((EObject)object); + return result; + } + + /** + * + * + * @generated + */ + public ResourceLocator getResourceLocator() { + return MutatorEditPlugin.INSTANCE; + } + } + +} diff --git a/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/RandomMutateModelItemProvider.java b/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/RandomMutateModelItemProvider.java new file mode 100644 index 0000000..efb7fc6 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.edit/src-gen/mutator/provider/RandomMutateModelItemProvider.java @@ -0,0 +1,150 @@ +/** + */ +package mutator.provider; + + +import de.mdelab.workflow.components.provider.WorkflowComponentItemProvider; + +import java.util.Collection; +import java.util.List; + +import mutator.MutatorPackage; +import mutator.RandomMutateModel; + +import org.eclipse.emf.common.notify.AdapterFactory; +import org.eclipse.emf.common.notify.Notification; + +import org.eclipse.emf.common.util.ResourceLocator; + +import org.eclipse.emf.edit.provider.ComposeableAdapterFactory; +import org.eclipse.emf.edit.provider.IChildCreationExtender; +import org.eclipse.emf.edit.provider.IItemPropertyDescriptor; +import org.eclipse.emf.edit.provider.ItemPropertyDescriptor; +import org.eclipse.emf.edit.provider.ViewerNotification; + +/** + * This is the item provider adapter for a {@link mutator.RandomMutateModel} object. + * + * + * @generated + */ +public class RandomMutateModelItemProvider extends WorkflowComponentItemProvider { + /** + * This constructs an instance from a factory and a notifier. + * + * + * @generated + */ + public RandomMutateModelItemProvider(AdapterFactory adapterFactory) { + super(adapterFactory); + } + + /** + * This returns the property descriptors for the adapted class. + * + * + * @generated + */ + @Override + public List getPropertyDescriptors(Object object) { + if (itemPropertyDescriptors == null) { + super.getPropertyDescriptors(object); + + addModelSlotPropertyDescriptor(object); + } + return itemPropertyDescriptors; + } + + /** + * This adds a property descriptor for the Model Slot feature. + * + * + * @generated + */ + protected void addModelSlotPropertyDescriptor(Object object) { + itemPropertyDescriptors.add + (createItemPropertyDescriptor + (((ComposeableAdapterFactory)adapterFactory).getRootAdapterFactory(), + getResourceLocator(), + getString("_UI_RandomMutateModel_modelSlot_feature"), + getString("_UI_PropertyDescriptor_description", "_UI_RandomMutateModel_modelSlot_feature", "_UI_RandomMutateModel_type"), + MutatorPackage.Literals.RANDOM_MUTATE_MODEL__MODEL_SLOT, + true, + false, + false, + ItemPropertyDescriptor.GENERIC_VALUE_IMAGE, + null, + null)); + } + + /** + * This returns RandomMutateModel.gif. + * + * + * @generated + */ + @Override + public Object getImage(Object object) { + return overlayImage(object, getResourceLocator().getImage("full/obj16/RandomMutateModel")); + } + + /** + * This returns the label text for the adapted class. + * + * + * @generated NOT + */ + @Override + public String getText(Object object) { + RandomMutateModel model = (RandomMutateModel)object; + String label = model.getName(); + return (label == null || label.length() == 0 ? + getString("_UI_RandomMutateModel_type") : + getString("_UI_RandomMutateModel_type") + " " + label) + + " | mutatate " + model.getModelSlot(); + } + + + /** + * This handles model notifications by calling {@link #updateChildren} to update any cached + * children and by creating a viewer notification, which it passes to {@link #fireNotifyChanged}. + * + * + * @generated + */ + @Override + public void notifyChanged(Notification notification) { + updateChildren(notification); + + switch (notification.getFeatureID(RandomMutateModel.class)) { + case MutatorPackage.RANDOM_MUTATE_MODEL__MODEL_SLOT: + fireNotifyChanged(new ViewerNotification(notification, notification.getNotifier(), false, true)); + return; + } + super.notifyChanged(notification); + } + + /** + * This adds {@link org.eclipse.emf.edit.command.CommandParameter}s describing the children + * that can be created under this object. + * + * + * @generated + */ + @Override + protected void collectNewChildDescriptors(Collection newChildDescriptors, Object object) { + super.collectNewChildDescriptors(newChildDescriptors, object); + } + + /** + * Return the resource locator for this item provider's resources. + * + * + * @generated + */ + @Override + public ResourceLocator getResourceLocator() { + return ((IChildCreationExtender)adapterFactory).getResourceLocator(); + } + +} diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/.classpath b/fr.tpt.mem4csd.loss.modelMutation.editor/.classpath new file mode 100644 index 0000000..c3f9cf3 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/.classpath @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/.project b/fr.tpt.mem4csd.loss.modelMutation.editor/.project new file mode 100644 index 0000000..408db0c --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/.project @@ -0,0 +1,28 @@ + + + fr.tpt.mem4csd.loss.modelMutation.editor + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.pde.PluginNature + + diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/.settings/org.eclipse.core.resources.prefs b/fr.tpt.mem4csd.loss.modelMutation.editor/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..99f26c0 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/META-INF/MANIFEST.MF b/fr.tpt.mem4csd.loss.modelMutation.editor/META-INF/MANIFEST.MF new file mode 100644 index 0000000..e06b9e3 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/META-INF/MANIFEST.MF @@ -0,0 +1,20 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %pluginName +Bundle-SymbolicName: fr.tpt.mem4csd.loss.modelMutation.editor;singleton:=true +Automatic-Module-Name: fr.tpt.mem4csd.loss.modelMutation.editor +Bundle-Version: 1.0.0.qualifier +Bundle-ClassPath: . +Bundle-Activator: mutator.presentation.MutatorEditorPlugin$Implementation +Bundle-Vendor: %providerName +Bundle-Localization: plugin +Bundle-RequiredExecutionEnvironment: JavaSE-17 +Export-Package: mutator.presentation +Require-Bundle: org.eclipse.core.runtime, + org.eclipse.core.resources;visibility:=reexport, + fr.tpt.mem4csd.loss.modelMutation.edit;visibility:=reexport, + org.eclipse.emf.ecore.xmi;visibility:=reexport, + org.eclipse.emf.edit.ui;visibility:=reexport, + org.eclipse.ui.ide;visibility:=reexport, + de.mdelab.workflow.edit;visibility:=reexport +Bundle-ActivationPolicy: lazy diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/build.properties b/fr.tpt.mem4csd.loss.modelMutation.editor/build.properties new file mode 100644 index 0000000..5fb0771 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/build.properties @@ -0,0 +1,10 @@ +# + +bin.includes = .,\ + icons/,\ + META-INF/,\ + plugin.xml,\ + plugin.properties +jars.compile.order = . +source.. = src/ +output.. = bin diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/icons/full/obj16/MutatorModelFile.gif b/fr.tpt.mem4csd.loss.modelMutation.editor/icons/full/obj16/MutatorModelFile.gif new file mode 100644 index 0000000000000000000000000000000000000000..fa21681600f5a716d10a3287a8961d762f0bb73a GIT binary patch literal 346 zcmZ?wbhEHb6krfwxXQrL(9jScAHRS9{{Q#qA2@IT$YuD?z`*by$o~Hy%=!;v&zUm^ zC^geKZOa5(AllGxx2DHodAHM|4(GY8uG5>`n#+CbO8u&f1Fme!ytTLH!HNE#zy5sx z`TOgS-=Dtz{_yqp+fTn{VWq*Bve(~S{F&UN~*1@;$NjE=_<8J Ss(@v)l#de=|9lrm25SId|9H{> literal 0 HcmV?d00001 diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/icons/full/wizban/NewMutator.gif b/fr.tpt.mem4csd.loss.modelMutation.editor/icons/full/wizban/NewMutator.gif new file mode 100644 index 0000000000000000000000000000000000000000..0e69a72e1265b1957c0bc7fc77ad4007a56ac983 GIT binary patch literal 2462 zcmd6m`8OMg8ivzyXM`x-QMW_Iv@}JdouR7JmRe(4MyqHo4H;YQs+Mu1f=(=vSkpu- ziM0~DB(|oaBoT&2iAt165kX_=VsyqG_pi9`dCvRecb@N@@3VKbv#|7c23!Yx2JB^b zcXw_5%i8*9276*iAQ=+ONo5tC$AvaG$ct-Z5YEEbVSL?V%RbA*k5-VHd;)<4e< zjYOYg^*`zBQS?NI?wA|q0& zf>Ue4(&{2Io=0ZX$NWxxl--z!Y5on@`Wv<-t(cA~rlU){vP!$LWEO6Z7lqY*__}_4 z9h=xNP}ayP-(!%{!mDSD(7HzH>B*7Fhehe7gXw)2{`v;6m4MyjwWlJ@T1HG|?lP z;2BHu+>wyHb)l%*7&J95yD)=z-)=_IAx843W^x_+_Oe|fSmaNP!e3+50t|&g0 z)U%1yS7rYUY#OZY;8VLt>HQPEytn;-%y3@M^2X-`qNUNP_al?@6EiaD@`hwdvHaoF z((2aW>)GMSd4Xv0&5TSqyZmn9gIKycEs@I=pO!y-Tw2}yu=!DtD zG8{Z2uJGS2qWZ*=! z7}KxI(liPYojG5G%+xZC)^)`BK{EAh5D;$5ykmj!`3_>8A^?Cfg3~D6O$4M&C3<;f zO0d8!zYafC8oU*B%gxcoz{ z;zUgkD1y7OEFPjq(7Zb%&n53b*Vr{Nhb18s^e9RI#@>+JuIvWBPX`zzCz&IWm<)~6 zcD2rh!2+rq9eo6d3w0m|aY^S0o`_*}tE9g`I%g$gart#_)Ms&_Uex;-ub)pGo8@=H zqEoglx9;L8w@;t#efDwXee_ZfUn;v~U8yBm6p)3k~#e$$T z?BbvgA&VY)$D-ndB!9&#`#clFmH}cI$btoce04qJ2sJ@Gf|=+(TAIsL7-~7jYuH(O zD`{LPm!Rj>J;AX)MqE;=zhM>X(6<(KVS*6`U{oak~6~viH(i9Lud9GH?L7av!ACIz%bx zu;=Y-+X!B5PdQ0ZiwUmhB9tn7jedtnM-p(5c>T?=20g41`b^?LsJt6!t#JEd7sB`kOy|bbAgSdiHXkOj&HOL2q@O2QP!(IsHPdyX-3%@I&jrni{!+w zRCKL>vNWwxS$$%P3G+%mKM)$ikNV{&F4T!*0C(T0I$g8UMAbYlh4vo(gU{k?tBLe8 zaf+|gRTTb%mNQP}{3f1|=4RUaCr<=W3NRNp3gogoFmuoCd+l$4p*O()8r;_~k(e~HDI9;+7;kDo`) zUUvEX)ur~FDBJb1;p|i&dBGWL+$Y12n1PTb=UttHggSDeLiKcsrcZ&Yt9Evo^b)6HOBA3rbXN;}pox83&p-VtNMf*y z6!sm@Rddy$e5Y=GMw1M((WYH{a-_!LhS8-{K+NO*gB^@lc0ubX?un;rzF!)n(pQlu zLMm^LTYv&=PXQyd=MUn{>`kJ_RN|!);JK%HK7Nt#X3e7v;dqfr-TBnMtKaAnnmGm+ z*x0-QV zK~IE453PUg2W9>+{{0SI8s)EGUlUaUT;)0FER~}Bh$94!`O~BbE<)zR6}{FzpN-=d4su9f&Du+iP7?RLHE1y XHJvnXUwLhR$ac=`;sH%ffYpBiUZuug literal 0 HcmV?d00001 diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/plugin.properties b/fr.tpt.mem4csd.loss.modelMutation.editor/plugin.properties new file mode 100644 index 0000000..21608a0 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/plugin.properties @@ -0,0 +1,53 @@ +# + +pluginName = fr.tpt.mem4csd.loss.modelMutation Editor +providerName = www.example.org + +_UI_MutatorEditor_menu = &Mutator Editor + +_UI_CreateChild_menu_item = &New Child +_UI_CreateSibling_menu_item = N&ew Sibling + +_UI_ShowPropertiesView_menu_item = Show &Properties View +_UI_RefreshViewer_menu_item = &Refresh + +_UI_SelectionPage_label = Selection +_UI_ParentPage_label = Parent +_UI_ListPage_label = List +_UI_TreePage_label = Tree +_UI_TablePage_label = Table +_UI_TreeWithColumnsPage_label = Tree with Columns +_UI_ObjectColumn_label = Object +_UI_SelfColumn_label = Self + +_UI_NoObjectSelected = Selected Nothing +_UI_SingleObjectSelected = Selected Object: {0} +_UI_MultiObjectSelected = Selected {0} Objects + +_UI_OpenEditorError_label = Open Editor + +_UI_Wizard_category = Example EMF Model Creation Wizards + +_UI_CreateModelError_message = Problems encountered in file "{0}" + +_UI_MutatorModelWizard_label = Mutator Model +_UI_MutatorModelWizard_description = Create a new Mutator model + +_UI_MutatorEditor_label = Mutator Model Editor + +_UI_MutatorEditorFilenameDefaultBase = My +_UI_MutatorEditorFilenameExtensions = mutator + +_UI_Wizard_label = New + +_WARN_FilenameExtension = The file name must end in ''.{0}'' +_WARN_FilenameExtensions = The file name must have one of the following extensions: {0} + +_UI_ModelObject = &Model Object +_UI_XMLEncoding = &XML Encoding +_UI_XMLEncodingChoices = UTF-8 ASCII UTF-16 UTF-16BE UTF-16LE ISO-8859-1 +_UI_Wizard_initial_object_description = Select a model object to create + +_UI_FileConflict_label = File Conflict +_WARN_FileConflict = There are unsaved changes that conflict with changes made outside the editor. Do you wish to discard this editor's changes? + diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/plugin.xml b/fr.tpt.mem4csd.loss.modelMutation.editor/plugin.xml new file mode 100644 index 0000000..1f6d600 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/plugin.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + %_UI_MutatorModelWizard_description + + + + + + + + + + + diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorActionBarContributor.java b/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorActionBarContributor.java new file mode 100644 index 0000000..cfe9603 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorActionBarContributor.java @@ -0,0 +1,426 @@ +/** + */ +package mutator.presentation; + +import java.util.ArrayList; +import java.util.Collection; + +import org.eclipse.emf.common.ui.viewer.IViewerProvider; + +import org.eclipse.emf.edit.domain.EditingDomain; +import org.eclipse.emf.edit.domain.IEditingDomainProvider; + +import org.eclipse.emf.edit.ui.action.ControlAction; +import org.eclipse.emf.edit.ui.action.CreateChildAction; +import org.eclipse.emf.edit.ui.action.CreateSiblingAction; +import org.eclipse.emf.edit.ui.action.EditingDomainActionBarContributor; +import org.eclipse.emf.edit.ui.action.LoadResourceAction; +import org.eclipse.emf.edit.ui.action.ValidateAction; + +import org.eclipse.jface.action.Action; +import org.eclipse.jface.action.ActionContributionItem; +import org.eclipse.jface.action.IAction; +import org.eclipse.jface.action.IContributionItem; +import org.eclipse.jface.action.IContributionManager; +import org.eclipse.jface.action.IMenuListener; +import org.eclipse.jface.action.IMenuManager; +import org.eclipse.jface.action.IToolBarManager; +import org.eclipse.jface.action.MenuManager; +import org.eclipse.jface.action.Separator; +import org.eclipse.jface.action.SubContributionItem; + +import org.eclipse.jface.viewers.ISelection; +import org.eclipse.jface.viewers.ISelectionChangedListener; +import org.eclipse.jface.viewers.ISelectionProvider; +import org.eclipse.jface.viewers.IStructuredSelection; +import org.eclipse.jface.viewers.SelectionChangedEvent; +import org.eclipse.jface.viewers.Viewer; + +import org.eclipse.ui.IEditorPart; +import org.eclipse.ui.PartInitException; + +/** + * This is the action bar contributor for the Mutator model editor. + * + * + * @generated + */ +public class MutatorActionBarContributor + extends EditingDomainActionBarContributor + implements ISelectionChangedListener { + /** + * This keeps track of the active editor. + * + * + * @generated + */ + protected IEditorPart activeEditorPart; + + /** + * This keeps track of the current selection provider. + * + * + * @generated + */ + protected ISelectionProvider selectionProvider; + + /** + * This action opens the Properties view. + * + * + * @generated + */ + protected IAction showPropertiesViewAction = + new Action(MutatorEditorPlugin.INSTANCE.getString("_UI_ShowPropertiesView_menu_item")) { + @Override + public void run() { + try { + getPage().showView("org.eclipse.ui.views.PropertySheet"); + } + catch (PartInitException exception) { + MutatorEditorPlugin.INSTANCE.log(exception); + } + } + }; + + /** + * This action refreshes the viewer of the current editor if the editor + * implements {@link org.eclipse.emf.common.ui.viewer.IViewerProvider}. + * + * + * @generated + */ + protected IAction refreshViewerAction = + new Action(MutatorEditorPlugin.INSTANCE.getString("_UI_RefreshViewer_menu_item")) { + @Override + public boolean isEnabled() { + return activeEditorPart instanceof IViewerProvider; + } + + @Override + public void run() { + if (activeEditorPart instanceof IViewerProvider) { + Viewer viewer = ((IViewerProvider)activeEditorPart).getViewer(); + if (viewer != null) { + viewer.refresh(); + } + } + } + }; + + /** + * This will contain one {@link org.eclipse.emf.edit.ui.action.CreateChildAction} corresponding to each descriptor + * generated for the current selection by the item provider. + * + * + * @generated + */ + protected Collection createChildActions; + + /** + * This is the menu manager into which menu contribution items should be added for CreateChild actions. + * + * + * @generated + */ + protected IMenuManager createChildMenuManager; + + /** + * This will contain one {@link org.eclipse.emf.edit.ui.action.CreateSiblingAction} corresponding to each descriptor + * generated for the current selection by the item provider. + * + * + * @generated + */ + protected Collection createSiblingActions; + + /** + * This is the menu manager into which menu contribution items should be added for CreateSibling actions. + * + * + * @generated + */ + protected IMenuManager createSiblingMenuManager; + + /** + * This creates an instance of the contributor. + * + * + * @generated + */ + public MutatorActionBarContributor() { + super(ADDITIONS_LAST_STYLE); + loadResourceAction = new LoadResourceAction(); + validateAction = new ValidateAction(); + controlAction = new ControlAction(); + } + + /** + * This adds Separators for editor additions to the tool bar. + * + * + * @generated + */ + @Override + public void contributeToToolBar(IToolBarManager toolBarManager) { + super.contributeToToolBar(toolBarManager); + toolBarManager.add(new Separator("mutator-settings")); + toolBarManager.add(new Separator("mutator-additions")); + } + + /** + * This adds to the menu bar a menu and some separators for editor additions, + * as well as the sub-menus for object creation items. + * + * + * @generated + */ + @Override + public void contributeToMenu(IMenuManager menuManager) { + super.contributeToMenu(menuManager); + + IMenuManager submenuManager = new MenuManager(MutatorEditorPlugin.INSTANCE.getString("_UI_MutatorEditor_menu"), "mutatorMenuID"); + menuManager.insertAfter("additions", submenuManager); + submenuManager.add(new Separator("settings")); + submenuManager.add(new Separator("actions")); + submenuManager.add(new Separator("additions")); + submenuManager.add(new Separator("additions-end")); + + // Prepare for CreateChild item addition or removal. + // + createChildMenuManager = new MenuManager(MutatorEditorPlugin.INSTANCE.getString("_UI_CreateChild_menu_item")); + submenuManager.insertBefore("additions", createChildMenuManager); + + // Prepare for CreateSibling item addition or removal. + // + createSiblingMenuManager = new MenuManager(MutatorEditorPlugin.INSTANCE.getString("_UI_CreateSibling_menu_item")); + submenuManager.insertBefore("additions", createSiblingMenuManager); + + // Force an update because Eclipse hides empty menus now. + // + submenuManager.addMenuListener + (new IMenuListener() { + @Override + public void menuAboutToShow(IMenuManager menuManager) { + menuManager.updateAll(true); + } + }); + + addGlobalActions(submenuManager); + } + + /** + * When the active editor changes, this remembers the change and registers with it as a selection provider. + * + * + * @generated + */ + @Override + public void setActiveEditor(IEditorPart part) { + super.setActiveEditor(part); + activeEditorPart = part; + + // Switch to the new selection provider. + // + if (selectionProvider != null) { + selectionProvider.removeSelectionChangedListener(this); + } + if (part == null) { + selectionProvider = null; + } + else { + selectionProvider = part.getSite().getSelectionProvider(); + selectionProvider.addSelectionChangedListener(this); + + // Fake a selection changed event to update the menus. + // + if (selectionProvider.getSelection() != null) { + selectionChanged(new SelectionChangedEvent(selectionProvider, selectionProvider.getSelection())); + } + } + } + + /** + * This implements {@link org.eclipse.jface.viewers.ISelectionChangedListener}, + * handling {@link org.eclipse.jface.viewers.SelectionChangedEvent}s by querying for the children and siblings + * that can be added to the selected object and updating the menus accordingly. + * + * + * @generated + */ + @Override + public void selectionChanged(SelectionChangedEvent event) { + // Remove any menu items for old selection. + // + if (createChildMenuManager != null) { + depopulateManager(createChildMenuManager, createChildActions); + } + if (createSiblingMenuManager != null) { + depopulateManager(createSiblingMenuManager, createSiblingActions); + } + + // Query the new selection for appropriate new child/sibling descriptors + // + Collection newChildDescriptors = null; + Collection newSiblingDescriptors = null; + + ISelection selection = event.getSelection(); + if (selection instanceof IStructuredSelection && ((IStructuredSelection)selection).size() == 1) { + Object object = ((IStructuredSelection)selection).getFirstElement(); + + EditingDomain domain = ((IEditingDomainProvider)activeEditorPart).getEditingDomain(); + + newChildDescriptors = domain.getNewChildDescriptors(object, null); + newSiblingDescriptors = domain.getNewChildDescriptors(null, object); + } + + // Generate actions for selection; populate and redraw the menus. + // + createChildActions = generateCreateChildActions(newChildDescriptors, selection); + createSiblingActions = generateCreateSiblingActions(newSiblingDescriptors, selection); + + if (createChildMenuManager != null) { + populateManager(createChildMenuManager, createChildActions, null); + createChildMenuManager.update(true); + } + if (createSiblingMenuManager != null) { + populateManager(createSiblingMenuManager, createSiblingActions, null); + createSiblingMenuManager.update(true); + } + } + + /** + * This generates a {@link org.eclipse.emf.edit.ui.action.CreateChildAction} for each object in descriptors, + * and returns the collection of these actions. + * + * + * @generated + */ + protected Collection generateCreateChildActions(Collection descriptors, ISelection selection) { + Collection actions = new ArrayList(); + if (descriptors != null) { + for (Object descriptor : descriptors) { + actions.add(new CreateChildAction(activeEditorPart, selection, descriptor)); + } + } + return actions; + } + + /** + * This generates a {@link org.eclipse.emf.edit.ui.action.CreateSiblingAction} for each object in descriptors, + * and returns the collection of these actions. + * + * + * @generated + */ + protected Collection generateCreateSiblingActions(Collection descriptors, ISelection selection) { + Collection actions = new ArrayList(); + if (descriptors != null) { + for (Object descriptor : descriptors) { + actions.add(new CreateSiblingAction(activeEditorPart, selection, descriptor)); + } + } + return actions; + } + + /** + * This populates the specified manager with {@link org.eclipse.jface.action.ActionContributionItem}s + * based on the {@link org.eclipse.jface.action.IAction}s contained in the actions collection, + * by inserting them before the specified contribution item contributionID. + * If contributionID is null, they are simply added. + * + * + * @generated + */ + protected void populateManager(IContributionManager manager, Collection actions, String contributionID) { + if (actions != null) { + for (IAction action : actions) { + if (contributionID != null) { + manager.insertBefore(contributionID, action); + } + else { + manager.add(action); + } + } + } + } + + /** + * This removes from the specified manager all {@link org.eclipse.jface.action.ActionContributionItem}s + * based on the {@link org.eclipse.jface.action.IAction}s contained in the actions collection. + * + * + * @generated + */ + protected void depopulateManager(IContributionManager manager, Collection actions) { + if (actions != null) { + IContributionItem[] items = manager.getItems(); + for (int i = 0; i < items.length; i++) { + // Look into SubContributionItems + // + IContributionItem contributionItem = items[i]; + while (contributionItem instanceof SubContributionItem) { + contributionItem = ((SubContributionItem)contributionItem).getInnerItem(); + } + + // Delete the ActionContributionItems with matching action. + // + if (contributionItem instanceof ActionContributionItem) { + IAction action = ((ActionContributionItem)contributionItem).getAction(); + if (actions.contains(action)) { + manager.remove(contributionItem); + } + } + } + } + } + + /** + * This populates the pop-up menu before it appears. + * + * + * @generated + */ + @Override + public void menuAboutToShow(IMenuManager menuManager) { + super.menuAboutToShow(menuManager); + MenuManager submenuManager = null; + + submenuManager = new MenuManager(MutatorEditorPlugin.INSTANCE.getString("_UI_CreateChild_menu_item")); + populateManager(submenuManager, createChildActions, null); + menuManager.insertBefore("edit", submenuManager); + + submenuManager = new MenuManager(MutatorEditorPlugin.INSTANCE.getString("_UI_CreateSibling_menu_item")); + populateManager(submenuManager, createSiblingActions, null); + menuManager.insertBefore("edit", submenuManager); + } + + /** + * This inserts global actions before the "additions-end" separator. + * + * + * @generated + */ + @Override + protected void addGlobalActions(IMenuManager menuManager) { + menuManager.insertAfter("additions-end", new Separator("ui-actions")); + menuManager.insertAfter("ui-actions", showPropertiesViewAction); + + refreshViewerAction.setEnabled(refreshViewerAction.isEnabled()); + menuManager.insertAfter("ui-actions", refreshViewerAction); + + super.addGlobalActions(menuManager); + } + + /** + * This ensures that a delete action will clean up all references to deleted objects. + * + * + * @generated + */ + @Override + protected boolean removeAllReferencesOnDelete() { + return true; + } + +} diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorEditor.java b/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorEditor.java new file mode 100644 index 0000000..2f9cd21 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorEditor.java @@ -0,0 +1,1857 @@ +/** + */ +package mutator.presentation; + + +import java.io.IOException; +import java.io.InputStream; + +import java.util.ArrayList; +import java.util.Collection; +import java.util.Collections; +import java.util.EventObject; +import java.util.HashMap; +import java.util.Iterator; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + +import org.eclipse.core.resources.IFile; +import org.eclipse.core.resources.IMarker; +import org.eclipse.core.resources.IResource; +import org.eclipse.core.resources.IResourceChangeEvent; +import org.eclipse.core.resources.IResourceChangeListener; +import org.eclipse.core.resources.IResourceDelta; +import org.eclipse.core.resources.IResourceDeltaVisitor; +import org.eclipse.core.resources.ResourcesPlugin; + +import org.eclipse.core.runtime.CoreException; +import org.eclipse.core.runtime.IPath; +import org.eclipse.core.runtime.IProgressMonitor; +import org.eclipse.core.runtime.NullProgressMonitor; + +import org.eclipse.jface.action.IMenuListener; +import org.eclipse.jface.action.IMenuManager; +import org.eclipse.jface.action.IStatusLineManager; +import org.eclipse.jface.action.IToolBarManager; +import org.eclipse.jface.action.MenuManager; +import org.eclipse.jface.action.Separator; + +import org.eclipse.jface.dialogs.MessageDialog; +import org.eclipse.jface.dialogs.ProgressMonitorDialog; + +import org.eclipse.jface.util.LocalSelectionTransfer; + +import org.eclipse.jface.viewers.ColumnWeightData; +import org.eclipse.jface.viewers.ISelection; +import org.eclipse.jface.viewers.ISelectionChangedListener; +import org.eclipse.jface.viewers.ISelectionProvider; +import org.eclipse.jface.viewers.IStructuredSelection; +import org.eclipse.jface.viewers.ListViewer; +import org.eclipse.jface.viewers.SelectionChangedEvent; +import org.eclipse.jface.viewers.StructuredSelection; +import org.eclipse.jface.viewers.StructuredViewer; +import org.eclipse.jface.viewers.TableLayout; +import org.eclipse.jface.viewers.TableViewer; +import org.eclipse.jface.viewers.TreeViewer; +import org.eclipse.jface.viewers.Viewer; + +import org.eclipse.swt.SWT; + +import org.eclipse.swt.custom.CTabFolder; + +import org.eclipse.swt.dnd.DND; +import org.eclipse.swt.dnd.FileTransfer; +import org.eclipse.swt.dnd.Transfer; + +import org.eclipse.swt.events.ControlAdapter; +import org.eclipse.swt.events.ControlEvent; + +import org.eclipse.swt.graphics.Point; +import org.eclipse.swt.graphics.Rectangle; + +import org.eclipse.swt.layout.FillLayout; + +import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.Menu; +import org.eclipse.swt.widgets.Table; +import org.eclipse.swt.widgets.TableColumn; +import org.eclipse.swt.widgets.Tree; +import org.eclipse.swt.widgets.TreeColumn; + +import org.eclipse.ui.IActionBars; +import org.eclipse.ui.IEditorInput; +import org.eclipse.ui.IEditorPart; +import org.eclipse.ui.IEditorSite; +import org.eclipse.ui.IPartListener; +import org.eclipse.ui.IWorkbenchPart; +import org.eclipse.ui.PartInitException; + +import org.eclipse.ui.dialogs.SaveAsDialog; + +import org.eclipse.ui.ide.IGotoMarker; + +import org.eclipse.ui.part.FileEditorInput; +import org.eclipse.ui.part.MultiPageEditorPart; + +import org.eclipse.ui.views.contentoutline.ContentOutline; +import org.eclipse.ui.views.contentoutline.ContentOutlinePage; +import org.eclipse.ui.views.contentoutline.IContentOutlinePage; + +import org.eclipse.ui.views.properties.IPropertySheetPage; +import org.eclipse.ui.views.properties.PropertySheet; +import org.eclipse.ui.views.properties.PropertySheetPage; + +import org.eclipse.emf.common.command.BasicCommandStack; +import org.eclipse.emf.common.command.Command; +import org.eclipse.emf.common.command.CommandStack; +import org.eclipse.emf.common.command.CommandStackListener; + +import org.eclipse.emf.common.notify.AdapterFactory; +import org.eclipse.emf.common.notify.Notification; + +import org.eclipse.emf.common.ui.MarkerHelper; +import org.eclipse.emf.common.ui.ViewerPane; + +import org.eclipse.emf.common.ui.editor.ProblemEditorPart; + +import org.eclipse.emf.common.ui.viewer.IViewerProvider; + +import org.eclipse.emf.common.util.BasicDiagnostic; +import org.eclipse.emf.common.util.Diagnostic; +import org.eclipse.emf.common.util.URI; + + +import org.eclipse.emf.ecore.resource.Resource; +import org.eclipse.emf.ecore.resource.ResourceSet; + +import org.eclipse.emf.ecore.util.EContentAdapter; +import org.eclipse.emf.ecore.util.EcoreUtil; + +import org.eclipse.emf.edit.domain.AdapterFactoryEditingDomain; +import org.eclipse.emf.edit.domain.EditingDomain; +import org.eclipse.emf.edit.domain.IEditingDomainProvider; + +import org.eclipse.emf.edit.provider.AdapterFactoryItemDelegator; +import org.eclipse.emf.edit.provider.ComposedAdapterFactory; +import org.eclipse.emf.edit.provider.ReflectiveItemProviderAdapterFactory; + +import org.eclipse.emf.edit.provider.resource.ResourceItemProviderAdapterFactory; + +import org.eclipse.emf.edit.ui.action.EditingDomainActionBarContributor; + +import org.eclipse.emf.edit.ui.celleditor.AdapterFactoryTreeEditor; + +import org.eclipse.emf.edit.ui.dnd.EditingDomainViewerDropAdapter; +import org.eclipse.emf.edit.ui.dnd.LocalTransfer; +import org.eclipse.emf.edit.ui.dnd.ViewerDragAdapter; + +import org.eclipse.emf.edit.ui.provider.AdapterFactoryContentProvider; +import org.eclipse.emf.edit.ui.provider.AdapterFactoryLabelProvider; +import org.eclipse.emf.edit.ui.provider.UnwrappingSelectionProvider; + +import org.eclipse.emf.edit.ui.util.EditUIMarkerHelper; +import org.eclipse.emf.edit.ui.util.EditUIUtil; + +import org.eclipse.emf.edit.ui.view.ExtendedPropertySheetPage; + +import mutator.provider.MutatorItemProviderAdapterFactory; + +import de.mdelab.workflow.components.provider.ComponentsItemProviderAdapterFactory; + +import de.mdelab.workflow.helpers.provider.HelpersItemProviderAdapterFactory; + +import de.mdelab.workflow.provider.WorkflowItemProviderAdapterFactory; + +import org.eclipse.ui.actions.WorkspaceModifyOperation; + + +/** + * This is an example of a Mutator model editor. + * + * + * @generated + */ +public class MutatorEditor + extends MultiPageEditorPart + implements IEditingDomainProvider, ISelectionProvider, IMenuListener, IViewerProvider, IGotoMarker { + /** + * This keeps track of the editing domain that is used to track all changes to the model. + * + * + * @generated + */ + protected AdapterFactoryEditingDomain editingDomain; + + /** + * This is the one adapter factory used for providing views of the model. + * + * + * @generated + */ + protected ComposedAdapterFactory adapterFactory; + + /** + * This is the content outline page. + * + * + * @generated + */ + protected IContentOutlinePage contentOutlinePage; + + /** + * This is a kludge... + * + * + * @generated + */ + protected IStatusLineManager contentOutlineStatusLineManager; + + /** + * This is the content outline page's viewer. + * + * + * @generated + */ + protected TreeViewer contentOutlineViewer; + + /** + * This is the property sheet page. + * + * + * @generated + */ + protected List propertySheetPages = new ArrayList(); + + /** + * This is the viewer that shadows the selection in the content outline. + * The parent relation must be correctly defined for this to work. + * + * + * @generated + */ + protected TreeViewer selectionViewer; + + /** + * This inverts the roll of parent and child in the content provider and show parents as a tree. + * + * + * @generated + */ + protected TreeViewer parentViewer; + + /** + * This shows how a tree view works. + * + * + * @generated + */ + protected TreeViewer treeViewer; + + /** + * This shows how a list view works. + * A list viewer doesn't support icons. + * + * + * @generated + */ + protected ListViewer listViewer; + + /** + * This shows how a table view works. + * A table can be used as a list with icons. + * + * + * @generated + */ + protected TableViewer tableViewer; + + /** + * This shows how a tree view with columns works. + * + * + * @generated + */ + protected TreeViewer treeViewerWithColumns; + + /** + * This keeps track of the active viewer pane, in the book. + * + * + * @generated + */ + protected ViewerPane currentViewerPane; + + /** + * This keeps track of the active content viewer, which may be either one of the viewers in the pages or the content outline viewer. + * + * + * @generated + */ + protected Viewer currentViewer; + + /** + * This listens to which ever viewer is active. + * + * + * @generated + */ + protected ISelectionChangedListener selectionChangedListener; + + /** + * This keeps track of all the {@link org.eclipse.jface.viewers.ISelectionChangedListener}s that are listening to this editor. + * + * + * @generated + */ + protected Collection selectionChangedListeners = new ArrayList(); + + /** + * This keeps track of the selection of the editor as a whole. + * + * + * @generated + */ + protected ISelection editorSelection = StructuredSelection.EMPTY; + + /** + * The MarkerHelper is responsible for creating workspace resource markers presented + * in Eclipse's Problems View. + * + * + * @generated + */ + protected MarkerHelper markerHelper = new EditUIMarkerHelper(); + + /** + * This listens for when the outline becomes active + * + * + * @generated + */ + protected IPartListener partListener = + new IPartListener() { + @Override + public void partActivated(IWorkbenchPart p) { + if (p instanceof ContentOutline) { + if (((ContentOutline)p).getCurrentPage() == contentOutlinePage) { + getActionBarContributor().setActiveEditor(MutatorEditor.this); + + setCurrentViewer(contentOutlineViewer); + } + } + else if (p instanceof PropertySheet) { + if (propertySheetPages.contains(((PropertySheet)p).getCurrentPage())) { + getActionBarContributor().setActiveEditor(MutatorEditor.this); + handleActivate(); + } + } + else if (p == MutatorEditor.this) { + handleActivate(); + } + } + @Override + public void partBroughtToTop(IWorkbenchPart p) { + // Ignore. + } + @Override + public void partClosed(IWorkbenchPart p) { + // Ignore. + } + @Override + public void partDeactivated(IWorkbenchPart p) { + // Ignore. + } + @Override + public void partOpened(IWorkbenchPart p) { + // Ignore. + } + }; + + /** + * Resources that have been removed since last activation. + * + * + * @generated + */ + protected Collection removedResources = new ArrayList(); + + /** + * Resources that have been changed since last activation. + * + * + * @generated + */ + protected Collection changedResources = new ArrayList(); + + /** + * Resources that have been saved. + * + * + * @generated + */ + protected Collection savedResources = new ArrayList(); + + /** + * Map to store the diagnostic associated with a resource. + * + * + * @generated + */ + protected Map resourceToDiagnosticMap = new LinkedHashMap(); + + /** + * Controls whether the problem indication should be updated. + * + * + * @generated + */ + protected boolean updateProblemIndication = true; + + /** + * Adapter used to update the problem indication when resources are demanded loaded. + * + * + * @generated + */ + protected EContentAdapter problemIndicationAdapter = + new EContentAdapter() { + protected boolean dispatching; + + @Override + public void notifyChanged(Notification notification) { + if (notification.getNotifier() instanceof Resource) { + switch (notification.getFeatureID(Resource.class)) { + case Resource.RESOURCE__IS_LOADED: + case Resource.RESOURCE__ERRORS: + case Resource.RESOURCE__WARNINGS: { + Resource resource = (Resource)notification.getNotifier(); + Diagnostic diagnostic = analyzeResourceProblems(resource, null); + if (diagnostic.getSeverity() != Diagnostic.OK) { + resourceToDiagnosticMap.put(resource, diagnostic); + } + else { + resourceToDiagnosticMap.remove(resource); + } + dispatchUpdateProblemIndication(); + break; + } + } + } + else { + super.notifyChanged(notification); + } + } + + protected void dispatchUpdateProblemIndication() { + if (updateProblemIndication && !dispatching) { + dispatching = true; + getSite().getShell().getDisplay().asyncExec + (new Runnable() { + @Override + public void run() { + dispatching = false; + updateProblemIndication(); + } + }); + } + } + + @Override + protected void setTarget(Resource target) { + basicSetTarget(target); + } + + @Override + protected void unsetTarget(Resource target) { + basicUnsetTarget(target); + resourceToDiagnosticMap.remove(target); + dispatchUpdateProblemIndication(); + } + }; + + /** + * This listens for workspace changes. + * + * + * @generated + */ + protected IResourceChangeListener resourceChangeListener = + new IResourceChangeListener() { + @Override + public void resourceChanged(IResourceChangeEvent event) { + IResourceDelta delta = event.getDelta(); + try { + class ResourceDeltaVisitor implements IResourceDeltaVisitor { + protected ResourceSet resourceSet = editingDomain.getResourceSet(); + protected Collection changedResources = new ArrayList(); + protected Collection removedResources = new ArrayList(); + + @Override + public boolean visit(IResourceDelta delta) { + if (delta.getResource().getType() == IResource.FILE) { + if (delta.getKind() == IResourceDelta.REMOVED || + delta.getKind() == IResourceDelta.CHANGED && delta.getFlags() != IResourceDelta.MARKERS) { + Resource resource = resourceSet.getResource(URI.createPlatformResourceURI(delta.getFullPath().toString(), true), false); + if (resource != null) { + if (delta.getKind() == IResourceDelta.REMOVED) { + removedResources.add(resource); + } + else if (!savedResources.remove(resource)) { + changedResources.add(resource); + } + } + } + return false; + } + + return true; + } + + public Collection getChangedResources() { + return changedResources; + } + + public Collection getRemovedResources() { + return removedResources; + } + } + + final ResourceDeltaVisitor visitor = new ResourceDeltaVisitor(); + delta.accept(visitor); + + if (!visitor.getRemovedResources().isEmpty()) { + getSite().getShell().getDisplay().asyncExec + (new Runnable() { + @Override + public void run() { + removedResources.addAll(visitor.getRemovedResources()); + if (!isDirty()) { + getSite().getPage().closeEditor(MutatorEditor.this, false); + } + } + }); + } + + if (!visitor.getChangedResources().isEmpty()) { + getSite().getShell().getDisplay().asyncExec + (new Runnable() { + @Override + public void run() { + changedResources.addAll(visitor.getChangedResources()); + if (getSite().getPage().getActiveEditor() == MutatorEditor.this) { + handleActivate(); + } + } + }); + } + } + catch (CoreException exception) { + MutatorEditorPlugin.INSTANCE.log(exception); + } + } + }; + + /** + * Handles activation of the editor or it's associated views. + * + * + * @generated + */ + protected void handleActivate() { + // Recompute the read only state. + // + if (editingDomain.getResourceToReadOnlyMap() != null) { + editingDomain.getResourceToReadOnlyMap().clear(); + + // Refresh any actions that may become enabled or disabled. + // + setSelection(getSelection()); + } + + if (!removedResources.isEmpty()) { + if (handleDirtyConflict()) { + getSite().getPage().closeEditor(MutatorEditor.this, false); + } + else { + removedResources.clear(); + changedResources.clear(); + savedResources.clear(); + } + } + else if (!changedResources.isEmpty()) { + changedResources.removeAll(savedResources); + handleChangedResources(); + changedResources.clear(); + savedResources.clear(); + } + } + + /** + * Handles what to do with changed resources on activation. + * + * + * @generated + */ + protected void handleChangedResources() { + if (!changedResources.isEmpty() && (!isDirty() || handleDirtyConflict())) { + ResourceSet resourceSet = editingDomain.getResourceSet(); + if (isDirty()) { + changedResources.addAll(resourceSet.getResources()); + } + editingDomain.getCommandStack().flush(); + + updateProblemIndication = false; + for (Resource resource : changedResources) { + if (resource.isLoaded()) { + resource.unload(); + try { + resource.load(resourceSet.getLoadOptions()); + } + catch (IOException exception) { + if (!resourceToDiagnosticMap.containsKey(resource)) { + resourceToDiagnosticMap.put(resource, analyzeResourceProblems(resource, exception)); + } + } + } + } + + if (AdapterFactoryEditingDomain.isStale(editorSelection)) { + setSelection(StructuredSelection.EMPTY); + } + + updateProblemIndication = true; + updateProblemIndication(); + } + } + + /** + * Updates the problems indication with the information described in the specified diagnostic. + * + * + * @generated + */ + protected void updateProblemIndication() { + if (updateProblemIndication) { + BasicDiagnostic diagnostic = + new BasicDiagnostic + (Diagnostic.OK, + "fr.tpt.mem4csd.loss.modelMutation.editor", + 0, + null, + new Object [] { editingDomain.getResourceSet() }); + for (Diagnostic childDiagnostic : resourceToDiagnosticMap.values()) { + if (childDiagnostic.getSeverity() != Diagnostic.OK) { + diagnostic.add(childDiagnostic); + } + } + + int lastEditorPage = getPageCount() - 1; + if (lastEditorPage >= 0 && getEditor(lastEditorPage) instanceof ProblemEditorPart) { + ((ProblemEditorPart)getEditor(lastEditorPage)).setDiagnostic(diagnostic); + if (diagnostic.getSeverity() != Diagnostic.OK) { + setActivePage(lastEditorPage); + } + } + else if (diagnostic.getSeverity() != Diagnostic.OK) { + ProblemEditorPart problemEditorPart = new ProblemEditorPart(); + problemEditorPart.setDiagnostic(diagnostic); + problemEditorPart.setMarkerHelper(markerHelper); + try { + addPage(++lastEditorPage, problemEditorPart, getEditorInput()); + setPageText(lastEditorPage, problemEditorPart.getPartName()); + setActivePage(lastEditorPage); + showTabs(); + } + catch (PartInitException exception) { + MutatorEditorPlugin.INSTANCE.log(exception); + } + } + + if (markerHelper.hasMarkers(editingDomain.getResourceSet())) { + try { + markerHelper.updateMarkers(diagnostic); + } + catch (CoreException exception) { + MutatorEditorPlugin.INSTANCE.log(exception); + } + } + } + } + + /** + * Shows a dialog that asks if conflicting changes should be discarded. + * + * + * @generated + */ + protected boolean handleDirtyConflict() { + return + MessageDialog.openQuestion + (getSite().getShell(), + getString("_UI_FileConflict_label"), + getString("_WARN_FileConflict")); + } + + /** + * This creates a model editor. + * + * + * @generated + */ + public MutatorEditor() { + super(); + initializeEditingDomain(); + } + + /** + * This sets up the editing domain for the model editor. + * + * + * @generated + */ + protected void initializeEditingDomain() { + // Create an adapter factory that yields item providers. + // + adapterFactory = new ComposedAdapterFactory(ComposedAdapterFactory.Descriptor.Registry.INSTANCE); + + adapterFactory.addAdapterFactory(new ResourceItemProviderAdapterFactory()); + adapterFactory.addAdapterFactory(new MutatorItemProviderAdapterFactory()); + adapterFactory.addAdapterFactory(new WorkflowItemProviderAdapterFactory()); + adapterFactory.addAdapterFactory(new HelpersItemProviderAdapterFactory()); + adapterFactory.addAdapterFactory(new ComponentsItemProviderAdapterFactory()); + adapterFactory.addAdapterFactory(new ReflectiveItemProviderAdapterFactory()); + + // Create the command stack that will notify this editor as commands are executed. + // + BasicCommandStack commandStack = new BasicCommandStack(); + + // Add a listener to set the most recent command's affected objects to be the selection of the viewer with focus. + // + commandStack.addCommandStackListener + (new CommandStackListener() { + @Override + public void commandStackChanged(final EventObject event) { + getContainer().getDisplay().asyncExec + (new Runnable() { + @Override + public void run() { + firePropertyChange(IEditorPart.PROP_DIRTY); + + // Try to select the affected objects. + // + Command mostRecentCommand = ((CommandStack)event.getSource()).getMostRecentCommand(); + if (mostRecentCommand != null) { + setSelectionToViewer(mostRecentCommand.getAffectedObjects()); + } + for (Iterator i = propertySheetPages.iterator(); i.hasNext(); ) { + PropertySheetPage propertySheetPage = i.next(); + if (propertySheetPage.getControl() == null || propertySheetPage.getControl().isDisposed()) { + i.remove(); + } + else { + propertySheetPage.refresh(); + } + } + } + }); + } + }); + + // Create the editing domain with a special command stack. + // + editingDomain = new AdapterFactoryEditingDomain(adapterFactory, commandStack, new HashMap()); + } + + /** + * This is here for the listener to be able to call it. + * + * + * @generated + */ + @Override + protected void firePropertyChange(int action) { + super.firePropertyChange(action); + } + + /** + * This sets the selection into whichever viewer is active. + * + * + * @generated + */ + public void setSelectionToViewer(Collection collection) { + final Collection theSelection = collection; + // Make sure it's okay. + // + if (theSelection != null && !theSelection.isEmpty()) { + Runnable runnable = + new Runnable() { + @Override + public void run() { + // Try to select the items in the current content viewer of the editor. + // + if (currentViewer != null) { + currentViewer.setSelection(new StructuredSelection(theSelection.toArray()), true); + } + } + }; + getSite().getShell().getDisplay().asyncExec(runnable); + } + } + + /** + * This returns the editing domain as required by the {@link IEditingDomainProvider} interface. + * This is important for implementing the static methods of {@link AdapterFactoryEditingDomain} + * and for supporting {@link org.eclipse.emf.edit.ui.action.CommandAction}. + * + * + * @generated + */ + @Override + public EditingDomain getEditingDomain() { + return editingDomain; + } + + /** + * + * + * @generated + */ + public class ReverseAdapterFactoryContentProvider extends AdapterFactoryContentProvider { + /** + * + * + * @generated + */ + public ReverseAdapterFactoryContentProvider(AdapterFactory adapterFactory) { + super(adapterFactory); + } + + /** + * + * + * @generated + */ + @Override + public Object [] getElements(Object object) { + Object parent = super.getParent(object); + return (parent == null ? Collections.EMPTY_SET : Collections.singleton(parent)).toArray(); + } + + /** + * + * + * @generated + */ + @Override + public Object [] getChildren(Object object) { + Object parent = super.getParent(object); + return (parent == null ? Collections.EMPTY_SET : Collections.singleton(parent)).toArray(); + } + + /** + * + * + * @generated + */ + @Override + public boolean hasChildren(Object object) { + Object parent = super.getParent(object); + return parent != null; + } + + /** + * + * + * @generated + */ + @Override + public Object getParent(Object object) { + return null; + } + } + + /** + * + * + * @generated + */ + public void setCurrentViewerPane(ViewerPane viewerPane) { + if (currentViewerPane != viewerPane) { + if (currentViewerPane != null) { + currentViewerPane.showFocus(false); + } + currentViewerPane = viewerPane; + } + setCurrentViewer(currentViewerPane.getViewer()); + } + + /** + * This makes sure that one content viewer, either for the current page or the outline view, if it has focus, + * is the current one. + * + * + * @generated + */ + public void setCurrentViewer(Viewer viewer) { + // If it is changing... + // + if (currentViewer != viewer) { + if (selectionChangedListener == null) { + // Create the listener on demand. + // + selectionChangedListener = + new ISelectionChangedListener() { + // This just notifies those things that are affected by the section. + // + @Override + public void selectionChanged(SelectionChangedEvent selectionChangedEvent) { + setSelection(selectionChangedEvent.getSelection()); + } + }; + } + + // Stop listening to the old one. + // + if (currentViewer != null) { + currentViewer.removeSelectionChangedListener(selectionChangedListener); + } + + // Start listening to the new one. + // + if (viewer != null) { + viewer.addSelectionChangedListener(selectionChangedListener); + } + + // Remember it. + // + currentViewer = viewer; + + // Set the editors selection based on the current viewer's selection. + // + setSelection(currentViewer == null ? StructuredSelection.EMPTY : currentViewer.getSelection()); + } + } + + /** + * This returns the viewer as required by the {@link IViewerProvider} interface. + * + * + * @generated + */ + @Override + public Viewer getViewer() { + return currentViewer; + } + + /** + * This creates a context menu for the viewer and adds a listener as well registering the menu for extension. + * + * + * @generated + */ + protected void createContextMenuFor(StructuredViewer viewer) { + MenuManager contextMenu = new MenuManager("#PopUp"); + contextMenu.add(new Separator("additions")); + contextMenu.setRemoveAllWhenShown(true); + contextMenu.addMenuListener(this); + Menu menu= contextMenu.createContextMenu(viewer.getControl()); + viewer.getControl().setMenu(menu); + getSite().registerContextMenu(contextMenu, new UnwrappingSelectionProvider(viewer)); + + int dndOperations = DND.DROP_COPY | DND.DROP_MOVE | DND.DROP_LINK; + Transfer[] transfers = new Transfer[] { LocalTransfer.getInstance(), LocalSelectionTransfer.getTransfer(), FileTransfer.getInstance() }; + viewer.addDragSupport(dndOperations, transfers, new ViewerDragAdapter(viewer)); + viewer.addDropSupport(dndOperations, transfers, new EditingDomainViewerDropAdapter(editingDomain, viewer)); + } + + /** + * This is the method called to load a resource into the editing domain's resource set based on the editor's input. + * + * + * @generated + */ + public void createModel() { + URI resourceURI = EditUIUtil.getURI(getEditorInput(), editingDomain.getResourceSet().getURIConverter()); + Exception exception = null; + Resource resource = null; + try { + // Load the resource through the editing domain. + // + resource = editingDomain.getResourceSet().getResource(resourceURI, true); + } + catch (Exception e) { + exception = e; + resource = editingDomain.getResourceSet().getResource(resourceURI, false); + } + + Diagnostic diagnostic = analyzeResourceProblems(resource, exception); + if (diagnostic.getSeverity() != Diagnostic.OK) { + resourceToDiagnosticMap.put(resource, analyzeResourceProblems(resource, exception)); + } + editingDomain.getResourceSet().eAdapters().add(problemIndicationAdapter); + } + + /** + * Returns a diagnostic describing the errors and warnings listed in the resource + * and the specified exception (if any). + * + * + * @generated + */ + public Diagnostic analyzeResourceProblems(Resource resource, Exception exception) { + boolean hasErrors = !resource.getErrors().isEmpty(); + if (hasErrors || !resource.getWarnings().isEmpty()) { + BasicDiagnostic basicDiagnostic = + new BasicDiagnostic + (hasErrors ? Diagnostic.ERROR : Diagnostic.WARNING, + "fr.tpt.mem4csd.loss.modelMutation.editor", + 0, + getString("_UI_CreateModelError_message", resource.getURI()), + new Object [] { exception == null ? (Object)resource : exception }); + basicDiagnostic.merge(EcoreUtil.computeDiagnostic(resource, true)); + return basicDiagnostic; + } + else if (exception != null) { + return + new BasicDiagnostic + (Diagnostic.ERROR, + "fr.tpt.mem4csd.loss.modelMutation.editor", + 0, + getString("_UI_CreateModelError_message", resource.getURI()), + new Object[] { exception }); + } + else { + return Diagnostic.OK_INSTANCE; + } + } + + /** + * This is the method used by the framework to install your own controls. + * + * + * @generated + */ + @Override + public void createPages() { + // Creates the model from the editor input + // + createModel(); + + // Only creates the other pages if there is something that can be edited + // + if (!getEditingDomain().getResourceSet().getResources().isEmpty()) { + // Create a page for the selection tree view. + // + { + ViewerPane viewerPane = + new ViewerPane(getSite().getPage(), MutatorEditor.this) { + @Override + public Viewer createViewer(Composite composite) { + Tree tree = new Tree(composite, SWT.MULTI); + TreeViewer newTreeViewer = new TreeViewer(tree); + return newTreeViewer; + } + @Override + public void requestActivation() { + super.requestActivation(); + setCurrentViewerPane(this); + } + }; + viewerPane.createControl(getContainer()); + + selectionViewer = (TreeViewer)viewerPane.getViewer(); + selectionViewer.setContentProvider(new AdapterFactoryContentProvider(adapterFactory)); + selectionViewer.setUseHashlookup(true); + + selectionViewer.setLabelProvider(new AdapterFactoryLabelProvider(adapterFactory)); + selectionViewer.setInput(editingDomain.getResourceSet()); + selectionViewer.setSelection(new StructuredSelection(editingDomain.getResourceSet().getResources().get(0)), true); + viewerPane.setTitle(editingDomain.getResourceSet()); + + new AdapterFactoryTreeEditor(selectionViewer.getTree(), adapterFactory); + + createContextMenuFor(selectionViewer); + int pageIndex = addPage(viewerPane.getControl()); + setPageText(pageIndex, getString("_UI_SelectionPage_label")); + } + + // Create a page for the parent tree view. + // + { + ViewerPane viewerPane = + new ViewerPane(getSite().getPage(), MutatorEditor.this) { + @Override + public Viewer createViewer(Composite composite) { + Tree tree = new Tree(composite, SWT.MULTI); + TreeViewer newTreeViewer = new TreeViewer(tree); + return newTreeViewer; + } + @Override + public void requestActivation() { + super.requestActivation(); + setCurrentViewerPane(this); + } + }; + viewerPane.createControl(getContainer()); + + parentViewer = (TreeViewer)viewerPane.getViewer(); + parentViewer.setAutoExpandLevel(30); + parentViewer.setContentProvider(new ReverseAdapterFactoryContentProvider(adapterFactory)); + parentViewer.setLabelProvider(new AdapterFactoryLabelProvider(adapterFactory)); + + createContextMenuFor(parentViewer); + int pageIndex = addPage(viewerPane.getControl()); + setPageText(pageIndex, getString("_UI_ParentPage_label")); + } + + // This is the page for the list viewer + // + { + ViewerPane viewerPane = + new ViewerPane(getSite().getPage(), MutatorEditor.this) { + @Override + public Viewer createViewer(Composite composite) { + return new ListViewer(composite); + } + @Override + public void requestActivation() { + super.requestActivation(); + setCurrentViewerPane(this); + } + }; + viewerPane.createControl(getContainer()); + listViewer = (ListViewer)viewerPane.getViewer(); + listViewer.setContentProvider(new AdapterFactoryContentProvider(adapterFactory)); + listViewer.setLabelProvider(new AdapterFactoryLabelProvider(adapterFactory)); + + createContextMenuFor(listViewer); + int pageIndex = addPage(viewerPane.getControl()); + setPageText(pageIndex, getString("_UI_ListPage_label")); + } + + // This is the page for the tree viewer + // + { + ViewerPane viewerPane = + new ViewerPane(getSite().getPage(), MutatorEditor.this) { + @Override + public Viewer createViewer(Composite composite) { + return new TreeViewer(composite); + } + @Override + public void requestActivation() { + super.requestActivation(); + setCurrentViewerPane(this); + } + }; + viewerPane.createControl(getContainer()); + treeViewer = (TreeViewer)viewerPane.getViewer(); + treeViewer.setContentProvider(new AdapterFactoryContentProvider(adapterFactory)); + treeViewer.setLabelProvider(new AdapterFactoryLabelProvider(adapterFactory)); + + new AdapterFactoryTreeEditor(treeViewer.getTree(), adapterFactory); + + createContextMenuFor(treeViewer); + int pageIndex = addPage(viewerPane.getControl()); + setPageText(pageIndex, getString("_UI_TreePage_label")); + } + + // This is the page for the table viewer. + // + { + ViewerPane viewerPane = + new ViewerPane(getSite().getPage(), MutatorEditor.this) { + @Override + public Viewer createViewer(Composite composite) { + return new TableViewer(composite); + } + @Override + public void requestActivation() { + super.requestActivation(); + setCurrentViewerPane(this); + } + }; + viewerPane.createControl(getContainer()); + tableViewer = (TableViewer)viewerPane.getViewer(); + + Table table = tableViewer.getTable(); + TableLayout layout = new TableLayout(); + table.setLayout(layout); + table.setHeaderVisible(true); + table.setLinesVisible(true); + + TableColumn objectColumn = new TableColumn(table, SWT.NONE); + layout.addColumnData(new ColumnWeightData(3, 100, true)); + objectColumn.setText(getString("_UI_ObjectColumn_label")); + objectColumn.setResizable(true); + + TableColumn selfColumn = new TableColumn(table, SWT.NONE); + layout.addColumnData(new ColumnWeightData(2, 100, true)); + selfColumn.setText(getString("_UI_SelfColumn_label")); + selfColumn.setResizable(true); + + tableViewer.setColumnProperties(new String [] {"a", "b"}); + tableViewer.setContentProvider(new AdapterFactoryContentProvider(adapterFactory)); + tableViewer.setLabelProvider(new AdapterFactoryLabelProvider(adapterFactory)); + + createContextMenuFor(tableViewer); + int pageIndex = addPage(viewerPane.getControl()); + setPageText(pageIndex, getString("_UI_TablePage_label")); + } + + // This is the page for the table tree viewer. + // + { + ViewerPane viewerPane = + new ViewerPane(getSite().getPage(), MutatorEditor.this) { + @Override + public Viewer createViewer(Composite composite) { + return new TreeViewer(composite); + } + @Override + public void requestActivation() { + super.requestActivation(); + setCurrentViewerPane(this); + } + }; + viewerPane.createControl(getContainer()); + + treeViewerWithColumns = (TreeViewer)viewerPane.getViewer(); + + Tree tree = treeViewerWithColumns.getTree(); + tree.setLayoutData(new FillLayout()); + tree.setHeaderVisible(true); + tree.setLinesVisible(true); + + TreeColumn objectColumn = new TreeColumn(tree, SWT.NONE); + objectColumn.setText(getString("_UI_ObjectColumn_label")); + objectColumn.setResizable(true); + objectColumn.setWidth(250); + + TreeColumn selfColumn = new TreeColumn(tree, SWT.NONE); + selfColumn.setText(getString("_UI_SelfColumn_label")); + selfColumn.setResizable(true); + selfColumn.setWidth(200); + + treeViewerWithColumns.setColumnProperties(new String [] {"a", "b"}); + treeViewerWithColumns.setContentProvider(new AdapterFactoryContentProvider(adapterFactory)); + treeViewerWithColumns.setLabelProvider(new AdapterFactoryLabelProvider(adapterFactory)); + + createContextMenuFor(treeViewerWithColumns); + int pageIndex = addPage(viewerPane.getControl()); + setPageText(pageIndex, getString("_UI_TreeWithColumnsPage_label")); + } + + getSite().getShell().getDisplay().asyncExec + (new Runnable() { + @Override + public void run() { + if (!getContainer().isDisposed()) { + setActivePage(0); + } + } + }); + } + + // Ensures that this editor will only display the page's tab + // area if there are more than one page + // + getContainer().addControlListener + (new ControlAdapter() { + boolean guard = false; + @Override + public void controlResized(ControlEvent event) { + if (!guard) { + guard = true; + hideTabs(); + guard = false; + } + } + }); + + getSite().getShell().getDisplay().asyncExec + (new Runnable() { + @Override + public void run() { + updateProblemIndication(); + } + }); + } + + /** + * If there is just one page in the multi-page editor part, + * this hides the single tab at the bottom. + * + * + * @generated + */ + protected void hideTabs() { + if (getPageCount() <= 1) { + setPageText(0, ""); + if (getContainer() instanceof CTabFolder) { + Point point = getContainer().getSize(); + Rectangle clientArea = getContainer().getClientArea(); + getContainer().setSize(point.x, 2 * point.y - clientArea.height - clientArea.y); + } + } + } + + /** + * If there is more than one page in the multi-page editor part, + * this shows the tabs at the bottom. + * + * + * @generated + */ + protected void showTabs() { + if (getPageCount() > 1) { + setPageText(0, getString("_UI_SelectionPage_label")); + if (getContainer() instanceof CTabFolder) { + Point point = getContainer().getSize(); + Rectangle clientArea = getContainer().getClientArea(); + getContainer().setSize(point.x, clientArea.height + clientArea.y); + } + } + } + + /** + * This is used to track the active viewer. + * + * + * @generated + */ + @Override + protected void pageChange(int pageIndex) { + super.pageChange(pageIndex); + + if (contentOutlinePage != null) { + handleContentOutlineSelection(contentOutlinePage.getSelection()); + } + } + + /** + * This is how the framework determines which interfaces we implement. + * + * + * @generated + */ + @Override + public T getAdapter(Class key) { + if (key.equals(IContentOutlinePage.class)) { + return showOutlineView() ? key.cast(getContentOutlinePage()) : null; + } + else if (key.equals(IPropertySheetPage.class)) { + return key.cast(getPropertySheetPage()); + } + else if (key.equals(IGotoMarker.class)) { + return key.cast(this); + } + else { + return super.getAdapter(key); + } + } + + /** + * This accesses a cached version of the content outliner. + * + * + * @generated + */ + public IContentOutlinePage getContentOutlinePage() { + if (contentOutlinePage == null) { + // The content outline is just a tree. + // + class MyContentOutlinePage extends ContentOutlinePage { + @Override + public void createControl(Composite parent) { + super.createControl(parent); + contentOutlineViewer = getTreeViewer(); + contentOutlineViewer.addSelectionChangedListener(this); + + // Set up the tree viewer. + // + contentOutlineViewer.setUseHashlookup(true); + contentOutlineViewer.setContentProvider(new AdapterFactoryContentProvider(adapterFactory)); + contentOutlineViewer.setLabelProvider(new AdapterFactoryLabelProvider(adapterFactory)); + contentOutlineViewer.setInput(editingDomain.getResourceSet()); + + // Make sure our popups work. + // + createContextMenuFor(contentOutlineViewer); + + if (!editingDomain.getResourceSet().getResources().isEmpty()) { + // Select the root object in the view. + // + contentOutlineViewer.setSelection(new StructuredSelection(editingDomain.getResourceSet().getResources().get(0)), true); + } + } + + @Override + public void makeContributions(IMenuManager menuManager, IToolBarManager toolBarManager, IStatusLineManager statusLineManager) { + super.makeContributions(menuManager, toolBarManager, statusLineManager); + contentOutlineStatusLineManager = statusLineManager; + } + + @Override + public void setActionBars(IActionBars actionBars) { + super.setActionBars(actionBars); + getActionBarContributor().shareGlobalActions(this, actionBars); + } + } + + contentOutlinePage = new MyContentOutlinePage(); + + // Listen to selection so that we can handle it is a special way. + // + contentOutlinePage.addSelectionChangedListener + (new ISelectionChangedListener() { + // This ensures that we handle selections correctly. + // + @Override + public void selectionChanged(SelectionChangedEvent event) { + handleContentOutlineSelection(event.getSelection()); + } + }); + } + + return contentOutlinePage; + } + + /** + * This accesses a cached version of the property sheet. + * + * + * @generated + */ + public IPropertySheetPage getPropertySheetPage() { + PropertySheetPage propertySheetPage = + new ExtendedPropertySheetPage(editingDomain, ExtendedPropertySheetPage.Decoration.NONE, null, 0, false) { + @Override + public void setSelectionToViewer(List selection) { + MutatorEditor.this.setSelectionToViewer(selection); + MutatorEditor.this.setFocus(); + } + + @Override + public void setActionBars(IActionBars actionBars) { + super.setActionBars(actionBars); + getActionBarContributor().shareGlobalActions(this, actionBars); + } + }; + propertySheetPage.setPropertySourceProvider(new AdapterFactoryContentProvider(adapterFactory)); + propertySheetPages.add(propertySheetPage); + + return propertySheetPage; + } + + /** + * This deals with how we want selection in the outliner to affect the other views. + * + * + * @generated + */ + public void handleContentOutlineSelection(ISelection selection) { + if (currentViewerPane != null && !selection.isEmpty() && selection instanceof IStructuredSelection) { + Iterator selectedElements = ((IStructuredSelection)selection).iterator(); + if (selectedElements.hasNext()) { + // Get the first selected element. + // + Object selectedElement = selectedElements.next(); + + // If it's the selection viewer, then we want it to select the same selection as this selection. + // + if (currentViewerPane.getViewer() == selectionViewer) { + ArrayList selectionList = new ArrayList(); + selectionList.add(selectedElement); + while (selectedElements.hasNext()) { + selectionList.add(selectedElements.next()); + } + + // Set the selection to the widget. + // + selectionViewer.setSelection(new StructuredSelection(selectionList)); + } + else { + // Set the input to the widget. + // + if (currentViewerPane.getViewer().getInput() != selectedElement) { + currentViewerPane.getViewer().setInput(selectedElement); + currentViewerPane.setTitle(selectedElement); + } + } + } + } + } + + /** + * This is for implementing {@link IEditorPart} and simply tests the command stack. + * + * + * @generated + */ + @Override + public boolean isDirty() { + return ((BasicCommandStack)editingDomain.getCommandStack()).isSaveNeeded(); + } + + /** + * This is for implementing {@link IEditorPart} and simply saves the model file. + * + * + * @generated + */ + @Override + public void doSave(IProgressMonitor progressMonitor) { + // Save only resources that have actually changed. + // + final Map saveOptions = new HashMap(); + saveOptions.put(Resource.OPTION_SAVE_ONLY_IF_CHANGED, Resource.OPTION_SAVE_ONLY_IF_CHANGED_MEMORY_BUFFER); + saveOptions.put(Resource.OPTION_LINE_DELIMITER, Resource.OPTION_LINE_DELIMITER_UNSPECIFIED); + + // Do the work within an operation because this is a long running activity that modifies the workbench. + // + WorkspaceModifyOperation operation = + new WorkspaceModifyOperation() { + // This is the method that gets invoked when the operation runs. + // + @Override + public void execute(IProgressMonitor monitor) { + // Save the resources to the file system. + // + boolean first = true; + List resources = editingDomain.getResourceSet().getResources(); + for (int i = 0; i < resources.size(); ++i) { + Resource resource = resources.get(i); + if ((first || !resource.getContents().isEmpty() || isPersisted(resource)) && !editingDomain.isReadOnly(resource)) { + try { + long timeStamp = resource.getTimeStamp(); + resource.save(saveOptions); + if (resource.getTimeStamp() != timeStamp) { + savedResources.add(resource); + } + } + catch (Exception exception) { + resourceToDiagnosticMap.put(resource, analyzeResourceProblems(resource, exception)); + } + first = false; + } + } + } + }; + + updateProblemIndication = false; + try { + // This runs the options, and shows progress. + // + new ProgressMonitorDialog(getSite().getShell()).run(true, false, operation); + + // Refresh the necessary state. + // + ((BasicCommandStack)editingDomain.getCommandStack()).saveIsDone(); + firePropertyChange(IEditorPart.PROP_DIRTY); + } + catch (Exception exception) { + // Something went wrong that shouldn't. + // + MutatorEditorPlugin.INSTANCE.log(exception); + } + updateProblemIndication = true; + updateProblemIndication(); + } + + /** + * This returns whether something has been persisted to the URI of the specified resource. + * The implementation uses the URI converter from the editor's resource set to try to open an input stream. + * + * + * @generated + */ + protected boolean isPersisted(Resource resource) { + boolean result = false; + try { + InputStream stream = editingDomain.getResourceSet().getURIConverter().createInputStream(resource.getURI()); + if (stream != null) { + result = true; + stream.close(); + } + } + catch (IOException e) { + // Ignore + } + return result; + } + + /** + * This always returns true because it is not currently supported. + * + * + * @generated + */ + @Override + public boolean isSaveAsAllowed() { + return true; + } + + /** + * This also changes the editor's input. + * + * + * @generated + */ + @Override + public void doSaveAs() { + SaveAsDialog saveAsDialog = new SaveAsDialog(getSite().getShell()); + saveAsDialog.open(); + IPath path = saveAsDialog.getResult(); + if (path != null) { + IFile file = ResourcesPlugin.getWorkspace().getRoot().getFile(path); + if (file != null) { + doSaveAs(URI.createPlatformResourceURI(file.getFullPath().toString(), true), new FileEditorInput(file)); + } + } + } + + /** + * + * + * @generated + */ + protected void doSaveAs(URI uri, IEditorInput editorInput) { + (editingDomain.getResourceSet().getResources().get(0)).setURI(uri); + setInputWithNotify(editorInput); + setPartName(editorInput.getName()); + IProgressMonitor progressMonitor = + getActionBars().getStatusLineManager() != null ? + getActionBars().getStatusLineManager().getProgressMonitor() : + new NullProgressMonitor(); + doSave(progressMonitor); + } + + /** + * + * + * @generated + */ + @Override + public void gotoMarker(IMarker marker) { + List targetObjects = markerHelper.getTargetObjects(editingDomain, marker); + if (!targetObjects.isEmpty()) { + setSelectionToViewer(targetObjects); + } + } + + /** + * This is called during startup. + * + * + * @generated + */ + @Override + public void init(IEditorSite site, IEditorInput editorInput) { + setSite(site); + setInputWithNotify(editorInput); + setPartName(editorInput.getName()); + site.setSelectionProvider(this); + site.getPage().addPartListener(partListener); + ResourcesPlugin.getWorkspace().addResourceChangeListener(resourceChangeListener, IResourceChangeEvent.POST_CHANGE); + } + + /** + * + * + * @generated + */ + @Override + public void setFocus() { + if (currentViewerPane != null) { + currentViewerPane.setFocus(); + } + else { + getControl(getActivePage()).setFocus(); + } + } + + /** + * This implements {@link org.eclipse.jface.viewers.ISelectionProvider}. + * + * + * @generated + */ + @Override + public void addSelectionChangedListener(ISelectionChangedListener listener) { + selectionChangedListeners.add(listener); + } + + /** + * This implements {@link org.eclipse.jface.viewers.ISelectionProvider}. + * + * + * @generated + */ + @Override + public void removeSelectionChangedListener(ISelectionChangedListener listener) { + selectionChangedListeners.remove(listener); + } + + /** + * This implements {@link org.eclipse.jface.viewers.ISelectionProvider} to return this editor's overall selection. + * + * + * @generated + */ + @Override + public ISelection getSelection() { + return editorSelection; + } + + /** + * This implements {@link org.eclipse.jface.viewers.ISelectionProvider} to set this editor's overall selection. + * Calling this result will notify the listeners. + * + * + * @generated + */ + @Override + public void setSelection(ISelection selection) { + editorSelection = selection; + + for (ISelectionChangedListener listener : selectionChangedListeners) { + listener.selectionChanged(new SelectionChangedEvent(this, selection)); + } + setStatusLineManager(selection); + } + + /** + * + * + * @generated + */ + public void setStatusLineManager(ISelection selection) { + IStatusLineManager statusLineManager = currentViewer != null && currentViewer == contentOutlineViewer ? + contentOutlineStatusLineManager : getActionBars().getStatusLineManager(); + + if (statusLineManager != null) { + if (selection instanceof IStructuredSelection) { + Collection collection = ((IStructuredSelection)selection).toList(); + switch (collection.size()) { + case 0: { + statusLineManager.setMessage(getString("_UI_NoObjectSelected")); + break; + } + case 1: { + String text = new AdapterFactoryItemDelegator(adapterFactory).getText(collection.iterator().next()); + statusLineManager.setMessage(getString("_UI_SingleObjectSelected", text)); + break; + } + default: { + statusLineManager.setMessage(getString("_UI_MultiObjectSelected", Integer.toString(collection.size()))); + break; + } + } + } + else { + statusLineManager.setMessage(""); + } + } + } + + /** + * This looks up a string in the plugin's plugin.properties file. + * + * + * @generated + */ + private static String getString(String key) { + return MutatorEditorPlugin.INSTANCE.getString(key); + } + + /** + * This looks up a string in plugin.properties, making a substitution. + * + * + * @generated + */ + private static String getString(String key, Object s1) { + return MutatorEditorPlugin.INSTANCE.getString(key, new Object [] { s1 }); + } + + /** + * This implements {@link org.eclipse.jface.action.IMenuListener} to help fill the context menus with contributions from the Edit menu. + * + * + * @generated + */ + @Override + public void menuAboutToShow(IMenuManager menuManager) { + ((IMenuListener)getEditorSite().getActionBarContributor()).menuAboutToShow(menuManager); + } + + /** + * + * + * @generated + */ + public EditingDomainActionBarContributor getActionBarContributor() { + return (EditingDomainActionBarContributor)getEditorSite().getActionBarContributor(); + } + + /** + * + * + * @generated + */ + public IActionBars getActionBars() { + return getActionBarContributor().getActionBars(); + } + + /** + * + * + * @generated + */ + public AdapterFactory getAdapterFactory() { + return adapterFactory; + } + + /** + * + * + * @generated + */ + @Override + public void dispose() { + updateProblemIndication = false; + + ResourcesPlugin.getWorkspace().removeResourceChangeListener(resourceChangeListener); + + getSite().getPage().removePartListener(partListener); + + adapterFactory.dispose(); + + if (getActionBarContributor().getActiveEditor() == this) { + getActionBarContributor().setActiveEditor(null); + } + + for (PropertySheetPage propertySheetPage : propertySheetPages) { + propertySheetPage.dispose(); + } + + if (contentOutlinePage != null) { + contentOutlinePage.dispose(); + } + + super.dispose(); + } + + /** + * Returns whether the outline view should be presented to the user. + * + * + * @generated + */ + protected boolean showOutlineView() { + return true; + } +} diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorEditorPlugin.java b/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorEditorPlugin.java new file mode 100644 index 0000000..217e7a3 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorEditorPlugin.java @@ -0,0 +1,94 @@ +/** + */ +package mutator.presentation; + +import de.mdelab.workflow.provider.WorkflowEditPlugin; + +import org.eclipse.emf.common.EMFPlugin; + +import org.eclipse.emf.common.ui.EclipseUIPlugin; + +import org.eclipse.emf.common.util.ResourceLocator; + +/** + * This is the central singleton for the Mutator editor plugin. + * + * + * @generated + */ +public final class MutatorEditorPlugin extends EMFPlugin { + /** + * Keep track of the singleton. + * + * + * @generated + */ + public static final MutatorEditorPlugin INSTANCE = new MutatorEditorPlugin(); + + /** + * Keep track of the singleton. + * + * + * @generated + */ + private static Implementation plugin; + + /** + * Create the instance. + * + * + * @generated + */ + public MutatorEditorPlugin() { + super + (new ResourceLocator [] { + WorkflowEditPlugin.INSTANCE, + }); + } + + /** + * Returns the singleton instance of the Eclipse plugin. + * + * + * @return the singleton instance. + * @generated + */ + @Override + public ResourceLocator getPluginResourceLocator() { + return plugin; + } + + /** + * Returns the singleton instance of the Eclipse plugin. + * + * + * @return the singleton instance. + * @generated + */ + public static Implementation getPlugin() { + return plugin; + } + + /** + * The actual implementation of the Eclipse Plugin. + * + * + * @generated + */ + public static class Implementation extends EclipseUIPlugin { + /** + * Creates an instance. + * + * + * @generated + */ + public Implementation() { + super(); + + // Remember the static instance. + // + plugin = this; + } + } + +} diff --git a/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorModelWizard.java b/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorModelWizard.java new file mode 100644 index 0000000..4d6ccfc --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation.editor/src-gen/mutator/presentation/MutatorModelWizard.java @@ -0,0 +1,631 @@ +/** + */ +package mutator.presentation; + + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Collections; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.MissingResourceException; +import java.util.StringTokenizer; + +import org.eclipse.emf.common.CommonPlugin; + +import org.eclipse.emf.common.util.URI; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EClassifier; + +import org.eclipse.emf.ecore.resource.Resource; +import org.eclipse.emf.ecore.resource.ResourceSet; + +import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl; + +import org.eclipse.emf.ecore.EObject; + +import org.eclipse.emf.ecore.xmi.XMLResource; + +import org.eclipse.emf.edit.ui.provider.ExtendedImageRegistry; + +import org.eclipse.core.resources.IContainer; +import org.eclipse.core.resources.IFile; +import org.eclipse.core.resources.IFolder; +import org.eclipse.core.resources.IProject; +import org.eclipse.core.resources.IResource; +import org.eclipse.core.resources.ResourcesPlugin; + +import org.eclipse.core.runtime.IProgressMonitor; + +import org.eclipse.jface.dialogs.MessageDialog; + +import org.eclipse.jface.viewers.IStructuredSelection; + +import org.eclipse.jface.wizard.Wizard; +import org.eclipse.jface.wizard.WizardPage; + +import org.eclipse.swt.SWT; + +import org.eclipse.swt.events.ModifyListener; +import org.eclipse.swt.events.ModifyEvent; + +import org.eclipse.swt.layout.GridData; +import org.eclipse.swt.layout.GridLayout; + +import org.eclipse.swt.widgets.Combo; +import org.eclipse.swt.widgets.Composite; +import org.eclipse.swt.widgets.Label; + +import org.eclipse.ui.INewWizard; +import org.eclipse.ui.IWorkbench; + +import org.eclipse.ui.actions.WorkspaceModifyOperation; + +import org.eclipse.ui.dialogs.WizardNewFileCreationPage; + +import org.eclipse.ui.part.FileEditorInput; +import org.eclipse.ui.part.ISetSelectionTarget; + +import mutator.MutatorFactory; +import mutator.MutatorPackage; +import mutator.provider.MutatorEditPlugin; + + +import org.eclipse.core.runtime.Path; + +import org.eclipse.jface.viewers.ISelection; +import org.eclipse.jface.viewers.StructuredSelection; + +import org.eclipse.ui.IWorkbenchPage; +import org.eclipse.ui.IWorkbenchPart; +import org.eclipse.ui.IWorkbenchWindow; +import org.eclipse.ui.PartInitException; + + +/** + * This is a simple wizard for creating a new model file. + * + * + * @generated + */ +public class MutatorModelWizard extends Wizard implements INewWizard { + /** + * The supported extensions for created files. + * + * + * @generated + */ + public static final List FILE_EXTENSIONS = + Collections.unmodifiableList(Arrays.asList(MutatorEditorPlugin.INSTANCE.getString("_UI_MutatorEditorFilenameExtensions").split("\\s*,\\s*"))); + + /** + * A formatted list of supported file extensions, suitable for display. + * + * + * @generated + */ + public static final String FORMATTED_FILE_EXTENSIONS = + MutatorEditorPlugin.INSTANCE.getString("_UI_MutatorEditorFilenameExtensions").replaceAll("\\s*,\\s*", ", "); + + /** + * This caches an instance of the model package. + * + * + * @generated + */ + protected MutatorPackage mutatorPackage = MutatorPackage.eINSTANCE; + + /** + * This caches an instance of the model factory. + * + * + * @generated + */ + protected MutatorFactory mutatorFactory = mutatorPackage.getMutatorFactory(); + + /** + * This is the file creation page. + * + * + * @generated + */ + protected MutatorModelWizardNewFileCreationPage newFileCreationPage; + + /** + * This is the initial object creation page. + * + * + * @generated + */ + protected MutatorModelWizardInitialObjectCreationPage initialObjectCreationPage; + + /** + * Remember the selection during initialization for populating the default container. + * + * + * @generated + */ + protected IStructuredSelection selection; + + /** + * Remember the workbench during initialization. + * + * + * @generated + */ + protected IWorkbench workbench; + + /** + * Caches the names of the types that can be created as the root object. + * + * + * @generated + */ + protected List initialObjectNames; + + /** + * This just records the information. + * + * + * @generated + */ + @Override + public void init(IWorkbench workbench, IStructuredSelection selection) { + this.workbench = workbench; + this.selection = selection; + setWindowTitle(MutatorEditorPlugin.INSTANCE.getString("_UI_Wizard_label")); + setDefaultPageImageDescriptor(ExtendedImageRegistry.INSTANCE.getImageDescriptor(MutatorEditorPlugin.INSTANCE.getImage("full/wizban/NewMutator"))); + } + + /** + * Returns the names of the types that can be created as the root object. + * + * + * @generated + */ + protected Collection getInitialObjectNames() { + if (initialObjectNames == null) { + initialObjectNames = new ArrayList(); + for (EClassifier eClassifier : mutatorPackage.getEClassifiers()) { + if (eClassifier instanceof EClass) { + EClass eClass = (EClass)eClassifier; + if (!eClass.isAbstract()) { + initialObjectNames.add(eClass.getName()); + } + } + } + Collections.sort(initialObjectNames, CommonPlugin.INSTANCE.getComparator()); + } + return initialObjectNames; + } + + /** + * Create a new model. + * + * + * @generated + */ + protected EObject createInitialModel() { + EClass eClass = (EClass)mutatorPackage.getEClassifier(initialObjectCreationPage.getInitialObjectName()); + EObject rootObject = mutatorFactory.create(eClass); + return rootObject; + } + + /** + * Do the work after everything is specified. + * + * + * @generated + */ + @Override + public boolean performFinish() { + try { + // Remember the file. + // + final IFile modelFile = getModelFile(); + + // Do the work within an operation. + // + WorkspaceModifyOperation operation = + new WorkspaceModifyOperation() { + @Override + protected void execute(IProgressMonitor progressMonitor) { + try { + // Create a resource set + // + ResourceSet resourceSet = new ResourceSetImpl(); + + // Get the URI of the model file. + // + URI fileURI = URI.createPlatformResourceURI(modelFile.getFullPath().toString(), true); + + // Create a resource for this file. + // + Resource resource = resourceSet.createResource(fileURI); + + // Add the initial model object to the contents. + // + EObject rootObject = createInitialModel(); + if (rootObject != null) { + resource.getContents().add(rootObject); + } + + // Save the contents of the resource to the file system. + // + Map options = new HashMap(); + options.put(XMLResource.OPTION_ENCODING, initialObjectCreationPage.getEncoding()); + resource.save(options); + } + catch (Exception exception) { + MutatorEditorPlugin.INSTANCE.log(exception); + } + finally { + progressMonitor.done(); + } + } + }; + + getContainer().run(false, false, operation); + + // Select the new file resource in the current view. + // + IWorkbenchWindow workbenchWindow = workbench.getActiveWorkbenchWindow(); + IWorkbenchPage page = workbenchWindow.getActivePage(); + final IWorkbenchPart activePart = page.getActivePart(); + if (activePart instanceof ISetSelectionTarget) { + final ISelection targetSelection = new StructuredSelection(modelFile); + getShell().getDisplay().asyncExec + (new Runnable() { + @Override + public void run() { + ((ISetSelectionTarget)activePart).selectReveal(targetSelection); + } + }); + } + + // Open an editor on the new file. + // + try { + page.openEditor + (new FileEditorInput(modelFile), + workbench.getEditorRegistry().getDefaultEditor(modelFile.getFullPath().toString()).getId()); + } + catch (PartInitException exception) { + MessageDialog.openError(workbenchWindow.getShell(), MutatorEditorPlugin.INSTANCE.getString("_UI_OpenEditorError_label"), exception.getMessage()); + return false; + } + + return true; + } + catch (Exception exception) { + MutatorEditorPlugin.INSTANCE.log(exception); + return false; + } + } + + /** + * This is the one page of the wizard. + * + * + * @generated + */ + public class MutatorModelWizardNewFileCreationPage extends WizardNewFileCreationPage { + /** + * Pass in the selection. + * + * + * @generated + */ + public MutatorModelWizardNewFileCreationPage(String pageId, IStructuredSelection selection) { + super(pageId, selection); + } + + /** + * The framework calls this to see if the file is correct. + * + * + * @generated + */ + @Override + protected boolean validatePage() { + if (super.validatePage()) { + String extension = new Path(getFileName()).getFileExtension(); + if (extension == null || !FILE_EXTENSIONS.contains(extension)) { + String key = FILE_EXTENSIONS.size() > 1 ? "_WARN_FilenameExtensions" : "_WARN_FilenameExtension"; + setErrorMessage(MutatorEditorPlugin.INSTANCE.getString(key, new Object [] { FORMATTED_FILE_EXTENSIONS })); + return false; + } + return true; + } + return false; + } + + /** + * + * + * @generated + */ + public IFile getModelFile() { + return ResourcesPlugin.getWorkspace().getRoot().getFile(getContainerFullPath().append(getFileName())); + } + } + + /** + * This is the page where the type of object to create is selected. + * + * + * @generated + */ + public class MutatorModelWizardInitialObjectCreationPage extends WizardPage { + /** + * + * + * @generated + */ + protected Combo initialObjectField; + + /** + * @generated + * + * + */ + protected List encodings; + + /** + * + * + * @generated + */ + protected Combo encodingField; + + /** + * Pass in the selection. + * + * + * @generated + */ + public MutatorModelWizardInitialObjectCreationPage(String pageId) { + super(pageId); + } + + /** + * + * + * @generated + */ + @Override + public void createControl(Composite parent) { + Composite composite = new Composite(parent, SWT.NONE); { + GridLayout layout = new GridLayout(); + layout.numColumns = 1; + layout.verticalSpacing = 12; + composite.setLayout(layout); + + GridData data = new GridData(); + data.verticalAlignment = GridData.FILL; + data.grabExcessVerticalSpace = true; + data.horizontalAlignment = GridData.FILL; + composite.setLayoutData(data); + } + + Label containerLabel = new Label(composite, SWT.LEFT); + { + containerLabel.setText(MutatorEditorPlugin.INSTANCE.getString("_UI_ModelObject")); + + GridData data = new GridData(); + data.horizontalAlignment = GridData.FILL; + containerLabel.setLayoutData(data); + } + + initialObjectField = new Combo(composite, SWT.BORDER); + { + GridData data = new GridData(); + data.horizontalAlignment = GridData.FILL; + data.grabExcessHorizontalSpace = true; + initialObjectField.setLayoutData(data); + } + + for (String objectName : getInitialObjectNames()) { + initialObjectField.add(getLabel(objectName)); + } + + if (initialObjectField.getItemCount() == 1) { + initialObjectField.select(0); + } + initialObjectField.addModifyListener(validator); + + Label encodingLabel = new Label(composite, SWT.LEFT); + { + encodingLabel.setText(MutatorEditorPlugin.INSTANCE.getString("_UI_XMLEncoding")); + + GridData data = new GridData(); + data.horizontalAlignment = GridData.FILL; + encodingLabel.setLayoutData(data); + } + encodingField = new Combo(composite, SWT.BORDER); + { + GridData data = new GridData(); + data.horizontalAlignment = GridData.FILL; + data.grabExcessHorizontalSpace = true; + encodingField.setLayoutData(data); + } + + for (String encoding : getEncodings()) { + encodingField.add(encoding); + } + + encodingField.select(0); + encodingField.addModifyListener(validator); + + setPageComplete(validatePage()); + setControl(composite); + } + + /** + * + * + * @generated + */ + protected ModifyListener validator = + new ModifyListener() { + @Override + public void modifyText(ModifyEvent e) { + setPageComplete(validatePage()); + } + }; + + /** + * + * + * @generated + */ + protected boolean validatePage() { + return getInitialObjectName() != null && getEncodings().contains(encodingField.getText()); + } + + /** + * + * + * @generated + */ + @Override + public void setVisible(boolean visible) { + super.setVisible(visible); + if (visible) { + if (initialObjectField.getItemCount() == 1) { + initialObjectField.clearSelection(); + encodingField.setFocus(); + } + else { + encodingField.clearSelection(); + initialObjectField.setFocus(); + } + } + } + + /** + * + * + * @generated + */ + public String getInitialObjectName() { + String label = initialObjectField.getText(); + + for (String name : getInitialObjectNames()) { + if (getLabel(name).equals(label)) { + return name; + } + } + return null; + } + + /** + * + * + * @generated + */ + public String getEncoding() { + return encodingField.getText(); + } + + /** + * Returns the label for the specified type name. + * + * + * @generated + */ + protected String getLabel(String typeName) { + try { + return MutatorEditPlugin.INSTANCE.getString("_UI_" + typeName + "_type"); + } + catch(MissingResourceException mre) { + MutatorEditorPlugin.INSTANCE.log(mre); + } + return typeName; + } + + /** + * + * + * @generated + */ + protected Collection getEncodings() { + if (encodings == null) { + encodings = new ArrayList(); + for (StringTokenizer stringTokenizer = new StringTokenizer(MutatorEditorPlugin.INSTANCE.getString("_UI_XMLEncodingChoices")); stringTokenizer.hasMoreTokens(); ) { + encodings.add(stringTokenizer.nextToken()); + } + } + return encodings; + } + } + + /** + * The framework calls this to create the contents of the wizard. + * + * + * @generated + */ + @Override + public void addPages() { + // Create a page, set the title, and the initial model file name. + // + newFileCreationPage = new MutatorModelWizardNewFileCreationPage("Whatever", selection); + newFileCreationPage.setTitle(MutatorEditorPlugin.INSTANCE.getString("_UI_MutatorModelWizard_label")); + newFileCreationPage.setDescription(MutatorEditorPlugin.INSTANCE.getString("_UI_MutatorModelWizard_description")); + newFileCreationPage.setFileName(MutatorEditorPlugin.INSTANCE.getString("_UI_MutatorEditorFilenameDefaultBase") + "." + FILE_EXTENSIONS.get(0)); + addPage(newFileCreationPage); + + // Try and get the resource selection to determine a current directory for the file dialog. + // + if (selection != null && !selection.isEmpty()) { + // Get the resource... + // + Object selectedElement = selection.iterator().next(); + if (selectedElement instanceof IResource) { + // Get the resource parent, if its a file. + // + IResource selectedResource = (IResource)selectedElement; + if (selectedResource.getType() == IResource.FILE) { + selectedResource = selectedResource.getParent(); + } + + // This gives us a directory... + // + if (selectedResource instanceof IFolder || selectedResource instanceof IProject) { + // Set this for the container. + // + newFileCreationPage.setContainerFullPath(selectedResource.getFullPath()); + + // Make up a unique new name here. + // + String defaultModelBaseFilename = MutatorEditorPlugin.INSTANCE.getString("_UI_MutatorEditorFilenameDefaultBase"); + String defaultModelFilenameExtension = FILE_EXTENSIONS.get(0); + String modelFilename = defaultModelBaseFilename + "." + defaultModelFilenameExtension; + for (int i = 1; ((IContainer)selectedResource).findMember(modelFilename) != null; ++i) { + modelFilename = defaultModelBaseFilename + i + "." + defaultModelFilenameExtension; + } + newFileCreationPage.setFileName(modelFilename); + } + } + } + initialObjectCreationPage = new MutatorModelWizardInitialObjectCreationPage("Whatever2"); + initialObjectCreationPage.setTitle(MutatorEditorPlugin.INSTANCE.getString("_UI_MutatorModelWizard_label")); + initialObjectCreationPage.setDescription(MutatorEditorPlugin.INSTANCE.getString("_UI_Wizard_initial_object_description")); + addPage(initialObjectCreationPage); + } + + /** + * Get the file from the page. + * + * + * @generated + */ + public IFile getModelFile() { + return newFileCreationPage.getModelFile(); + } + +} diff --git a/fr.tpt.mem4csd.loss.modelMutation/.classpath b/fr.tpt.mem4csd.loss.modelMutation/.classpath new file mode 100644 index 0000000..c3f9cf3 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/.classpath @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/fr.tpt.mem4csd.loss.modelMutation/.project b/fr.tpt.mem4csd.loss.modelMutation/.project new file mode 100644 index 0000000..71c027e --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/.project @@ -0,0 +1,28 @@ + + + fr.tpt.mem4csd.loss.modelMutation + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.pde.ManifestBuilder + + + + + org.eclipse.pde.SchemaBuilder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.pde.PluginNature + + diff --git a/fr.tpt.mem4csd.loss.modelMutation/.settings/org.eclipse.core.resources.prefs b/fr.tpt.mem4csd.loss.modelMutation/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..99f26c0 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/fr.tpt.mem4csd.loss.modelMutation/META-INF/MANIFEST.MF b/fr.tpt.mem4csd.loss.modelMutation/META-INF/MANIFEST.MF new file mode 100644 index 0000000..bd3c053 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/META-INF/MANIFEST.MF @@ -0,0 +1,17 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: %pluginName +Bundle-SymbolicName: fr.tpt.mem4csd.loss.modelMutation;singleton:=true +Automatic-Module-Name: fr.tpt.mem4csd.loss.modelMutation +Bundle-Version: 0.1.0.qualifier +Bundle-ClassPath: . +Bundle-Vendor: %providerName +Bundle-Localization: plugin +Bundle-RequiredExecutionEnvironment: JavaSE-17 +Export-Package: mutator, + mutator.impl, + mutator.util +Require-Bundle: org.eclipse.core.runtime, + org.eclipse.emf.ecore;visibility:=reexport, + de.mdelab.workflow;visibility:=reexport +Bundle-ActivationPolicy: lazy diff --git a/fr.tpt.mem4csd.loss.modelMutation/build.properties b/fr.tpt.mem4csd.loss.modelMutation/build.properties new file mode 100644 index 0000000..4465407 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/build.properties @@ -0,0 +1,10 @@ +# + +bin.includes = .,\ + model/,\ + META-INF/,\ + plugin.xml,\ + plugin.properties +jars.compile.order = . +source.. = src/ +output.. = bin/ diff --git a/fr.tpt.mem4csd.loss.modelMutation/model/Mutator.ecore b/fr.tpt.mem4csd.loss.modelMutation/model/Mutator.ecore new file mode 100644 index 0000000..b6a5d17 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/model/Mutator.ecore @@ -0,0 +1,9 @@ + + + + + + diff --git a/fr.tpt.mem4csd.loss.modelMutation/model/Mutator.genmodel b/fr.tpt.mem4csd.loss.modelMutation/model/Mutator.genmodel new file mode 100644 index 0000000..eb9048a --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/model/Mutator.genmodel @@ -0,0 +1,16 @@ + + + Mutator.ecore + + + + + + diff --git a/fr.tpt.mem4csd.loss.modelMutation/plugin.properties b/fr.tpt.mem4csd.loss.modelMutation/plugin.properties new file mode 100644 index 0000000..8eb9194 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/plugin.properties @@ -0,0 +1,4 @@ +# + +pluginName = fr.tpt.mem4csd.loss.modelMutation +providerName = www.example.org diff --git a/fr.tpt.mem4csd.loss.modelMutation/plugin.xml b/fr.tpt.mem4csd.loss.modelMutation/plugin.xml new file mode 100644 index 0000000..7ea4929 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/plugin.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/MutatorFactory.java b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/MutatorFactory.java new file mode 100644 index 0000000..edd1fd0 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/MutatorFactory.java @@ -0,0 +1,42 @@ +/** + */ +package mutator; + +import org.eclipse.emf.ecore.EFactory; + +/** + * + * The Factory for the model. + * It provides a create method for each non-abstract class of the model. + * + * @see mutator.MutatorPackage + * @generated + */ +public interface MutatorFactory extends EFactory { + /** + * The singleton instance of the factory. + * + * + * @generated + */ + MutatorFactory eINSTANCE = mutator.impl.MutatorFactoryImpl.init(); + + /** + * Returns a new object of class 'Random Mutate Model'. + * + * + * @return a new object of class 'Random Mutate Model'. + * @generated + */ + RandomMutateModel createRandomMutateModel(); + + /** + * Returns the package supported by this factory. + * + * + * @return the package supported by this factory. + * @generated + */ + MutatorPackage getMutatorPackage(); + +} //MutatorFactory diff --git a/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/MutatorPackage.java b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/MutatorPackage.java new file mode 100644 index 0000000..a65145a --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/MutatorPackage.java @@ -0,0 +1,227 @@ +/** + */ +package mutator; + +import de.mdelab.workflow.components.ComponentsPackage; + +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EPackage; + +/** + * + * The Package for the model. + * It contains accessors for the meta objects to represent + *
    + *
  • each class,
  • + *
  • each feature of each class,
  • + *
  • each operation of each class,
  • + *
  • each enum,
  • + *
  • and each data type
  • + *
+ * + * @see mutator.MutatorFactory + * @model kind="package" + * @generated + */ +public interface MutatorPackage extends EPackage { + /** + * The package name. + * + * + * @generated + */ + String eNAME = "mutator"; + + /** + * The package namespace URI. + * + * + * @generated + */ + String eNS_URI = "http://mem4csd.telecom-paris.fr/loss/mutator"; + + /** + * The package namespace name. + * + * + * @generated + */ + String eNS_PREFIX = "mutator"; + + /** + * The singleton instance of the package. + * + * + * @generated + */ + MutatorPackage eINSTANCE = mutator.impl.MutatorPackageImpl.init(); + + /** + * The meta object id for the '{@link mutator.impl.RandomMutateModelImpl Random Mutate Model}' class. + * + * + * @see mutator.impl.RandomMutateModelImpl + * @see mutator.impl.MutatorPackageImpl#getRandomMutateModel() + * @generated + */ + int RANDOM_MUTATE_MODEL = 0; + + /** + * The feature id for the 'Name' attribute. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL__NAME = ComponentsPackage.WORKFLOW_COMPONENT__NAME; + + /** + * The feature id for the 'Description' attribute. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL__DESCRIPTION = ComponentsPackage.WORKFLOW_COMPONENT__DESCRIPTION; + + /** + * The feature id for the 'Enabled' attribute. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL__ENABLED = ComponentsPackage.WORKFLOW_COMPONENT__ENABLED; + + /** + * The feature id for the 'Model Slot' attribute. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL__MODEL_SLOT = ComponentsPackage.WORKFLOW_COMPONENT_FEATURE_COUNT + 0; + + /** + * The number of structural features of the 'Random Mutate Model' class. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL_FEATURE_COUNT = ComponentsPackage.WORKFLOW_COMPONENT_FEATURE_COUNT + 1; + + /** + * The operation id for the 'Check Configuration' operation. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL___CHECK_CONFIGURATION__WORKFLOWEXECUTIONCONTEXT = ComponentsPackage.WORKFLOW_COMPONENT___CHECK_CONFIGURATION__WORKFLOWEXECUTIONCONTEXT; + + /** + * The operation id for the 'Execute' operation. + * + * + * @deprecated See {@link de.mdelab.workflow.components.WorkflowComponent#execute(de.mdelab.workflow.WorkflowExecutionContext) model documentation} for details. + * @generated + * @ordered + */ + @Deprecated + int RANDOM_MUTATE_MODEL___EXECUTE__WORKFLOWEXECUTIONCONTEXT = ComponentsPackage.WORKFLOW_COMPONENT___EXECUTE__WORKFLOWEXECUTIONCONTEXT; + + /** + * The operation id for the 'Execute' operation. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL___EXECUTE__WORKFLOWEXECUTIONCONTEXT_IPROGRESSMONITOR = ComponentsPackage.WORKFLOW_COMPONENT___EXECUTE__WORKFLOWEXECUTIONCONTEXT_IPROGRESSMONITOR; + + /** + * The operation id for the 'Check Canceled' operation. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL___CHECK_CANCELED__IPROGRESSMONITOR = ComponentsPackage.WORKFLOW_COMPONENT___CHECK_CANCELED__IPROGRESSMONITOR; + + /** + * The number of operations of the 'Random Mutate Model' class. + * + * + * @generated + * @ordered + */ + int RANDOM_MUTATE_MODEL_OPERATION_COUNT = ComponentsPackage.WORKFLOW_COMPONENT_OPERATION_COUNT + 0; + + + /** + * Returns the meta object for class '{@link mutator.RandomMutateModel Random Mutate Model}'. + * + * + * @return the meta object for class 'Random Mutate Model'. + * @see mutator.RandomMutateModel + * @generated + */ + EClass getRandomMutateModel(); + + /** + * Returns the meta object for the attribute '{@link mutator.RandomMutateModel#getModelSlot Model Slot}'. + * + * + * @return the meta object for the attribute 'Model Slot'. + * @see mutator.RandomMutateModel#getModelSlot() + * @see #getRandomMutateModel() + * @generated + */ + EAttribute getRandomMutateModel_ModelSlot(); + + /** + * Returns the factory that creates the instances of the model. + * + * + * @return the factory that creates the instances of the model. + * @generated + */ + MutatorFactory getMutatorFactory(); + + /** + * + * Defines literals for the meta objects that represent + *
    + *
  • each class,
  • + *
  • each feature of each class,
  • + *
  • each operation of each class,
  • + *
  • each enum,
  • + *
  • and each data type
  • + *
+ * + * @generated + */ + interface Literals { + /** + * The meta object literal for the '{@link mutator.impl.RandomMutateModelImpl Random Mutate Model}' class. + * + * + * @see mutator.impl.RandomMutateModelImpl + * @see mutator.impl.MutatorPackageImpl#getRandomMutateModel() + * @generated + */ + EClass RANDOM_MUTATE_MODEL = eINSTANCE.getRandomMutateModel(); + + /** + * The meta object literal for the 'Model Slot' attribute feature. + * + * + * @generated + */ + EAttribute RANDOM_MUTATE_MODEL__MODEL_SLOT = eINSTANCE.getRandomMutateModel_ModelSlot(); + + } + +} //MutatorPackage diff --git a/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/RandomMutateModel.java b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/RandomMutateModel.java new file mode 100644 index 0000000..bd8c556 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/RandomMutateModel.java @@ -0,0 +1,46 @@ +/** + */ +package mutator; + +import de.mdelab.workflow.components.WorkflowComponent; + +/** + * + * A representation of the model object 'Random Mutate Model'. + * + * + *

+ * The following features are supported: + *

+ *
    + *
  • {@link mutator.RandomMutateModel#getModelSlot Model Slot}
  • + *
+ * + * @see mutator.MutatorPackage#getRandomMutateModel() + * @model + * @generated + */ +public interface RandomMutateModel extends WorkflowComponent { + /** + * Returns the value of the 'Model Slot' attribute. + * + * + * @return the value of the 'Model Slot' attribute. + * @see #setModelSlot(String) + * @see mutator.MutatorPackage#getRandomMutateModel_ModelSlot() + * @model required="true" + * @generated + */ + String getModelSlot(); + + /** + * Sets the value of the '{@link mutator.RandomMutateModel#getModelSlot Model Slot}' attribute. + * + * + * @param value the new value of the 'Model Slot' attribute. + * @see #getModelSlot() + * @generated + */ + void setModelSlot(String value); + +} // RandomMutateModel diff --git a/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/MutatorFactoryImpl.java b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/MutatorFactoryImpl.java new file mode 100644 index 0000000..d31ec3d --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/MutatorFactoryImpl.java @@ -0,0 +1,97 @@ +/** + */ +package mutator.impl; + +import mutator.*; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EPackage; + +import org.eclipse.emf.ecore.impl.EFactoryImpl; + +import org.eclipse.emf.ecore.plugin.EcorePlugin; + +/** + * + * An implementation of the model Factory. + * + * @generated + */ +public class MutatorFactoryImpl extends EFactoryImpl implements MutatorFactory { + /** + * Creates the default factory implementation. + * + * + * @generated + */ + public static MutatorFactory init() { + try { + MutatorFactory theMutatorFactory = (MutatorFactory)EPackage.Registry.INSTANCE.getEFactory(MutatorPackage.eNS_URI); + if (theMutatorFactory != null) { + return theMutatorFactory; + } + } + catch (Exception exception) { + EcorePlugin.INSTANCE.log(exception); + } + return new MutatorFactoryImpl(); + } + + /** + * Creates an instance of the factory. + * + * + * @generated + */ + public MutatorFactoryImpl() { + super(); + } + + /** + * + * + * @generated + */ + @Override + public EObject create(EClass eClass) { + switch (eClass.getClassifierID()) { + case MutatorPackage.RANDOM_MUTATE_MODEL: return createRandomMutateModel(); + default: + throw new IllegalArgumentException("The class '" + eClass.getName() + "' is not a valid classifier"); + } + } + + /** + * + * + * @generated + */ + @Override + public RandomMutateModel createRandomMutateModel() { + RandomMutateModelImpl randomMutateModel = new RandomMutateModelImpl(); + return randomMutateModel; + } + + /** + * + * + * @generated + */ + @Override + public MutatorPackage getMutatorPackage() { + return (MutatorPackage)getEPackage(); + } + + /** + * + * + * @deprecated + * @generated + */ + @Deprecated + public static MutatorPackage getPackage() { + return MutatorPackage.eINSTANCE; + } + +} //MutatorFactoryImpl diff --git a/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/MutatorPackageImpl.java b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/MutatorPackageImpl.java new file mode 100644 index 0000000..9a7e26c --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/MutatorPackageImpl.java @@ -0,0 +1,194 @@ +/** + */ +package mutator.impl; + +import de.mdelab.workflow.WorkflowPackage; + +import de.mdelab.workflow.components.ComponentsPackage; + +import de.mdelab.workflow.helpers.HelpersPackage; + +import mutator.MutatorFactory; +import mutator.MutatorPackage; +import mutator.RandomMutateModel; + +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EPackage; + +import org.eclipse.emf.ecore.impl.EPackageImpl; + +/** + * + * An implementation of the model Package. + * + * @generated + */ +public class MutatorPackageImpl extends EPackageImpl implements MutatorPackage { + /** + * + * + * @generated + */ + private EClass randomMutateModelEClass = null; + + /** + * Creates an instance of the model Package, registered with + * {@link org.eclipse.emf.ecore.EPackage.Registry EPackage.Registry} by the package + * package URI value. + *

Note: the correct way to create the package is via the static + * factory method {@link #init init()}, which also performs + * initialization of the package, or returns the registered package, + * if one already exists. + * + * + * @see org.eclipse.emf.ecore.EPackage.Registry + * @see mutator.MutatorPackage#eNS_URI + * @see #init() + * @generated + */ + private MutatorPackageImpl() { + super(eNS_URI, MutatorFactory.eINSTANCE); + } + /** + * + * + * @generated + */ + private static boolean isInited = false; + + /** + * Creates, registers, and initializes the Package for this model, and for any others upon which it depends. + * + *

This method is used to initialize {@link MutatorPackage#eINSTANCE} when that field is accessed. + * Clients should not invoke it directly. Instead, they should simply access that field to obtain the package. + * + * + * @see #eNS_URI + * @see #createPackageContents() + * @see #initializePackageContents() + * @generated + */ + public static MutatorPackage init() { + if (isInited) return (MutatorPackage)EPackage.Registry.INSTANCE.getEPackage(MutatorPackage.eNS_URI); + + // Obtain or create and register package + Object registeredMutatorPackage = EPackage.Registry.INSTANCE.get(eNS_URI); + MutatorPackageImpl theMutatorPackage = registeredMutatorPackage instanceof MutatorPackageImpl ? (MutatorPackageImpl)registeredMutatorPackage : new MutatorPackageImpl(); + + isInited = true; + + // Initialize simple dependencies + WorkflowPackage.eINSTANCE.eClass(); + HelpersPackage.eINSTANCE.eClass(); + ComponentsPackage.eINSTANCE.eClass(); + + // Create package meta-data objects + theMutatorPackage.createPackageContents(); + + // Initialize created meta-data + theMutatorPackage.initializePackageContents(); + + // Mark meta-data to indicate it can't be changed + theMutatorPackage.freeze(); + + // Update the registry and return the package + EPackage.Registry.INSTANCE.put(MutatorPackage.eNS_URI, theMutatorPackage); + return theMutatorPackage; + } + + /** + * + * + * @generated + */ + @Override + public EClass getRandomMutateModel() { + return randomMutateModelEClass; + } + + /** + * + * + * @generated + */ + @Override + public EAttribute getRandomMutateModel_ModelSlot() { + return (EAttribute)randomMutateModelEClass.getEStructuralFeatures().get(0); + } + + /** + * + * + * @generated + */ + @Override + public MutatorFactory getMutatorFactory() { + return (MutatorFactory)getEFactoryInstance(); + } + + /** + * + * + * @generated + */ + private boolean isCreated = false; + + /** + * Creates the meta-model objects for the package. This method is + * guarded to have no affect on any invocation but its first. + * + * + * @generated + */ + public void createPackageContents() { + if (isCreated) return; + isCreated = true; + + // Create classes and their features + randomMutateModelEClass = createEClass(RANDOM_MUTATE_MODEL); + createEAttribute(randomMutateModelEClass, RANDOM_MUTATE_MODEL__MODEL_SLOT); + } + + /** + * + * + * @generated + */ + private boolean isInitialized = false; + + /** + * Complete the initialization of the package and its meta-model. This + * method is guarded to have no affect on any invocation but its first. + * + * + * @generated + */ + public void initializePackageContents() { + if (isInitialized) return; + isInitialized = true; + + // Initialize package + setName(eNAME); + setNsPrefix(eNS_PREFIX); + setNsURI(eNS_URI); + + // Obtain other dependent packages + ComponentsPackage theComponentsPackage = (ComponentsPackage)EPackage.Registry.INSTANCE.getEPackage(ComponentsPackage.eNS_URI); + + // Create type parameters + + // Set bounds for type parameters + + // Add supertypes to classes + randomMutateModelEClass.getESuperTypes().add(theComponentsPackage.getWorkflowComponent()); + + // Initialize classes, features, and operations; add parameters + initEClass(randomMutateModelEClass, RandomMutateModel.class, "RandomMutateModel", !IS_ABSTRACT, !IS_INTERFACE, IS_GENERATED_INSTANCE_CLASS); + initEAttribute(getRandomMutateModel_ModelSlot(), ecorePackage.getEString(), "modelSlot", null, 1, 1, RandomMutateModel.class, !IS_TRANSIENT, !IS_VOLATILE, IS_CHANGEABLE, !IS_UNSETTABLE, !IS_ID, IS_UNIQUE, !IS_DERIVED, IS_ORDERED); + + // Create resource + createResource(eNS_URI); + } + +} //MutatorPackageImpl diff --git a/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/RandomMutateModelImpl.java b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/RandomMutateModelImpl.java new file mode 100644 index 0000000..96afaf5 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/impl/RandomMutateModelImpl.java @@ -0,0 +1,194 @@ +/** + */ +package mutator.impl; + +import de.mdelab.workflow.WorkflowExecutionContext; +import de.mdelab.workflow.components.impl.WorkflowComponentImpl; +import de.mdelab.workflow.impl.WorkflowExecutionException; +import fr.tpt.mem4csd.loss.modelMutationUtils.SiteOfLossGenerator; +import mutator.MutatorPackage; +import mutator.RandomMutateModel; + +import java.io.IOException; + +import org.eclipse.core.runtime.IProgressMonitor; +import org.eclipse.core.runtime.SubMonitor; +import org.eclipse.emf.common.notify.Notification; +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.common.util.EMap; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.impl.ENotificationImpl; +import org.eclipse.emf.ecore.resource.Resource; + +/** + * + * An implementation of the model object 'Random Mutate Model'. + * + *

+ * The following features are implemented: + *

+ *
    + *
  • {@link mutator.impl.RandomMutateModelImpl#getModelSlot Model Slot}
  • + *
+ * + * @generated + */ +public class RandomMutateModelImpl extends WorkflowComponentImpl implements RandomMutateModel { + /** + * The default value of the '{@link #getModelSlot() Model Slot}' attribute. + * + * + * @see #getModelSlot() + * @generated + * @ordered + */ + protected static final String MODEL_SLOT_EDEFAULT = null; + + /** + * The cached value of the '{@link #getModelSlot() Model Slot}' attribute. + * + * + * @see #getModelSlot() + * @generated + * @ordered + */ + protected String modelSlot = MODEL_SLOT_EDEFAULT; + + /** + * + * + * @generated + */ + protected RandomMutateModelImpl() { + super(); + } + + /** + * + * + * @generated + */ + @Override + protected EClass eStaticClass() { + return MutatorPackage.Literals.RANDOM_MUTATE_MODEL; + } + + /** + * + * + * @generated + */ + @Override + public String getModelSlot() { + return modelSlot; + } + + /** + * + * + * @generated + */ + @Override + public void setModelSlot(String newModelSlot) { + String oldModelSlot = modelSlot; + modelSlot = newModelSlot; + if (eNotificationRequired()) + eNotify(new ENotificationImpl(this, Notification.SET, MutatorPackage.RANDOM_MUTATE_MODEL__MODEL_SLOT, oldModelSlot, modelSlot)); + } + + /** + * + * + * @generated + */ + @Override + public Object eGet(int featureID, boolean resolve, boolean coreType) { + switch (featureID) { + case MutatorPackage.RANDOM_MUTATE_MODEL__MODEL_SLOT: + return getModelSlot(); + } + return super.eGet(featureID, resolve, coreType); + } + + /** + * + * + * @generated + */ + @Override + public void eSet(int featureID, Object newValue) { + switch (featureID) { + case MutatorPackage.RANDOM_MUTATE_MODEL__MODEL_SLOT: + setModelSlot((String)newValue); + return; + } + super.eSet(featureID, newValue); + } + + /** + * + * + * @generated + */ + @Override + public void eUnset(int featureID) { + switch (featureID) { + case MutatorPackage.RANDOM_MUTATE_MODEL__MODEL_SLOT: + setModelSlot(MODEL_SLOT_EDEFAULT); + return; + } + super.eUnset(featureID); + } + + /** + * + * + * @generated + */ + @Override + public boolean eIsSet(int featureID) { + switch (featureID) { + case MutatorPackage.RANDOM_MUTATE_MODEL__MODEL_SLOT: + return MODEL_SLOT_EDEFAULT == null ? modelSlot != null : !MODEL_SLOT_EDEFAULT.equals(modelSlot); + } + return super.eIsSet(featureID); + } + + /** + * + * + * @generated + */ + @Override + public String toString() { + if (eIsProxy()) return super.toString(); + + StringBuilder result = new StringBuilder(super.toString()); + result.append(" (modelSlot: "); + result.append(modelSlot); + result.append(')'); + return result.toString(); + } + + + @SuppressWarnings({ "unchecked", "rawtypes" }) + @Override + public void execute(final WorkflowExecutionContext context, final IProgressMonitor monitor) + throws WorkflowExecutionException, IOException { + final SubMonitor subMonitor = SubMonitor.convert(monitor, 2); + + context.getLogger().addInfo("Modifying a slot.", this); + subMonitor.setTaskName("RandomMutation"); + + Resource model = getModelResource(context, modelSlot, "temp", true); + + EList contents = model.getContents(); + + SiteOfLossGenerator gen = new SiteOfLossGenerator(3); + gen.generateSiteOfLoss(contents); + + subMonitor.done(); + context.getLogger().addInfo("Done.", this); + } +} //RandomMutateModelImpl diff --git a/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/util/MutatorAdapterFactory.java b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/util/MutatorAdapterFactory.java new file mode 100644 index 0000000..0b3ac8d --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/util/MutatorAdapterFactory.java @@ -0,0 +1,160 @@ +/** + */ +package mutator.util; + +import de.mdelab.workflow.NamedComponent; + +import de.mdelab.workflow.components.WorkflowComponent; + +import mutator.*; + +import org.eclipse.emf.common.notify.Adapter; +import org.eclipse.emf.common.notify.Notifier; + +import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl; + +import org.eclipse.emf.ecore.EObject; + +/** + * + * The Adapter Factory for the model. + * It provides an adapter createXXX method for each class of the model. + * + * @see mutator.MutatorPackage + * @generated + */ +public class MutatorAdapterFactory extends AdapterFactoryImpl { + /** + * The cached model package. + * + * + * @generated + */ + protected static MutatorPackage modelPackage; + + /** + * Creates an instance of the adapter factory. + * + * + * @generated + */ + public MutatorAdapterFactory() { + if (modelPackage == null) { + modelPackage = MutatorPackage.eINSTANCE; + } + } + + /** + * Returns whether this factory is applicable for the type of the object. + * + * This implementation returns true if the object is either the model's package or is an instance object of the model. + * + * @return whether this factory is applicable for the type of the object. + * @generated + */ + @Override + public boolean isFactoryForType(Object object) { + if (object == modelPackage) { + return true; + } + if (object instanceof EObject) { + return ((EObject)object).eClass().getEPackage() == modelPackage; + } + return false; + } + + /** + * The switch that delegates to the createXXX methods. + * + * + * @generated + */ + protected MutatorSwitch modelSwitch = + new MutatorSwitch() { + @Override + public Adapter caseRandomMutateModel(RandomMutateModel object) { + return createRandomMutateModelAdapter(); + } + @Override + public Adapter caseNamedComponent(NamedComponent object) { + return createNamedComponentAdapter(); + } + @Override + public Adapter caseWorkflowComponent(WorkflowComponent object) { + return createWorkflowComponentAdapter(); + } + @Override + public Adapter defaultCase(EObject object) { + return createEObjectAdapter(); + } + }; + + /** + * Creates an adapter for the target. + * + * + * @param target the object to adapt. + * @return the adapter for the target. + * @generated + */ + @Override + public Adapter createAdapter(Notifier target) { + return modelSwitch.doSwitch((EObject)target); + } + + + /** + * Creates a new adapter for an object of class '{@link mutator.RandomMutateModel Random Mutate Model}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see mutator.RandomMutateModel + * @generated + */ + public Adapter createRandomMutateModelAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link de.mdelab.workflow.NamedComponent Named Component}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see de.mdelab.workflow.NamedComponent + * @generated + */ + public Adapter createNamedComponentAdapter() { + return null; + } + + /** + * Creates a new adapter for an object of class '{@link de.mdelab.workflow.components.WorkflowComponent Workflow Component}'. + * + * This default implementation returns null so that we can easily ignore cases; + * it's useful to ignore a case when inheritance will catch all the cases anyway. + * + * @return the new adapter. + * @see de.mdelab.workflow.components.WorkflowComponent + * @generated + */ + public Adapter createWorkflowComponentAdapter() { + return null; + } + + /** + * Creates a new adapter for the default case. + * + * This default implementation returns null. + * + * @return the new adapter. + * @generated + */ + public Adapter createEObjectAdapter() { + return null; + } + +} //MutatorAdapterFactory diff --git a/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/util/MutatorSwitch.java b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/util/MutatorSwitch.java new file mode 100644 index 0000000..df4a558 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src-gen/mutator/util/MutatorSwitch.java @@ -0,0 +1,146 @@ +/** + */ +package mutator.util; + +import de.mdelab.workflow.NamedComponent; + +import de.mdelab.workflow.components.WorkflowComponent; + +import mutator.*; + +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EPackage; + +import org.eclipse.emf.ecore.util.Switch; + +/** + * + * The Switch for the model's inheritance hierarchy. + * It supports the call {@link #doSwitch(EObject) doSwitch(object)} + * to invoke the caseXXX method for each class of the model, + * starting with the actual class of the object + * and proceeding up the inheritance hierarchy + * until a non-null result is returned, + * which is the result of the switch. + * + * @see mutator.MutatorPackage + * @generated + */ +public class MutatorSwitch extends Switch { + /** + * The cached model package + * + * + * @generated + */ + protected static MutatorPackage modelPackage; + + /** + * Creates an instance of the switch. + * + * + * @generated + */ + public MutatorSwitch() { + if (modelPackage == null) { + modelPackage = MutatorPackage.eINSTANCE; + } + } + + /** + * Checks whether this is a switch for the given package. + * + * + * @param ePackage the package in question. + * @return whether this is a switch for the given package. + * @generated + */ + @Override + protected boolean isSwitchFor(EPackage ePackage) { + return ePackage == modelPackage; + } + + /** + * Calls caseXXX for each class of the model until one returns a non null result; it yields that result. + * + * + * @return the first non-null result returned by a caseXXX call. + * @generated + */ + @Override + protected T doSwitch(int classifierID, EObject theEObject) { + switch (classifierID) { + case MutatorPackage.RANDOM_MUTATE_MODEL: { + RandomMutateModel randomMutateModel = (RandomMutateModel)theEObject; + T result = caseRandomMutateModel(randomMutateModel); + if (result == null) result = caseWorkflowComponent(randomMutateModel); + if (result == null) result = caseNamedComponent(randomMutateModel); + if (result == null) result = defaultCase(theEObject); + return result; + } + default: return defaultCase(theEObject); + } + } + + /** + * Returns the result of interpreting the object as an instance of 'Random Mutate Model'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'Random Mutate Model'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseRandomMutateModel(RandomMutateModel object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Named Component'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'Named Component'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseNamedComponent(NamedComponent object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'Workflow Component'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'Workflow Component'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject) + * @generated + */ + public T caseWorkflowComponent(WorkflowComponent object) { + return null; + } + + /** + * Returns the result of interpreting the object as an instance of 'EObject'. + * + * This implementation returns null; + * returning a non-null result will terminate the switch, but this is the last case anyway. + * + * @param object the target of the switch. + * @return the result of interpreting the object as an instance of 'EObject'. + * @see #doSwitch(org.eclipse.emf.ecore.EObject) + * @generated + */ + @Override + public T defaultCase(EObject object) { + return null; + } + +} //MutatorSwitch diff --git a/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/BaseMutations.java b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/BaseMutations.java new file mode 100644 index 0000000..91ee396 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/BaseMutations.java @@ -0,0 +1,115 @@ +package fr.tpt.mem4csd.loss.modelMutationUtils; + +import java.util.Collection; +import java.util.List; + +import javax.management.RuntimeErrorException; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.*; +import org.eclipse.emf.ecore.resource.Resource; +import org.eclipse.emf.ecore.util.EcoreUtil; + +public class BaseMutations { + + public BaseMutations() { + } + + protected EObject doCreate(Resource res, EClass clazz) { + EObject obj = EcoreUtil.create(clazz); + res.getContents().add(obj); + return obj; + } + + @SuppressWarnings({ "unchecked", "rawtypes" }) + + protected EObject addComplex(EObject container, EReference reference, EClass clazz, String name) { + EObject obj = EcoreUtil.create(clazz); + obj.eSet(clazz.getEStructuralFeature("name"), name); + if (reference.isMany()) { + ((EList) container.eGet(reference)).add(obj); + if (!reference.isContainment()) { + // ECore will add containment if contained. + // Otherwise the object needs to be manually added to the resource. + container.eResource().getContents().add(obj); + } + } else { + container.eSet(reference, obj); + if (!reference.isContainment()) { + // ECore will add containment if contained. + // Otherwise the object needs to be manually added to the resource. + container.eResource().getContents().add(obj); + } + assert container.eIsSet(reference); + } + return obj; + } + + @SuppressWarnings({ "unchecked", "rawtypes" }) + + protected EObject addPrimitive(EObject container, EAttribute attribute, EDataType dataType) { + EObject data = (EObject)dataType.getDefaultValue(); + if (attribute.isMany()) { + ((EList) container.eGet(attribute)).add(data); + } else { + container.eSet(attribute, data); + } + return data; + } + + @SuppressWarnings({ "unchecked", "rawtypes" }) + + protected void doAdd(EObject container, EStructuralFeature reference, Collection elements) { + ((EList) container.eGet(reference)).addAll(elements); + } + + @SuppressWarnings({ "unchecked", "rawtypes" }) + + protected void doAdd(EObject container, EStructuralFeature reference, Object what, int index) { + ((EList) container.eGet(reference)).add(index, what); + } + + protected void doSet(EObject container, EStructuralFeature feature, Object value) { + if (value == null) { + container.eUnset(feature); + } else { + container.eSet(feature, value); + } + } + + protected void doRemove(EObject object) { + EcoreUtil.remove(object); + } + + protected void doRemove(EObject container, EStructuralFeature reference) { + List list = (List) container.eGet(reference); + list.clear(); + } + + protected void doRemove(EObject container, EStructuralFeature feature, Object element) { + ((EList) container.eGet(feature)).remove(element); + } + + protected void doRemove(EObject container, EStructuralFeature feature, int index) { + ((EList) container.eGet(feature)).remove(index); + } + + @SuppressWarnings({ "unchecked", "rawtypes" }) + + protected void doMoveTo(EObject what, EObject newContainer, EReference reference, int index) { + if (reference.isMany()) { + ((EList) newContainer.eGet(reference)).add(index, what); + } else { + newContainer.eSet(reference, what); + } + } + + protected void doMoveTo(EObject what, Resource newContainer, int index) { + newContainer.getContents().add(index, what); + } + + protected void doChangeIndex(EObject container, EStructuralFeature feature, int oldIndex, int newIndex) { + EList featureValue = (EList) container.eGet(feature); + featureValue.move(newIndex, oldIndex); + } +} diff --git a/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/LimitedAdditionExtractor.java b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/LimitedAdditionExtractor.java new file mode 100644 index 0000000..4409628 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/LimitedAdditionExtractor.java @@ -0,0 +1,96 @@ +package fr.tpt.mem4csd.loss.modelMutationUtils; + +import java.util.Collection; +import java.util.List; +import java.util.Queue; +import java.util.Set; +import java.util.LinkedList; +import java.util.HashSet; +import java.util.ArrayList; + +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EStructuralFeature; +import org.eclipse.emf.ecore.ENamedElement; +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EReference; +import org.eclipse.emf.common.util.EList; + +public class LimitedAdditionExtractor implements MutationExtractor { + + @Override + public List extract(Collection rootObjects) { + List mutations = new ArrayList<>(); + + Queue toVisit = new LinkedList(); + Set visited = new HashSet<>(); + + toVisit.addAll(rootObjects); + + while (!toVisit.isEmpty()) { + EObject element = toVisit.poll(); + + if (element == null || visited.contains(element)) { + continue; + } + + visited.add(element); + EClass eclass = element.eClass(); + List features = eclass.getEStructuralFeatures(); + + for (EStructuralFeature feature : features) { + + int lowerBound = feature.getLowerBound(); + int upperBound = feature.getUpperBound(); + + boolean isContainmentRef = feature instanceof EReference; + + // Check how many elements exist already. + int existingElements = 0; + Object objExistingFeatures = element.eGet(feature); + if (feature.isMany()) { + // EList + existingElements = ((EList)objExistingFeatures).size(); + if (isContainmentRef) { + @SuppressWarnings("unchecked") + EList contents = (EList)objExistingFeatures; + toVisit.addAll(contents); + } + } else { + // EObject + existingElements = ((objExistingFeatures == null) ? 0 : 1); + if (isContainmentRef) { + toVisit.add((ENamedElement)objExistingFeatures); + } + } + + // Primitive Validation. Existing Model must be valid. + assert (existingElements >= lowerBound); + + if (upperBound < 0) { + upperBound = maxCardinality; + } + + assert (existingElements <= upperBound); + + int countToCreate = Integer.min(upperBound, maxCardinality) - existingElements; + + for (int i = 0; i < countToCreate; i++) { + mutations.add(new Mutation(Mutation.Type.eCreate, element, feature)); + } + } + } + + return mutations; + } + + public int getMaxCardinality() { + return maxCardinality; + } + + public LimitedAdditionExtractor(int maxCardinality) { + super(); + this.maxCardinality = maxCardinality; + } + + private int maxCardinality; +} diff --git a/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/Mutation.java b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/Mutation.java new file mode 100644 index 0000000..485507d --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/Mutation.java @@ -0,0 +1,77 @@ +package fr.tpt.mem4csd.loss.modelMutationUtils; + +import java.util.Objects; + +import org.eclipse.emf.common.util.EList; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.ENamedElement; +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EStructuralFeature; + +public class Mutation { + public enum Type { + eCreate, + eUpdate, + eDestroy + } + + public Mutation(Type mutationType, EObject targetElement, EStructuralFeature targetLink) { + super(); + this.mutationType = mutationType; + this.targetElement = targetElement; + this.targetLink = targetLink; + } + + @Override + public int hashCode() { + return Objects.hash(mutationType, targetElement, targetLink); + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + Mutation other = (Mutation) obj; + return mutationType == other.mutationType && Objects.equals(targetElement, other.targetElement) + && Objects.equals(targetLink, other.targetLink); + } + + @Override + public String toString() { + String name = ""; + if (targetElement instanceof ENamedElement) { + name = ((ENamedElement)targetElement).getName(); + } + else + { + EClass clzz = targetElement.eClass(); + if (clzz != null) { + EList features = clzz.getEAllStructuralFeatures(); + for (EStructuralFeature feature : features) { + if (feature.getName().equals("name")) { + name = (String)targetElement.eGet(feature); + } + } + } + } + return "Mutation [" + mutationType + " " + targetLink.getName() + " on " + name + "]"; + } + + private Type mutationType; + private EObject targetElement; + private EStructuralFeature targetLink; + + public Type getMutationType() { + return mutationType; + } + public EObject getTargetElement() { + return targetElement; + } + public EStructuralFeature getTargetLink() { + return targetLink; + } +} diff --git a/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/MutationExtractor.java b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/MutationExtractor.java new file mode 100644 index 0000000..756a751 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/MutationExtractor.java @@ -0,0 +1,10 @@ +package fr.tpt.mem4csd.loss.modelMutationUtils; + +import java.util.Collection; +import java.util.List; + +import org.eclipse.emf.ecore.EObject; + +public interface MutationExtractor { + List extract(Collection rootObjects); +} diff --git a/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/SiteOfLossGenerator.java b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/SiteOfLossGenerator.java new file mode 100644 index 0000000..085d526 --- /dev/null +++ b/fr.tpt.mem4csd.loss.modelMutation/src/fr/tpt/mem4csd/loss/modelMutationUtils/SiteOfLossGenerator.java @@ -0,0 +1,80 @@ +package fr.tpt.mem4csd.loss.modelMutationUtils; + +import java.util.Collection; +import java.util.List; + +import org.eclipse.emf.common.util.TreeIterator; +import org.eclipse.emf.ecore.EAttribute; +import org.eclipse.emf.ecore.EClass; +import org.eclipse.emf.ecore.EDataType; +import org.eclipse.emf.ecore.ENamedElement; +import org.eclipse.emf.ecore.EObject; +import org.eclipse.emf.ecore.EReference; +import org.eclipse.emf.ecore.EStructuralFeature; + +public class SiteOfLossGenerator { + + public void generateSiteOfLoss(Collection root) { + List mutations = extractor.extract(root); + for (Mutation mutation : mutations) { + applyMutation(mutation); + } + } + + private EClass findConcreteClass(EClass clazz) { + if (!clazz.isAbstract()) { + return clazz; + } + + TreeIterator treeIter = clazz.getEPackage().eAllContents(); + while (treeIter.hasNext()) { + EObject element = treeIter.next(); + if (element instanceof EClass) { + EClass currentClass = (EClass) element; + + if (!currentClass.isAbstract() && !currentClass.getName().contains("Abstract") && currentClass.getEAllSuperTypes().contains(clazz)) { + return (EClass) element; + } + } + }; + + return null; + } + + private int idCounter = 0; + + private String generateName(EObject parent, EStructuralFeature feature) { + // The EObjects are definitely NamedElements, but can't be casted due to difference in Equinox modules. + String parentName = parent.eGet(parent.eClass().getEStructuralFeature("name")).toString(); + return "GEN_" + parentName + "_" + feature.getName() + "_" + idCounter++; + } + + private void applyMutation(Mutation mutation) { + if (mutation.getMutationType() == Mutation.Type.eCreate) { + EStructuralFeature feature = mutation.getTargetLink(); + EObject element = mutation.getTargetElement(); + if (feature instanceof EReference) { + EReference reference = (EReference)feature; + EClass featureType = findConcreteClass(reference.getEReferenceType()); + if (featureType == null) { + return; + } + mutator.addComplex(element, reference, featureType, generateName(element, reference)); + } else if (feature instanceof EAttribute) { + EAttribute attribute = (EAttribute)feature; + EDataType dataType = attribute.getEAttributeType(); + mutator.addPrimitive(element, attribute, dataType); + } + } + } + + public SiteOfLossGenerator(int maxCardinality) { + this.maxCardinality = maxCardinality; + extractor = new LimitedAdditionExtractor(maxCardinality); + mutator = new BaseMutations(); + } + + BaseMutations mutator; + MutationExtractor extractor; + int maxCardinality; +}