Project

General

Profile

Download (10.4 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2018 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
package eu.etaxonomy.taxeditor.editor.descriptiveDataSet.matrix;
10

    
11
import java.util.ArrayList;
12
import java.util.Collection;
13
import java.util.List;
14
import java.util.Map;
15
import java.util.UUID;
16
import java.util.stream.Collectors;
17

    
18
import org.eclipse.jface.layout.GridDataFactory;
19
import org.eclipse.jface.window.Window;
20
import org.eclipse.swt.SWT;
21
import org.eclipse.swt.events.SelectionAdapter;
22
import org.eclipse.swt.events.SelectionEvent;
23
import org.eclipse.swt.layout.RowLayout;
24
import org.eclipse.swt.widgets.Button;
25
import org.eclipse.swt.widgets.Composite;
26

    
27
import eu.etaxonomy.cdm.api.service.IDescriptiveDataSetService;
28
import eu.etaxonomy.cdm.api.service.ITaxonNodeService;
29
import eu.etaxonomy.cdm.api.service.UpdateResult;
30
import eu.etaxonomy.cdm.api.service.dto.RowWrapperDTO;
31
import eu.etaxonomy.cdm.api.service.dto.SpecimenRowWrapperDTO;
32
import eu.etaxonomy.cdm.api.service.dto.TaxonRowWrapperDTO;
33
import eu.etaxonomy.cdm.common.CdmUtils;
34
import eu.etaxonomy.cdm.model.description.CategoricalData;
35
import eu.etaxonomy.cdm.model.description.Feature;
36
import eu.etaxonomy.cdm.model.description.QuantitativeData;
37
import eu.etaxonomy.cdm.model.description.SpecimenDescription;
38
import eu.etaxonomy.cdm.model.description.TaxonDescription;
39
import eu.etaxonomy.cdm.model.taxon.Taxon;
40
import eu.etaxonomy.cdm.model.taxon.TaxonNode;
41
import eu.etaxonomy.cdm.persistence.dto.SpecimenNodeWrapper;
42
import eu.etaxonomy.cdm.persistence.dto.TaxonNodeDto;
43
import eu.etaxonomy.taxeditor.model.ImageResources;
44
import eu.etaxonomy.taxeditor.model.MessagingUtils;
45
import eu.etaxonomy.taxeditor.store.CdmStore;
46
import eu.etaxonomy.taxeditor.ui.dialog.selection.TaxonSelectionDialog;
47

    
48
/**
49
 * @author pplitzner
50
 * @since Jul 9, 2018
51
 *
52
 */
53
public class CharacterMatrixBottomToolbar extends Composite{
54

    
55
    private CharacterMatrix matrix;
56

    
57
    public CharacterMatrixBottomToolbar(CharacterMatrix matrix, int style) {
58
        super(matrix, style);
59
        this.matrix = matrix;
60

    
61
        init();
62
    }
63

    
64
    private void init() {
65

    
66
        setLayout(new RowLayout());
67
        GridDataFactory.fillDefaults().grab(true, false).applyTo(this);
68

    
69
        /**
70
         * Add description button
71
         */
72
        Button btnAddDescription = new Button(this, SWT.PUSH);
73
        btnAddDescription.setImage(ImageResources.getImage(ImageResources.ADD_ICON_GREEN));
74
        btnAddDescription.addSelectionListener(new SelectionAdapter() {
75
            @Override
76
            public void widgetSelected(SelectionEvent e) {
77
                String error = "";
78
                SpecimenSelectionDialog dialog = new SpecimenSelectionDialog(matrix.getShell(), matrix);
79
                if(dialog.open()==Window.OK){
80
                    Collection<SpecimenNodeWrapper> wrappers = dialog.getSpecimen();
81
                    for (SpecimenNodeWrapper wrapper : wrappers) {
82
                        SpecimenDescription specimenDescription = CdmStore.getService(IDescriptiveDataSetService.class)
83
                                .findSpecimenDescription(matrix.getDescriptiveDataSet().getUuid(),
84
                                        wrapper.getUuidAndTitleCache().getUuid(), true);
85
                        SpecimenRowWrapperDTO rowWrapper = CdmStore.getService(IDescriptiveDataSetService.class)
86
                                .createSpecimenRowWrapper(specimenDescription, matrix.getDescriptiveDataSet());
87
                        if(rowWrapper==null){
88
                            error += specimenDescription;
89
                            continue;
90
                        }
91
                        //add specimen description
92
                        matrix.getDescriptions().add(rowWrapper);
93
                        matrix.getDescriptiveDataSet().addDescription(specimenDescription);
94
                        matrix.getCdmEntitiySession().load(specimenDescription, true);
95

    
96
                        matrix.setDirty();
97
                        matrix.getSpecimenCache().remove(wrapper);
98
                    }
99
                    if(CdmUtils.isNotBlank(error)){
100
                        MessagingUtils.warningDialog("Errors during row creation", this,
101
                                String.format("Could not create rows for the following description:\n\n%s", error));
102
                    }
103
                }
104
            }
105
        });
106
        /**
107
         * Remove description button
108
         */
109
        Button btnRemoveDescription = new Button(this, SWT.PUSH);
110
        btnRemoveDescription.setImage(ImageResources.getImage(ImageResources.ACTIVE_DELETE_ICON));
111
        btnRemoveDescription.addSelectionListener(new SelectionAdapter() {
112
            @Override
113
            public void widgetSelected(SelectionEvent e) {
114
                int[] fullySelectedRowPositions = matrix.getBodyLayer().getSelectionLayer().getFullySelectedRowPositions();
115
                List<RowWrapperDTO> toRemove = new ArrayList<>();
116
                for (int i : fullySelectedRowPositions) {
117
                    Object rowObject = matrix.getBodyDataProvider().getRowObject(i);
118
                    if(rowObject instanceof RowWrapperDTO){
119
                        toRemove.add((RowWrapperDTO) rowObject);
120
                    }
121
                }
122
                toRemove.forEach(rowToRemove->{
123
                    matrix.getDescriptions().remove(rowToRemove);
124
                    matrix.getDescriptiveDataSet().removeDescription(rowToRemove.getDescription());
125
                    matrix.setDirty();
126
                });
127
            }
128
        });
129
        /**
130
         * Aggregate button
131
         */
132
        Button btnAggregate = new Button(this, SWT.PUSH);
133
        btnAggregate.setText("Aggregate");
134
        btnAggregate.addSelectionListener(new SelectionAdapter() {
135
            @Override
136
            public void widgetSelected(SelectionEvent e) {
137
                List<TaxonNode> taxonSubtreeFilter = CdmStore.getService(IDescriptiveDataSetService.class).loadFilteredTaxonNodes(matrix.getDescriptiveDataSet(), null);
138
                List<TaxonNodeDto> nodeDtos = taxonSubtreeFilter.stream()
139
                        .map(node -> new TaxonNodeDto(node)).collect(Collectors.toList());
140
                TaxonNodeDto parentDto = CdmStore.getService(ITaxonNodeService.class).findCommonParentDto(nodeDtos);
141
                UUID taxonUuid = parentDto.getTaxonUuid();
142
                int response = MessagingUtils.confirmDialog(
143
                        "Choose location for the aggregated description",
144
                        String.format("The aggregated description will be stored at "
145
                                + "the common parent taxon of this data set:\n%s\n\n"
146
                                + "Do you want to use this taxon?"
147
                                , parentDto.getTaxonTitleCache()), "Yes", "Choose taxon", "Cancel");
148
                if(response==2){
149
                    return;
150
                }
151
                else if(response==1){
152
                    Taxon taxon = TaxonSelectionDialog.selectTaxon(getShell(), null);
153
                    if(taxon==null){
154
                        return;
155
                    }
156
                    taxonUuid = taxon.getUuid();
157
                }
158
                List<UUID> descriptionUuids = new ArrayList<>();
159
                matrix.getDescriptiveDataSet().getDescriptions().forEach(desc->descriptionUuids.add(desc.getUuid()));
160
                UpdateResult result = CdmStore.getService(IDescriptiveDataSetService.class).aggregateDescription(taxonUuid, descriptionUuids, matrix.getDescriptiveDataSet().getLabel(), matrix.getDescriptiveDataSet().getUuid());
161
                TaxonDescription taxonDescription = (TaxonDescription) result.getCdmEntity();
162
                TaxonRowWrapperDTO taxonRowWrapper = CdmStore.getService(IDescriptiveDataSetService.class).createTaxonRowWrapper(taxonDescription.getUuid(), matrix.getDescriptiveDataSet().getUuid());
163
                matrix.getDescriptions().add(taxonRowWrapper);
164

    
165
                aggregateCategorcialHistogram(matrix.getFeatureToHistogramMap());
166
                aggregateQuantitativeSummary(matrix.getFeatureToQuantDataStatisticsMap());
167
            }
168

    
169
        });
170
    }
171

    
172
    @SuppressWarnings("unchecked")
173
    private void aggregateCategorcialHistogram(Map<Feature, CategoricalDataHistogram> featureToHistogramMap) {
174
        featureToHistogramMap.clear();
175
        matrix.getDescriptions().stream()
176
        .filter(desc->desc instanceof SpecimenRowWrapperDTO)
177
                .forEach(o -> ((SpecimenRowWrapperDTO) o).getDescription().getElements().stream()
178
                        .filter(descriptionElement -> descriptionElement instanceof CategoricalData)
179
                        .forEach(categoricalData -> {
180
                            Feature feature = ((CategoricalData) categoricalData).getFeature();
181
                            CategoricalDataHistogram dataHistogram = featureToHistogramMap.get(feature);
182
                            if(dataHistogram==null){
183
                                dataHistogram = new CategoricalDataHistogram(feature);
184
                            }
185
                            featureToHistogramMap.put(feature, dataHistogram);
186
                            ((CategoricalData) categoricalData).getStateData()
187
                                    .forEach(stateData -> featureToHistogramMap.get(feature).addState(stateData.getState()));
188
                        }));
189
    }
190

    
191
    @SuppressWarnings("unchecked")
192
    private void aggregateQuantitativeSummary(Map<Feature, QuantitativeDataStatistics> featureToQuantDataStatisticsMap) {
193
        featureToQuantDataStatisticsMap.clear();
194
        matrix.getDescriptions().stream()
195
        .filter(desc->desc instanceof SpecimenRowWrapperDTO)
196
        .forEach(o -> ((SpecimenRowWrapperDTO) o).getDescription().getElements().stream()
197
                .filter(descriptionElement -> descriptionElement instanceof QuantitativeData)
198
                .forEach(quantData -> {
199
                    Feature feature = ((QuantitativeData) quantData).getFeature();
200
                    QuantitativeDataStatistics dataStatistics = featureToQuantDataStatisticsMap.get(feature);
201
                    if(dataStatistics==null){
202
                        dataStatistics = new QuantitativeDataStatistics();
203
                    }
204
                    featureToQuantDataStatisticsMap.put(feature, dataStatistics);
205
                    dataStatistics.addQuantitativeData((QuantitativeData) quantData);
206
                }));
207
    }
208

    
209
}
(7-7/19)