fix #6437 Generate title caches to avoid outdated information
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / selection / EntitySelectionElement.java
index 2a07ef5f8c91e187718e66a4e374071c7dbfee8f..30ebf05424735d0362dbfb1c6fc614e09cd73e48 100644 (file)
@@ -23,6 +23,7 @@ import org.springframework.security.core.GrantedAuthority;
 
 import eu.etaxonomy.cdm.api.conversation.ConversationHolder;
 import eu.etaxonomy.cdm.api.conversation.IConversationEnabled;
+import eu.etaxonomy.cdm.api.service.IService;
 import eu.etaxonomy.cdm.common.CdmUtils;
 import eu.etaxonomy.cdm.model.common.CdmBase;
 import eu.etaxonomy.cdm.model.common.Group;
@@ -30,7 +31,7 @@ import eu.etaxonomy.cdm.model.common.IIdentifiableEntity;
 import eu.etaxonomy.cdm.model.common.User;
 import eu.etaxonomy.cdm.model.molecular.Amplification;
 import eu.etaxonomy.cdm.model.molecular.Primer;
-import eu.etaxonomy.cdm.persistence.hibernate.CdmDataChangeMap;
+import eu.etaxonomy.cdm.model.reference.Reference;
 import eu.etaxonomy.cdm.persistence.hibernate.permission.CRUD;
 import eu.etaxonomy.taxeditor.model.ImageResources;
 import eu.etaxonomy.taxeditor.preference.Resources;
@@ -51,17 +52,14 @@ import eu.etaxonomy.taxeditor.ui.element.SelectionArbitrator;
 import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityLabelTextProvider;
 
 /**
- * <p>
- * Abstract AbstractSelectionElement class.
- * </p>
- *
  * @author n.hoffmann
  * @created Nov 17, 2009
  * @version 1.0
  * @param <T>
  */
 public class EntitySelectionElement<T extends CdmBase> extends
