Project

General

Profile

Download (10.3 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
 * Copyright (C) 2007 EDIT
3
 * European Distributed Institute of Taxonomy
4
 * http://www.e-taxonomy.eu
5
 *
6
 * The contents of this file are subject to the Mozilla Public License Version 1.1
7
 * See LICENSE.TXT at the top of this package for the full license terms.
8
 */
9

    
10
package eu.etaxonomy.taxeditor.editor.view.descriptive.e4.handler;
11

    
12
import java.util.ArrayList;
13
import java.util.Collection;
14
import java.util.HashSet;
15
import java.util.Iterator;
16
import java.util.List;
17
import java.util.Set;
18
import java.util.UUID;
19

    
20
import javax.inject.Named;
21

    
22
import org.eclipse.core.runtime.NullProgressMonitor;
23
import org.eclipse.e4.core.di.annotations.CanExecute;
24
import org.eclipse.e4.core.di.annotations.Execute;
25
import org.eclipse.e4.core.di.annotations.Optional;
26
import org.eclipse.e4.ui.di.UISynchronize;
27
import org.eclipse.e4.ui.model.application.MApplication;
28
import org.eclipse.e4.ui.model.application.ui.basic.MPart;
29
import org.eclipse.e4.ui.model.application.ui.menu.MHandledMenuItem;
30
import org.eclipse.e4.ui.model.application.ui.menu.MMenuItem;
31
import org.eclipse.e4.ui.services.IServiceConstants;
32
import org.eclipse.e4.ui.workbench.modeling.EModelService;
33
import org.eclipse.e4.ui.workbench.modeling.EPartService;
34
import org.eclipse.jface.dialogs.MessageDialog;
35
import org.eclipse.jface.viewers.ISelection;
36
import org.eclipse.jface.viewers.IStructuredSelection;
37
import org.eclipse.swt.widgets.Display;
38
import org.eclipse.swt.widgets.Shell;
39

    
40
import eu.etaxonomy.cdm.api.service.IDescriptionService;
41
import eu.etaxonomy.cdm.hibernate.HibernateProxyHelper;
42
import eu.etaxonomy.cdm.model.description.DescriptionBase;
43
import eu.etaxonomy.cdm.model.description.DescriptionElementBase;
44
import eu.etaxonomy.cdm.model.description.TaxonDescription;
45
import eu.etaxonomy.cdm.model.description.TaxonNameDescription;
46
import eu.etaxonomy.cdm.model.taxon.Classification;
47
import eu.etaxonomy.cdm.model.taxon.Taxon;
48
import eu.etaxonomy.cdm.model.taxon.TaxonNode;
49
import eu.etaxonomy.taxeditor.editor.EditorUtil;
50
import eu.etaxonomy.taxeditor.editor.l10n.Messages;
51
import eu.etaxonomy.taxeditor.editor.name.e4.TaxonNameEditorE4;
52
import eu.etaxonomy.taxeditor.editor.view.descriptive.e4.FactualDataPartE4;
53
import eu.etaxonomy.taxeditor.editor.view.descriptive.operation.MoveDescriptionElementsOperation;
54
import eu.etaxonomy.taxeditor.model.FeatureNodeContainer;
55
import eu.etaxonomy.taxeditor.operation.AbstractPostTaxonOperation;
56
import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
57
import eu.etaxonomy.taxeditor.store.CdmStore;
58
import eu.etaxonomy.taxeditor.ui.dialog.selection.TaxonNodeSelectionDialog;
59
import eu.etaxonomy.taxeditor.workbench.WorkbenchUtility;
60
import eu.etaxonomy.taxeditor.workbench.part.IE4SavablePart;
61

    
62

    
63
/**
64
 *
65
 * @author pplitzner
66
 * @date 15.08.2017
67
 *
68
 */
69
public class MoveDescriptionElementsHandlerE4 implements IPostOperationEnabled{
70
    private UUID newAcceptedTaxonNodeUuid;
71
    private UUID oldAcceptedTaxonNodeUuid;
72
    private TaxonNameEditorE4 editor;
73
    private MApplication application;
74
    private EModelService modelService;
75
    private EPartService partService;
76

    
77
    @Execute
78
    public void execute(@Named(IServiceConstants.ACTIVE_PART) MPart activePart,
79
            @Named(IServiceConstants.ACTIVE_SHELL) Shell shell, MMenuItem menuItem, EPartService partService,
80
            EModelService modelService, MApplication application, UISynchronize sync) {
81

    
82
        this.modelService = modelService;
83
        this.application = application;
84
        this.partService = partService;
85

    
86
        FactualDataPartE4 factualDataPart = (FactualDataPartE4) activePart.getObject();
87
        IStructuredSelection viewselection = (IStructuredSelection) factualDataPart.getViewer().getSelection();
88

    
89
        Object e4WrappedPart = WorkbenchUtility.getE4WrappedPart(factualDataPart.getSelectionProvidingPart());
90
        if(e4WrappedPart instanceof TaxonNameEditorE4){
91
            editor = (TaxonNameEditorE4) e4WrappedPart;
92
        }
93
        Taxon actualTaxon= null;
94

    
95
        List<DescriptionElementBase> elements = new ArrayList<DescriptionElementBase>();
96
        DescriptionBase description = null;
97
        for (Iterator iter = viewselection.iterator(); iter.hasNext();) {
98
            Object object = iter.next();
99
            if (object instanceof DescriptionElementBase) {
100
                UUID uuid = ((DescriptionElementBase) object).getUuid();
101
                description = ((DescriptionElementBase) object).getInDescription();
102
                DescriptionElementBase element ;
103
                if (((DescriptionElementBase) object).getId() > 0){
104
                    element = CdmStore.getService(IDescriptionService.class).loadDescriptionElement(uuid, null);
105
                }else{
106
                    element = ((DescriptionElementBase) object);
107
                }
108

    
109
                elements.add(element);
110
            } else if (object instanceof FeatureNodeContainer) {
111
                for (DescriptionElementBase de : ((FeatureNodeContainer) object).getDescriptionElements()) {
112
                    DescriptionElementBase element ;
113
                    if (de.getId() > 0){
114
                        element = CdmStore.getService(IDescriptionService.class).loadDescriptionElement(de.getUuid(), null);
115
                    }else{
116
                        element = (de);
117
                    }
118
                    description = de.getInDescription();
119
                    elements.add(element);
120
                }
121
            }
122
        }
123

    
124
        if(elements.size() == 0 ){
125
            return;
126
        }
127

    
128
        if (elements.get(0) != null){
129
            description = elements.get(0).getInDescription();
130
        }
131
        Set<UUID> excludeTaxa = new HashSet<>();
132
        if (description!=null && description.isInstanceOf(TaxonDescription.class)){
133
            TaxonDescription taxonDescription = HibernateProxyHelper.deproxy(description, TaxonDescription.class);
134
            actualTaxon = taxonDescription.getTaxon();
135

    
136
        }
137
        Classification classification = null;
138
        TaxonNode actualNode = null;
139
        if (actualTaxon != null){
140
            if (!actualTaxon.getTaxonNodes().isEmpty() && actualTaxon.getTaxonNodes().size() ==1){
141
                actualNode = actualTaxon.getTaxonNodes().iterator().next();
142
                oldAcceptedTaxonNodeUuid = actualNode.getUuid();
143
                excludeTaxa.add(oldAcceptedTaxonNodeUuid);
144
                classification = actualNode.getClassification();
145

    
146
            }
147
        }
148
        TaxonNode newAcceptedTaxonNode = TaxonNodeSelectionDialog.select(shell,
149
                Messages.MoveDescriptionElementsHandler_CHOOSE_ACC_TAXON,
150
                excludeTaxa,
151
                null, classification.getUuid()
152
                );
153
        if (newAcceptedTaxonNode != null){
154
            Taxon targetTaxon = newAcceptedTaxonNode.getTaxon();
155

    
156
            if(targetTaxon == null){
157
                // canceled
158
                return;
159
            }
160
            newAcceptedTaxonNodeUuid = newAcceptedTaxonNode.getUuid();
161

    
162
            Collection<IE4SavablePart> targetEditors = EditorUtil.checkForTaxonChanges(targetTaxon.getUuid(), partService);
163

    
164
            if (!targetEditors.isEmpty() || this.editor.isDirty()){
165
                if(MessageDialog.openQuestion(null,Messages.MoveDescriptionToOtherTaxonHandler_SAVE_CHANGES, Messages.MoveDescriptionToOtherTaxonHandler_SAVE_CHANGES_MESSAGE)){
166
                    this.editor.save(new NullProgressMonitor());
167
                    targetEditors.forEach(editor->editor.save(new NullProgressMonitor()));
168
                    return;
169
                }
170
                else{
171
                    return;
172
                }
173
            }
174

    
175
            String moveMessage = String.format(Messages.MoveDescriptionElementsHandler_ELEMENTS_MOVED, editor.getTaxon());
176

    
177
            AbstractPostTaxonOperation operation = new MoveDescriptionElementsOperation(
178
                    menuItem.getLocalizedLabel(), EditorUtil.getUndoContext(),
179
                    targetTaxon.getUuid(), moveMessage, elements, false, this, null);
180
            editor.getEditorInput().addOperation(operation);
181
            editor.setDirty();
182
            //AbstractUtility.executeOperation(operation, sync);
183
        }
184
    }
185

    
186
    /** {@inheritDoc} */
187
    @Override
188
    public boolean postOperation(Object objectAffectedByOperation) {
189

    
190
        editor.getConversationHolder().bind();
191
        editor.getConversationHolder().commit(true);
192
        Display.getDefault().asyncExec(new Runnable(){
193

    
194
            @Override
195
            public void run() {
196
                //AbstractUtility.close(editor.getMultiPageTaxonEditor());
197

    
198
                    //FIXME E4 migrate
199
//                    MultiPageTaxonEditor possibleOpenEditor = (MultiPageTaxonEditor) EditorUtil.findEditorByTaxonNodeUuid(newAcceptedTaxonNodeUuid);
200
//                    if(possibleOpenEditor != null){
201
//                        AbstractUtility.close(possibleOpenEditor);
202
//                    }
203
                EditorUtil.openTaxonNodeE4(newAcceptedTaxonNodeUuid, modelService, partService, application);
204
                EditorUtil.openTaxonNodeE4(oldAcceptedTaxonNodeUuid, modelService, partService, application);
205
            }
206

    
207
        });
208

    
209

    
210
        return true;
211
    }
212

    
213
    @Override
214
    public boolean onComplete() {
215
        return false;
216
    }
217

    
218
    @CanExecute
219
    public boolean canExecute(@Optional @Named(IServiceConstants.ACTIVE_PART) MPart activePart,
220
            MHandledMenuItem menuItem){
221
        boolean canExecute = false;
222
        FactualDataPartE4 factualDataPart = (FactualDataPartE4) activePart.getObject();
223

    
224
        Object e4WrappedPart = WorkbenchUtility.getE4WrappedPart(factualDataPart.getSelectionProvidingPart());
225
        if(e4WrappedPart instanceof TaxonNameEditorE4){
226
            ISelection selection = factualDataPart.getViewer().getSelection();
227
            if(selection instanceof IStructuredSelection){
228
                boolean selectionProviding = factualDataPart.getSelectionProvidingPart().getObject() instanceof TaxonNameEditorE4;
229
                Object firstElement = ((IStructuredSelection) selection).getFirstElement();
230
                canExecute = (firstElement instanceof FeatureNodeContainer && !(((FeatureNodeContainer)firstElement).getContainerTree().getDescription() instanceof TaxonNameDescription))
231
                        || (firstElement instanceof DescriptionElementBase && !(((DescriptionElementBase)firstElement).getInDescription() instanceof TaxonNameDescription)) ;
232
                menuItem.setVisible(canExecute);
233
            }
234
        }
235
        return canExecute;
236
    }
237

    
238

    
239
}
(7-7/9)