Project

General

Profile

Download (28.3 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.view.checklist.e4;
10

    
11
import java.util.ArrayList;
12
import java.util.Arrays;
13
import java.util.HashMap;
14
import java.util.HashSet;
15
import java.util.Iterator;
16
import java.util.List;
17
import java.util.Map;
18
import java.util.Set;
19
import java.util.SortedSet;
20
import java.util.TreeSet;
21
import java.util.UUID;
22

    
23
import javax.inject.Inject;
24

    
25
import org.apache.commons.collections4.map.LinkedMap;
26
import org.apache.log4j.Logger;
27
import org.eclipse.e4.ui.services.EMenuService;
28
import org.eclipse.jface.layout.GridDataFactory;
29
import org.eclipse.jface.layout.GridLayoutFactory;
30
import org.eclipse.jface.wizard.WizardDialog;
31
import org.eclipse.nebula.widgets.nattable.NatTable;
32
import org.eclipse.nebula.widgets.nattable.config.ConfigRegistry;
33
import org.eclipse.nebula.widgets.nattable.config.DefaultNatTableStyleConfiguration;
34
import org.eclipse.nebula.widgets.nattable.coordinate.PositionCoordinate;
35
import org.eclipse.nebula.widgets.nattable.data.IDataProvider;
36
import org.eclipse.nebula.widgets.nattable.data.IRowDataProvider;
37
import org.eclipse.nebula.widgets.nattable.data.ListDataProvider;
38
import org.eclipse.nebula.widgets.nattable.extension.e4.selection.E4SelectionListener;
39
import org.eclipse.nebula.widgets.nattable.extension.glazedlists.filterrow.DefaultGlazedListsFilterStrategy;
40
import org.eclipse.nebula.widgets.nattable.filterrow.FilterRowHeaderComposite;
41
import org.eclipse.nebula.widgets.nattable.freeze.CompositeFreezeLayer;
42
import org.eclipse.nebula.widgets.nattable.freeze.FreezeHelper;
43
import org.eclipse.nebula.widgets.nattable.freeze.FreezeLayer;
44
import org.eclipse.nebula.widgets.nattable.grid.GridRegion;
45
import org.eclipse.nebula.widgets.nattable.grid.command.ClientAreaResizeCommand;
46
import org.eclipse.nebula.widgets.nattable.grid.data.DefaultColumnHeaderDataProvider;
47
import org.eclipse.nebula.widgets.nattable.grid.data.DefaultCornerDataProvider;
48
import org.eclipse.nebula.widgets.nattable.grid.data.DefaultRowHeaderDataProvider;
49
import org.eclipse.nebula.widgets.nattable.grid.layer.ColumnHeaderLayer;
50
import org.eclipse.nebula.widgets.nattable.grid.layer.CornerLayer;
51
import org.eclipse.nebula.widgets.nattable.grid.layer.DefaultColumnHeaderDataLayer;
52
import org.eclipse.nebula.widgets.nattable.grid.layer.DefaultRowHeaderDataLayer;
53
import org.eclipse.nebula.widgets.nattable.grid.layer.GridLayer;
54
import org.eclipse.nebula.widgets.nattable.grid.layer.RowHeaderLayer;
55
import org.eclipse.nebula.widgets.nattable.layer.AbstractLayer;
56
import org.eclipse.nebula.widgets.nattable.layer.DataLayer;
57
import org.eclipse.nebula.widgets.nattable.layer.ILayer;
58
import org.eclipse.nebula.widgets.nattable.selection.SelectionLayer;
59
import org.eclipse.nebula.widgets.nattable.sort.config.SingleClickSortConfiguration;
60
import org.eclipse.nebula.widgets.nattable.style.HorizontalAlignmentEnum;
61
import org.eclipse.nebula.widgets.nattable.style.theme.ModernNatTableThemeConfiguration;
62
import org.eclipse.nebula.widgets.nattable.util.GUIHelper;
63
import org.eclipse.swt.SWT;
64
import org.eclipse.swt.events.SelectionAdapter;
65
import org.eclipse.swt.events.SelectionEvent;
66
import org.eclipse.swt.layout.GridData;
67
import org.eclipse.swt.layout.GridLayout;
68
import org.eclipse.swt.widgets.Button;
69
import org.eclipse.swt.widgets.Composite;
70
import org.eclipse.swt.widgets.Label;
71
import org.eclipse.swt.widgets.Text;
72

    
73
import ca.odell.glazedlists.BasicEventList;
74
import ca.odell.glazedlists.EventList;
75
import eu.etaxonomy.cdm.api.service.IVocabularyService;
76
import eu.etaxonomy.cdm.api.service.dto.TaxonDescriptionDTO;
77
import eu.etaxonomy.cdm.api.service.dto.TaxonDistributionDTO;
78
import eu.etaxonomy.cdm.model.common.DefinedTermBase;
79
import eu.etaxonomy.cdm.model.common.Language;
80
import eu.etaxonomy.cdm.model.common.OrderedTermBase;
81
import eu.etaxonomy.cdm.model.common.OrderedTermComparator;
82
import eu.etaxonomy.cdm.model.common.Representation;
83
import eu.etaxonomy.cdm.model.common.TermIdInVocabularyComparator;
84
import eu.etaxonomy.cdm.model.common.TermLanguageComparator;
85
import eu.etaxonomy.cdm.model.common.TermType;
86
import eu.etaxonomy.cdm.model.common.TermVocabulary;
87
import eu.etaxonomy.cdm.model.description.DescriptionElementBase;
88
import eu.etaxonomy.cdm.model.description.Distribution;
89
import eu.etaxonomy.cdm.model.description.TaxonDescription;
90
import eu.etaxonomy.cdm.model.location.NamedArea;
91
import eu.etaxonomy.cdm.model.metadata.PreferencePredicate;
92
import eu.etaxonomy.cdm.model.reference.Reference;
93
import eu.etaxonomy.taxeditor.editor.EditorUtil;
94
import eu.etaxonomy.taxeditor.editor.l10n.Messages;
95
import eu.etaxonomy.taxeditor.model.AbstractUtility;
96
import eu.etaxonomy.taxeditor.preference.EditorPreferencePredicate;
97
import eu.etaxonomy.taxeditor.preference.PreferencesUtil;
98
import eu.etaxonomy.taxeditor.preference.Resources;
99
import eu.etaxonomy.taxeditor.preference.wizard.AvailableDistributionWizard;
100
import eu.etaxonomy.taxeditor.store.CdmStore;
101
import eu.etaxonomy.taxeditor.store.StoreUtil;
102
import eu.etaxonomy.taxeditor.ui.dialog.selection.ReferenceSelectionDialog;
103

    
104
/**
105
 * @author k.luther
106
 * @since 27.11.2018
107
 *
108
 */
109
public class DistributionEditor extends Composite {
110

    
111

    
112
    private static final String DISTRIBUTION_EDITOR = "Distribution Editor"; //$NON-NLS-1$
113
    private static final String LOADING_TAXA = Messages.ChecklistEditor_LOAD_TAXA;
114
    private static final String UNKNOWN = Messages.ChecklistEditor_UNKNOWN;
115
    private static final String ELEMENT_COUNT = Messages.ChecklistEditor_ELEMENT_COUNT;
116
    public static final String TYPE_FILTER_TEXT = "type filter text"; //$NON-NLS-1$
117

    
118
    static final String TAXON_COLUMN = "taxon_column"; //$NON-NLS-1$
119
    static final String RANK_COLUMN = "collector_column"; //$NON-NLS-1$
120

    
121
    private static final Logger logger = Logger.getLogger(DistributionEditor.class);
122
    @Inject
123
    private EMenuService menuService;
124
    private NatTable natTable;
125
    private Label statusLabel;
126
    private Label statusLabelSourceReference;
127
    private Reference defaultSource;
128

    
129
    private Map<Integer, NamedArea> areaToColumnIndexMap= new HashMap();
130
    private int firstDataColumnIndex;
131

    
132
    private ListDataProvider<TaxonDistributionDTO> bodyDataProvider;
133
    private LinkedMap<String, String> propertyToLabelMap = new LinkedMap<>();
134

    
135
    private boolean isShowRank = false;
136
    private Integer countNodes;
137
    private Text searchText;
138

    
139
    EventList<TaxonDistributionDTO> taxonList;
140
    Map<UUID,Map<NamedArea,Set<DescriptionElementBase>>> taxonDistributionMap = new HashMap<>();
141

    
142
    List<TaxonDistributionDTO> descriptionsToSave = new ArrayList<>();
143

    
144

    
145
    SortedSet<DefinedTermBase> areas;
146
    DistributionEditorPart part;
147
    BodyLayerStack<TaxonDistributionDTO> bodyLayerStack;
148
    private FreezeLayer freezeLayer;
149
    private ConfigRegistry configRegistry;
150
    private AbstractLayer topMostLayer;
151

    
152
    private SelectionLayer selectionLayer;
153

    
154

    
155

    
156
 //  private FixedSummaryRowLayer summaryRowLayer;
157

    
158

    
159
    /**
160
     * @param parent
161
     * @param style
162
     */
163
    public DistributionEditor(Composite parent, DistributionEditorPart part) {
164
        super(parent, SWT.NULL);
165
        isShowRank = PreferencesUtil.getBooleanValue(EditorPreferencePredicate.ShowRankInDistributionEditor.getKey());
166
        this.part = part;
167
        this.setLayout(new GridLayout());
168
        GridLayoutFactory.fillDefaults().applyTo(parent);
169

    
170
        Composite topComposite = new Composite(parent, SWT.NONE);
171
        createTopComposite(topComposite);
172

    
173

    
174

    
175
        natTable = new NatTable(parent, false);
176
        parent.pack();
177

    
178
        Composite bottomComposite = new Composite(parent, SWT.NONE);
179
        GridLayoutFactory.fillDefaults().applyTo(bottomComposite);
180
        createStatusBar(bottomComposite);
181
    }
182

    
183
    public boolean isShowRank() {
184
        return isShowRank;
185
    }
186

    
187
    public void setShowRank(boolean isShowRank) {
188
        this.isShowRank = isShowRank;
189
    }
190

    
191
    public int getFirstDataColumnIndex() {
192
        return firstDataColumnIndex;
193
    }
194

    
195
    public void setFirstDataColumnIndex(int firstDataColumnIndex) {
196
        this.firstDataColumnIndex = firstDataColumnIndex;
197
    }
198

    
199
    public LinkedMap<String, String> getPropertyToLabelMap() {
200
        return propertyToLabelMap;
201
    }
202

    
203
    public void setPropertyToLabelMap(LinkedMap<String, String> propertyToLabelMap) {
204
        this.propertyToLabelMap = propertyToLabelMap;
205
    }
206

    
207
    public Map<Integer, NamedArea> getAreaToColumnIndexMap() {
208
        return areaToColumnIndexMap;
209
    }
210

    
211

    
212
    public void setAreaToColumnIndexMap(Map<Integer, NamedArea> areaToColumnIndexMap) {
213
        this.areaToColumnIndexMap = areaToColumnIndexMap;
214
    }
215

    
216

    
217
    public List<TaxonDistributionDTO> getDescriptionsToSave() {
218
        return descriptionsToSave;
219
    }
220

    
221
    public void setDescriptionsToSave(List<TaxonDistributionDTO> descriptionsToSave) {
222
        this.descriptionsToSave = descriptionsToSave;
223
    }
224

    
225

    
226

    
227
    private void createStatusBar(Composite composite) {
228
        GridData gridData = new GridData();
229
        gridData.horizontalSpan = 2;
230
        gridData.grabExcessHorizontalSpace = true;
231
        gridData.horizontalAlignment = GridData.FILL;
232
        GridLayout gridLayout = new GridLayout();
233
        gridLayout.numColumns = 2;
234
        composite.setLayoutData(gridData);
235
        composite.setLayout(gridLayout);
236

    
237

    
238
        gridData = new GridData();
239
        gridData.horizontalSpan = 1;
240
        gridData.grabExcessHorizontalSpace = true;
241
        gridData.horizontalAlignment = GridData.FILL;
242

    
243
        statusLabel = new Label(composite, SWT.LEFT);
244
        statusLabel.setText(ELEMENT_COUNT + (taxonList != null ? taxonList.size() : UNKNOWN));
245
        statusLabel.setLayoutData(gridData);
246

    
247
        statusLabelSourceReference = new Label(composite, SWT.RIGHT);
248

    
249
        statusLabelSourceReference.setLayoutData(gridData);
250

    
251
        if (defaultSource != null){
252
            statusLabelSourceReference.setText(Messages.DistributionEditor_defaultSource + defaultSource.getAbbrevTitle() != null? defaultSource.getAbbrevTitle() : defaultSource.getAbbrevTitleCache());
253

    
254
        }
255
    }
256

    
257
    private void applyStyles(){
258
        ModernNatTableThemeConfiguration configuration = new ModernNatTableThemeConfiguration();
259
        configuration.summaryRowHAlign = HorizontalAlignmentEnum.CENTER;
260
        // NOTE: Getting the colors and fonts from the GUIHelper ensures that
261
        // they are disposed properly (required by SWT)
262
        configuration.cHeaderBgColor = GUIHelper.getColor(211, 211, 211);
263
        configuration.rHeaderBgColor = GUIHelper.getColor(211, 211, 211);
264
        natTable.addConfiguration(configuration);
265

    
266
    }
267

    
268
    private void configureNatTable(ConfigRegistry configRegistry,
269
            AbstractLayer topMostLayer) {
270
        /**
271
         * CONFIGURATION
272
         */
273
        natTable.setConfigRegistry(configRegistry);
274

    
275
        applyStyles();
276

    
277
        //add default configuration because autoconfigure is set to false in constructor
278
        natTable.addConfiguration(new DefaultNatTableStyleConfiguration());
279

    
280

    
281

    
282
        // override the default sort configuration and change the mouse bindings
283
        // to sort on a single click
284

    
285
        natTable.addConfiguration(new SingleClickSortConfiguration());
286
        natTable.addConfiguration(new FilterRowConfiguration(this));
287

    
288
        // add the header menu configuration for adding the column header menu
289
        // with hide/show actions
290
        natTable.addConfiguration(new DistributionEditorHeaderMenuConfiguration(natTable));
291

    
292
        // add custom configuration for data conversion and add column labels to viewport layer
293
        topMostLayer.addConfiguration(new DistributionCellEditorDataConversionConfiguration(this));
294

    
295
        natTable.configure();
296
    }
297

    
298
    public void createTable(){
299
        /**
300
         * layers
301
         */
302

    
303
        createLayers();
304

    
305
        /**
306
         * configuration
307
         */
308
        configureNatTable( configRegistry, topMostLayer);
309

    
310
        /**
311
         * handlers and listeners
312
         */
313
        registerHandlersAndListeners(topMostLayer);
314
        FreezeHelper.freeze(freezeLayer, bodyLayerStack.getViewPortLayer(),
315
                new PositionCoordinate(bodyLayerStack.getViewPortLayer(), 0, 0),
316
                new PositionCoordinate(bodyLayerStack.getViewPortLayer(), 0, -1));
317
        //grab all space
318
        GridDataFactory.fillDefaults().grab(true, true).applyTo(natTable);
319

    
320
        this.layout();
321
        natTable.doCommand(new ClientAreaResizeCommand(natTable));
322
      //  boolean ok = natTable.doCommand(new ClientAreaResizeCommand(natTable));
323

    
324
    }
325

    
326

    
327
    private void createLayers() {
328

    
329
        DistributionColumnAccessor columnPropertyAccessor = new DistributionColumnAccessor(this);
330

    
331
        DistributionEditorConfigLabelAccumulator labelAccumulator = new DistributionEditorConfigLabelAccumulator(this);
332
        bodyLayerStack = new BodyLayerStack<>(taxonList, columnPropertyAccessor, new TaxonDistributionDtoComparator(), labelAccumulator);
333

    
334
        bodyDataProvider = bodyLayerStack.getBodyDataProvider();
335

    
336

    
337

    
338
        propertyToLabelMap.put(TAXON_COLUMN, Messages.ChecklistEditor_TAXON);
339
        if (isShowRank){
340
            propertyToLabelMap.put(RANK_COLUMN, Messages.ChecklistEditor_RANK);
341
        }
342
        configRegistry = new ConfigRegistry();
343

    
344
        initLabels();
345
        this.selectionLayer = bodyLayerStack.getSelectionLayer();
346

    
347

    
348

    
349
        freezeLayer = new FreezeLayer(selectionLayer);
350
        final CompositeFreezeLayer compositeFreezeLayer = new CompositeFreezeLayer(
351
                freezeLayer,  bodyLayerStack.getViewPortLayer(), selectionLayer);
352

    
353
        // as the selection mouse bindings are registered for the region label
354
        // GridRegion.BODY
355
        // we need to set that region label to the viewport so the selection via mouse
356
        // is working correctly
357
        compositeFreezeLayer.setRegionName(GridRegion.BODY);
358

    
359

    
360
        IDataProvider columnHeaderDataProvider =
361
                new DefaultColumnHeaderDataProvider(propertyToLabelMap.values().toArray(new String[] {}), propertyToLabelMap);
362
        DataLayer columnHeaderDataLayer = new DefaultColumnHeaderDataLayer(columnHeaderDataProvider);
363
        ILayer columnHeaderLayer = new ColumnHeaderLayer(
364
            columnHeaderDataLayer,
365
            compositeFreezeLayer,
366
            selectionLayer);
367

    
368
        FilterRowHeaderComposite<TaxonDistributionDTO> filterRowHeaderLayer =
369
                new FilterRowHeaderComposite<>(
370
                        new DefaultGlazedListsFilterStrategy<>(
371
                                bodyLayerStack.getFilterList(),
372
                                columnPropertyAccessor,
373
                                configRegistry),
374
                        columnHeaderLayer,
375
                        columnHeaderDataLayer.getDataProvider(),
376
                        configRegistry);
377

    
378

    
379

    
380
     // build the row header layer stack
381
        IDataProvider rowHeaderDataProvider = new DefaultRowHeaderDataProvider(bodyDataProvider);
382
        DataLayer rowHeaderDataLayer = new DefaultRowHeaderDataLayer(rowHeaderDataProvider);
383
        ILayer rowHeaderLayer = new RowHeaderLayer(
384
            rowHeaderDataLayer,
385
            compositeFreezeLayer,
386
            selectionLayer);
387

    
388

    
389

    
390
        IDataProvider cornerDataProvider =
391
                new DefaultCornerDataProvider(
392
                    columnHeaderDataProvider,
393
                    rowHeaderDataProvider);
394
        DataLayer cornerDataLayer = new DataLayer(cornerDataProvider);
395
        ILayer cornerLayer = new CornerLayer(
396
            cornerDataLayer,
397
            rowHeaderLayer,
398
            filterRowHeaderLayer);
399

    
400
        GridLayer gridLayer = new GridLayer(
401
                compositeFreezeLayer,
402
                filterRowHeaderLayer,
403
                rowHeaderLayer,
404
                cornerLayer);
405

    
406
        natTable.setLayer(gridLayer);
407

    
408
        topMostLayer = compositeFreezeLayer;
409

    
410

    
411
    }
412

    
413
    /**
414
     * @param parent
415
     * @return
416
     */
417
    private Text createSearchBar(Composite parent) {
418

    
419
        Button button1 = new Button(parent, SWT.PUSH );
420
        GridData gridData2 = new GridData();
421
        gridData2.horizontalSpan = 1;
422
        gridData2.horizontalAlignment = SWT.RIGHT;
423

    
424
        button1.setLayoutData(gridData2);
425

    
426

    
427
        button1.setText(Messages.ChecklistEditor_DIST_STATUS);
428
        button1.setToolTipText(Messages.ChecklistEditor_DIST_STATUS_TOOLTIP);
429
        button1.addSelectionListener(new SelectionAdapter() {
430
            @Override
431
            public void widgetSelected(SelectionEvent event) {
432
                AvailableDistributionWizard availableDistributionWizard = new AvailableDistributionWizard();
433
                WizardDialog dialog = new WizardDialog(StoreUtil.getShell(),
434
                        availableDistributionWizard);
435

    
436
                int open = dialog.open();
437
                if(open == 0){
438
                    reload();
439
                }
440
            }
441
        });
442

    
443
        Button button2 = new Button(parent, SWT.PUSH );
444
        GridData gridData3 = new GridData();
445
        gridData2.horizontalSpan = 1;
446
        button2.setLayoutData(gridData3);
447

    
448

    
449
        button2.setText(Messages.ChecklistEditor_DEFAULT_SOURCE);
450
        button2.setToolTipText(Messages.ChecklistEditor_DEFAULT_SOURCE_TOOLTIP);
451
        button2.addSelectionListener(new SelectionAdapter() {
452

    
453
            @Override
454
            public void widgetSelected(SelectionEvent event) {
455
                defaultSource = ReferenceSelectionDialog.select(AbstractUtility.getShell(), null);
456

    
457
                String defaultSourceStr = (defaultSource == null) ? "" : Messages.DistributionEditor_defaultSource + defaultSource.getTitleCache(); //$NON-NLS-1$
458
                if (defaultSourceStr.length()> 100){
459
                    defaultSourceStr = defaultSourceStr.substring(0, 98) + "..."; //$NON-NLS-1$
460
                }
461
                statusLabelSourceReference.setText(defaultSourceStr);
462

    
463
                button2.setBackground(EditorUtil.getColor(Resources.COLOR_CONTROL_SELECTED));
464
            }
465

    
466
        });
467

    
468
        Button button3 = new Button(parent, SWT.PUSH );
469

    
470
        button3.setLayoutData(gridData3);
471
        button3.setText(Messages.ChecklistEditor_REMOVE_DEFAULT_SOURCE);
472
        button3.addSelectionListener(new SelectionAdapter() {
473

    
474
            @Override
475
            public void widgetSelected(SelectionEvent event) {
476
                defaultSource = null;
477

    
478
                String defaultSourceStr = (defaultSource == null) ? "" : Messages.DistributionEditor_defaultSource + defaultSource.getTitleCache(); //$NON-NLS-1$
479
                if (defaultSourceStr.length()> 100){
480
                    defaultSourceStr = defaultSourceStr.substring(0, 98) + "..."; //$NON-NLS-1$
481
                }
482
                statusLabelSourceReference.setText(defaultSourceStr);
483

    
484
                button3.setBackground(EditorUtil.getColor(Resources.COLOR_CONTROL_SELECTED));
485
            }
486

    
487
        });
488

    
489
        parent.pack();
490
        return searchText;
491
    }
492
    /**
493
    * This method should only be called for adding new Distribution columns and reloading the table.<br>
494
    * It will hide the old distribution column and load the newly added columns.<br>
495
    * <p>
496
    * <b>Notice:</b> for data update please use <b>refresh()</b>
497
    *
498
    */
499
   @SuppressWarnings({ "unchecked", "rawtypes" })
500
   public void reload(){
501
       this.areaToColumnIndexMap.clear();
502
       this.areas.clear();
503
       this.propertyToLabelMap.clear();
504
       createTable();
505
       natTable.redraw();
506
    }
507

    
508
    /**
509
     * @param parent
510
     */
511
    private void createTopComposite(Composite parent) {
512
        GridLayout gridLayout = new GridLayout(3, false);
513
        gridLayout.marginWidth = 0;
514
        gridLayout.marginHeight = 0;
515
        GridData gridData2 = new GridData();
516
        gridData2.horizontalSpan = 1;
517
        gridData2.horizontalAlignment = SWT.RIGHT;
518
        gridData2.horizontalIndent = 3;
519
        parent.setLayoutData(gridData2);
520
        parent.setLayout(gridLayout);
521
        searchText = createSearchBar(parent);
522

    
523

    
524
    }
525
    public void loadDistributions(List<TaxonDistributionDTO> taxonList) {
526
        if (this.taxonList == null){
527
            this.taxonList = new BasicEventList<>();
528
        }
529
       taxonList.stream().forEach(wrapper->DistributionEditor.this.taxonList.add(wrapper));
530
       statusLabel.setText(ELEMENT_COUNT + (taxonList != null ? taxonList.size() : UNKNOWN));
531
       createTaxonDistributionMap();
532
    }
533

    
534
    protected void createTaxonDistributionMap() {
535
        Iterator<TaxonDistributionDTO> iterator = this.taxonList.iterator();
536
           while (iterator.hasNext()){
537
               TaxonDistributionDTO dto = iterator.next();
538
               TaxonDescriptionDTO descriptionDto = dto.getDescriptionsWrapper();
539
               for (TaxonDescription desc: descriptionDto.getDescriptions()){
540
                   if(this.part.getCdmEntitySession()!=null){
541
                       this.part.getCdmEntitySession().load(desc, true);
542
                   }
543
                   for (DescriptionElementBase descElement: desc.getElements()){
544
                       if (descElement instanceof Distribution){
545
                           Map<NamedArea, Set<DescriptionElementBase>> distributionsMap = taxonDistributionMap.get(dto.getTaxonUuid());
546

    
547
                           if (distributionsMap == null){
548
                               distributionsMap = new HashMap();
549
                               taxonDistributionMap.put(dto.getTaxonUuid(), distributionsMap);
550
                           }
551
                           Set<DescriptionElementBase> distributions = distributionsMap.get(((Distribution) descElement).getArea());
552
                           if (distributions == null){
553
                               distributions = new HashSet();
554
                               distributionsMap.put(((Distribution)descElement).getArea(), distributions);
555
                           }
556
                           distributions.add(descElement);
557

    
558
                       }
559
                   }
560
               }
561
           }
562
    }
563

    
564

    
565

    
566

    
567

    
568
    private void initLabels() {
569

    
570
        int index = 1;
571
        if (isShowRank){
572
            index++;
573
        }
574

    
575
        loadNamedAreas();
576
        if (areas == null){
577
            areas = new TreeSet<>();
578
        }
579
        for (DefinedTermBase area: areas) {
580
            this.areaToColumnIndexMap.put(index++, (NamedArea)area);
581
            String areaLabel;
582
            //TODO: adapt to preference
583
            Representation rep = area.getPreferredRepresentation(CdmStore.getDefaultLanguage());
584
            String label = rep.getLabel();
585
            if (label == null){
586
                label = area.getTitleCache();
587
            }
588
            if (PreferencesUtil.isShowIdInVocabularyInChecklistEditor()){
589
                if (area.getIdInVocabulary() != null){
590
                    areaLabel = area.getIdInVocabulary();
591
                } else{
592
                    areaLabel = label;
593
                }
594
            }else if (PreferencesUtil.isShowSymbol1InChecklistEditor()){
595
                if (area.getSymbol() != null){
596
                    areaLabel = area.getSymbol();
597
                } else{
598
                    areaLabel = label;
599
                }
600
            }else if (PreferencesUtil.isShowSymbol2InChecklistEditor()){
601
                if (area.getSymbol2() != null){
602
                    areaLabel = area.getSymbol2();
603
                } else{
604
                    areaLabel = label;
605
                }
606
            }else{
607
                areaLabel = label;
608
            }
609

    
610

    
611
            //String areaLabel = area.getLabel();
612
            String property = areaLabel;
613
            propertyToLabelMap.put(property, areaLabel);
614
        }
615

    
616
    }
617

    
618
    private SortedSet<DefinedTermBase> loadNamedAreas() {
619
        //IPreferenceStore preferenceStore = PreferencesUtil.getPreferenceStore();
620

    
621
        String valuesAreas = PreferencesUtil.getStringValue(EditorPreferencePredicate.AvailableDistributionAreaTerms.getKey());
622
        String values = PreferencesUtil.getStringValue(PreferencePredicate.AvailableDistributionAreaVocabularies.getKey());
623
        Set<UUID> uuidList = new HashSet<UUID>();
624
        String[] split;
625
        List<String> listValue;
626
        List<DefinedTermBase> termlist = new ArrayList<DefinedTermBase>();
627
        if (values != null && values != "") { //$NON-NLS-1$
628
            split = values.split(";"); //$NON-NLS-1$
629
            listValue = Arrays.asList(split);
630

    
631

    
632
            UUID uuid;
633
            for(String s : listValue){
634
                uuid = UUID.fromString(s);
635
                uuidList.add(uuid);
636

    
637
            }
638
        }
639

    
640
        List<TermVocabulary> vocs = new ArrayList<>();
641
        IVocabularyService service =  CdmStore.getService(IVocabularyService.class);
642
        if (uuidList.isEmpty()){
643
            List<TermVocabulary<DefinedTermBase>> vocList = CdmStore.getService(IVocabularyService.class).findByTermType(TermType.NamedArea, null);
644
            vocs.addAll(vocList);
645
        }else{
646
            vocs= service.find(uuidList);
647
        }
648
        split = valuesAreas.split(";"); //$NON-NLS-1$
649
        listValue = Arrays.asList(split);
650
        for (TermVocabulary voc: vocs){
651
            termlist.addAll(service.getTerms(voc, null, null, null, null).getRecords());
652
        }
653
        List<DefinedTermBase> filteredList = new ArrayList();
654
        for (DefinedTermBase area: termlist){
655
            if (listValue.contains(area.getUuid().toString())) {
656
                filteredList.add(area);
657
            }
658

    
659
        }
660

    
661
        if (PreferencesUtil.isSortNamedAreaByOrderInVocabulary()){
662
            areas =  getTermsOrderedByVocabularyOrder(filteredList);
663
        } else if (PreferencesUtil.isShowIdInVocabularyInChecklistEditor()){
664
            areas = getTermsOrderedByIdInVocabulary(filteredList);
665
        }else{
666
            areas =  getTermsOrderedByLabels(filteredList, CdmStore.getDefaultLanguage());
667
        }
668

    
669
        return null;
670
    }
671

    
672
    public SortedSet<DefinedTermBase> getTermsOrderedByLabels(List<DefinedTermBase> listTerm,Language language){
673
        TermLanguageComparator<?> comp = new TermLanguageComparator<>();
674
        comp.setCompareLanguage(language);
675
        SortedSet<DefinedTermBase> result = new TreeSet(comp);
676
        if(listTerm != null){
677
            result.addAll(listTerm);
678
        }
679
        return result;
680
    }
681

    
682
    public SortedSet<DefinedTermBase> getTermsOrderedByIdInVocabulary(List<DefinedTermBase> namedAreas) {
683
        TermIdInVocabularyComparator<?> comp = new TermIdInVocabularyComparator<>();
684

    
685
        SortedSet<DefinedTermBase> result = new TreeSet(comp);
686
        if(namedAreas != null){
687
            result.addAll(namedAreas);
688
        }
689
        return result;
690
    }
691

    
692
    public SortedSet<DefinedTermBase> getTermsOrderedByVocabularyOrder(List<DefinedTermBase> listAreas){
693
        HashMap<TermVocabulary<DefinedTermBase>, List<DefinedTermBase>> vocs = new HashMap<>();
694
        OrderedTermComparator<?> comp = new OrderedTermComparator<>();
695
        boolean allOrderedTerms = true;
696
        List<TermVocabulary> alreadyOrderIndexNull = new ArrayList<>();
697
        for (DefinedTermBase term: listAreas){
698
            if (!(term instanceof OrderedTermBase)){
699
                allOrderedTerms = false;
700
                break;
701
            }else if (((OrderedTermBase)term).getOrderIndex() == 0){
702
                if(alreadyOrderIndexNull.contains(term.getVocabulary())) {
703
                    allOrderedTerms = false;
704
                    break;
705
                }else{
706
                    alreadyOrderIndexNull.add(term.getVocabulary());
707
                }
708

    
709

    
710
            }
711
        }
712
        if (allOrderedTerms){
713
            SortedSet<DefinedTermBase> result = new TreeSet(comp.reversed());
714
            result.addAll(listAreas);
715
            return result;
716
        }else{
717
            return getTermsOrderedByLabels(listAreas, PreferencesUtil.getGlobalLanguage());
718
        }
719

    
720

    
721
    }
722

    
723
    private void registerHandlersAndListeners(AbstractLayer topMostLayer) {
724
        //selection listener
725
        E4SelectionListener selectionListener = new DistributionCellSelectionListener(part.getSelectionService(),
726
                selectionLayer, bodyDataProvider, part);
727
        selectionLayer.addLayerListener(selectionListener);
728
        selectionListener.setFullySelectedRowsOnly(false);
729

    
730
        //register handler for view configuration menu
731
      //  natTable.registerCommandHandler(toolbar.getDisplayPersistenceDialogCommandHandler());
732
    }
733

    
734
    /**
735
     * @return
736
     */
737
    public IRowDataProvider<TaxonDistributionDTO> getBodyDataProvider() {
738
        return bodyDataProvider;
739
    }
740

    
741
    public void setDirty() {
742
        part.setDirty();
743
    }
744

    
745
    public Reference getDefaultSource(){
746
        return defaultSource;
747
    }
748

    
749
//    /**
750
//     * @param result
751
//     */
752
//    public void reloadDistributions() {
753
//       loadDistributions(taxonList);
754
//
755
//    }
756

    
757

    
758

    
759
}
(8-8/20)