-               AbstractCdmFormElement implements  SelectionListener, IEnableableFormElement, ISelectableElement, IEntityElement<T>, ILabeledElement, IConversationEnabled, Observer {
+               AbstractCdmFormElement implements  SelectionListener, IEnableableFormElement, ISelectableElement, IEntityElement<T>, ILabeledElement, //IConversationEnabled,
+               Observer {
 
        private static final EnumSet<CRUD> UPDATE = EnumSet.of(CRUD.UPDATE);
        private static final EnumSet<CRUD> DELETE = EnumSet.of(CRUD.DELETE);
@@ -70,18 +68,22 @@ public class EntitySelectionElement<T extends CdmBase> extends
        /**
         * Bitmask for configuring functionality of selection element
         */
-       public static final int NOTHING = 0; // 000
-       public static final int EDITABLE = 1 << 0; // 001
-       public static final int DELETABLE = 1 << 1; // 010
-       public static final int SELECTABLE = 1 << 2; // 100
-       public static final int ALL = EDITABLE | DELETABLE | SELECTABLE; // 111
-
+       public static final int NOTHING = 0; // 0000
+       public static final int EDITABLE = 1 << 0; // 0001
+       public static final int DELETABLE = 1 << 1; // 0010
+       public static final int SELECTABLE = 1 << 2; // 0100
+       public static final int EXTERNAL = 1 << 3; // 1000
+       public static final int ALL = EDITABLE | DELETABLE | SELECTABLE ; // 0111
+       public static final int ALL_WITH_EXT = EDITABLE | DELETABLE | SELECTABLE | EXTERNAL ; // 1111
        protected T entity;
+       protected T filteredEntity;
 
        protected Label label;
        protected Text text;
        protected Button button_selection;
 
+       protected Button button_selectionExt;
+
        private SelectionArbitrator selectionArbitrator;
 
        protected Button button_edit;
@@ -95,66 +97,50 @@ public class EntitySelectionElement<T extends CdmBase> extends
        private final boolean isEditable;
 
        private final boolean isDeletable;
+       private final boolean isExternal;
 
-       private final ConversationHolder conversation;
+//     private final ConversationHolder conversation;
        private Class<T> clazz;
 
-       /**
-        * <p>
-        * Constructor for AbstractSelectionElement.
-        * </p>
-        *
-        * @param formFactory
-        *            a {@link eu.etaxonomy.taxeditor.ui.element.CdmFormFactory}
-        *            object.
-        * @param conversation
-        *            TODO
-        * @param parentElement
-        *            a {@link eu.etaxonomy.taxeditor.ui.element.ICdmFormElement}
-        *            object.
-        * @param labelString
-        *            a {@link java.lang.String} object.
-        * @param entity
-        *            a T object.
-        * @param isEditable
-        *            a boolean.
-        * @param isSelectable
-        *            a boolean.
-        * @param isDeletable
-        *            a boolean.
-        * @param style
-        *            a int.
-        * @param <T>
-        *            a T object.
-        */
        public EntitySelectionElement(CdmFormFactory formFactory,
-                       ConversationHolder conversation, ICdmFormElement parentElement,
-                       String labelString, T entity, int mode, int style) {
+//                     ConversationHolder conversation,
+               ICdmFormElement parentElement, Class<T> clazz,
+                       String labelString, T entity, int mode, int style, boolean filterElement) {
                super(formFactory, parentElement);
 
+               this.clazz = clazz;
                this.isEditable = (mode & EDITABLE) == EDITABLE;
                this.isDeletable = (mode & DELETABLE) == DELETABLE;
+               this.isExternal= (mode & EXTERNAL) == EXTERNAL;
                boolean isSelectable = (mode & SELECTABLE) == SELECTABLE;
 
                this.labelString = (labelString == null || labelString.equals("")) ? "" : labelString;
 
-               this.conversation = conversation;
+//             this.conversation = conversation;
 
                if (isSelectable && formFactory.getSelectionProvider() != null) {
                        selectionArbitrator = formFactory.createSelectionArbitrator(this);
                }
 
                createControls(getLayoutComposite(), SWT.NULL);
-
-               setEntity(entity);
+               if (filterElement){
+                   setFilteredEntity(entity);
+               }else{
+                   setEntity(entity);
+               }
        }
 
-       public EntitySelectionElement(CdmFormFactory formFactory,
-                       ConversationHolder conversation, ICdmFormElement parentElement, Class<T> clazz,
-                       String labelString, T entity, int mode, int style) {
-               this(formFactory, conversation, parentElement, labelString, entity, mode, style);
-               this.clazz = clazz;
-       }
+    private void setFilteredEntity(T filterEntity) {
+        this.filteredEntity =filterEntity;
+
+    }
+
+    public EntitySelectionElement(CdmFormFactory formFactory,//ConversationHolder conversation,
+             ICdmFormElement parentElement, Class<T> clazz,
+            String labelString, T entity, int mode, int style){
+        this(formFactory, //conversation,
+                parentElement, clazz, labelString, entity, mode, style, false);
+    }
 
        private void createControls(Composite parent, int style) {
 
@@ -172,6 +158,9 @@ public class EntitySelectionElement<T extends CdmBase> extends
                if (isDeletable) {
                        columns += 1;
                }
+               if (isExternal) {
+            columns += 1;
+        }
 
                selectableComposite.setLayout(LayoutConstants.LAYOUT(columns, false));
                selectableComposite.setLayoutData(LayoutConstants.FILL_HORIZONTALLY());
@@ -194,7 +183,16 @@ public class EntitySelectionElement<T extends CdmBase> extends
 
                addControl(button_selection);
                button_selection.addSelectionListener(this);
-
+               if (isExternal){
+               button_selectionExt = formFactory.createButton(selectableComposite, null,
+                    SWT.PUSH);
+               button_selectionExt.setImage(ImageResources
+                    .getImage(ImageResources.BROWSE_ICON));
+               button_selectionExt.setToolTipText("Browse existing from external cdm store");
+               button_selectionExt.setText("Ext");
+            addControl(button_selectionExt);
+            button_selectionExt.addSelectionListener(this);
+               }
                if (isEditable) {
                        button_edit = formFactory.createButton(selectableComposite, null,
                                        SWT.PUSH);
@@ -218,11 +216,27 @@ public class EntitySelectionElement<T extends CdmBase> extends
 
        @Override
     public void widgetSelected(SelectionEvent e) {
-               T selection = SelectionDialogFactory.getSelectionFromDialog(clazz, getShell(), getConversationHolder(), getEntity(), getParentElement());
-               setSelectionInternal(selection);
+           if (e.getSource().equals(button_selection) ){
+               T selection = SelectionDialogFactory.getSelectionFromDialog(clazz, getShell(), //getConversationHolder(),
+                       getFilteredEntity(), getParentElement());
+            setSelectionInternal(selection);
+           }else{
+               Reference selection = SelectionDialogFactory.getSelectionFromExtDialog(Reference.class, getShell(),//null,
+                       getParentElement());
+            setSelectionInternal((T)selection);
+           }
+
        }
 
        /**
+     * @return
+     */
+    public T getFilteredEntity() {
+
+        return this.filteredEntity;
+    }
+
+    /**
         * Return the selected object
         *
         * @return a T object.
@@ -422,8 +436,17 @@ public class EntitySelectionElement<T extends CdmBase> extends
                        WizardDialog dialog = new WizardDialog(selectionElement.getShell(),
                                        new EditFromSelectionWizard(selectionElement));
                        if (dialog.open() == IStatus.OK) {
-
                                selectionElement.updateFromWizard();
+                               //if the edited entity has already been persisted
+                               //but the transient entity is still set in this
+                               //EntitySelectionElement, re-load it and set it
+                               IService<T> service = CdmStore.getService(entity);
+                               if(entity.getId()==0){
+                                       T loadedEntity = service.load(entity.getUuid());
+                                       if(loadedEntity!=null){
+                                               setEntity(loadedEntity);
+                                       }
+                               }
                        }
                }
        }
@@ -442,9 +465,12 @@ public class EntitySelectionElement<T extends CdmBase> extends
         * @return a {@link eu.etaxonomy.cdm.api.conversation.ConversationHolder}
         *         object.
         */
-       @Override
+//     @Override
        public ConversationHolder getConversationHolder() {
-               return conversation;
+           if(getParentElement() instanceof IConversationEnabled) {
+            return ((IConversationEnabled)getParentElement()).getConversationHolder();
+        }
+           return null;
        }
 
        /** {@inheritDoc} */
@@ -479,9 +505,9 @@ public class EntitySelectionElement<T extends CdmBase> extends
        }
 
        /** {@inheritDoc} */
-       @Override
-       public void update(CdmDataChangeMap changeEvents) {
-       }
+//     @Override
+//     public void update(CdmDataChangeMap changeEvents) {
+//     }
 
        /* (non-Javadoc)
         * @see eu.etaxonomy.taxeditor.ui.element.AbstractCdmFormElement#removeElements()