Project

General

Profile

Download (27.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";
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("Default Source: " + 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) ? "" : "Default Source Reference: " + defaultSource.getTitleCache();
458
                if (defaultSourceStr.length()> 100){
459
                    defaultSourceStr = defaultSourceStr.substring(0, 98) + "...";
460
                }
461
                statusLabelSourceReference.setText(defaultSourceStr);
462

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

    
466
        });
467

    
468
        parent.pack();
469
        return searchText;
470
    }
471
    /**
472
    * This method should only be called for adding new Distribution columns and reloading the table.<br>
473
    * It will hide the old distribution column and load the newly added columns.<br>
474
    * <p>
475
    * <b>Notice:</b> for data update please use <b>refresh()</b>
476
    *
477
    */
478
   @SuppressWarnings({ "unchecked", "rawtypes" })
479
   public void reload(){
480
       this.areaToColumnIndexMap.clear();
481
       this.areas.clear();
482
       this.propertyToLabelMap.clear();
483
       createTable();
484
       natTable.redraw();
485
    }
486

    
487
    /**
488
     * @param parent
489
     */
490
    private void createTopComposite(Composite parent) {
491
        GridLayout gridLayout = new GridLayout(3, false);
492
        gridLayout.marginWidth = 0;
493
        gridLayout.marginHeight = 0;
494
        GridData gridData2 = new GridData();
495
        gridData2.horizontalSpan = 1;
496
        gridData2.horizontalAlignment = SWT.RIGHT;
497
        gridData2.horizontalIndent = 3;
498
        parent.setLayoutData(gridData2);
499
        parent.setLayout(gridLayout);
500
        searchText = createSearchBar(parent);
501

    
502

    
503
    }
504
    public void loadDistributions(List<TaxonDistributionDTO> taxonList) {
505
        if (this.taxonList == null){
506
            this.taxonList = new BasicEventList<>();
507
        }
508
       taxonList.stream().forEach(wrapper->DistributionEditor.this.taxonList.add(wrapper));
509
       statusLabel.setText(ELEMENT_COUNT + (taxonList != null ? taxonList.size() : UNKNOWN));
510
       createTaxonDistributionMap();
511
    }
512

    
513
    protected void createTaxonDistributionMap() {
514
        Iterator<TaxonDistributionDTO> iterator = this.taxonList.iterator();
515
           while (iterator.hasNext()){
516
               TaxonDistributionDTO dto = iterator.next();
517
               TaxonDescriptionDTO descriptionDto = dto.getDescriptionsWrapper();
518
               for (TaxonDescription desc: descriptionDto.getDescriptions()){
519
                   if(this.part.getCdmEntitySession()!=null){
520
                       this.part.getCdmEntitySession().load(desc, true);
521
                   }
522
                   for (DescriptionElementBase descElement: desc.getElements()){
523
                       if (descElement instanceof Distribution){
524
                           Map<NamedArea, Set<DescriptionElementBase>> distributionsMap = taxonDistributionMap.get(dto.getTaxonUuid());
525

    
526
                           if (distributionsMap == null){
527
                               distributionsMap = new HashMap();
528
                               taxonDistributionMap.put(dto.getTaxonUuid(), distributionsMap);
529
                           }
530
                           Set<DescriptionElementBase> distributions = distributionsMap.get(((Distribution) descElement).getArea());
531
                           if (distributions == null){
532
                               distributions = new HashSet();
533
                               distributionsMap.put(((Distribution)descElement).getArea(), distributions);
534
                           }
535
                           distributions.add(descElement);
536

    
537
                       }
538
                   }
539
               }
540
           }
541
    }
542

    
543

    
544

    
545

    
546

    
547
    private void initLabels() {
548

    
549
        int index = 1;
550
        if (isShowRank){
551
            index++;
552
        }
553

    
554
        loadNamedAreas();
555
        if (areas == null){
556
            areas = new TreeSet<>();
557
        }
558
        for (DefinedTermBase area: areas) {
559
            this.areaToColumnIndexMap.put(index++, (NamedArea)area);
560
            String areaLabel;
561
            //TODO: adapt to preference
562
            Representation rep = area.getPreferredRepresentation(CdmStore.getDefaultLanguage());
563
            String label = rep.getLabel();
564
            if (label == null){
565
                label = area.getTitleCache();
566
            }
567
            if (PreferencesUtil.isShowIdInVocabularyInChecklistEditor()){
568
                if (area.getIdInVocabulary() != null){
569
                    areaLabel = area.getIdInVocabulary();
570
                } else{
571
                    areaLabel = label;
572
                }
573
            }else if (PreferencesUtil.isShowSymbol1InChecklistEditor()){
574
                if (area.getSymbol() != null){
575
                    areaLabel = area.getSymbol();
576
                } else{
577
                    areaLabel = label;
578
                }
579
            }else if (PreferencesUtil.isShowSymbol2InChecklistEditor()){
580
                if (area.getSymbol2() != null){
581
                    areaLabel = area.getSymbol2();
582
                } else{
583
                    areaLabel = label;
584
                }
585
            }else{
586
                areaLabel = label;
587
            }
588

    
589

    
590
            //String areaLabel = area.getLabel();
591
            String property = areaLabel;
592
            propertyToLabelMap.put(property, areaLabel);
593
        }
594

    
595
    }
596

    
597
    private SortedSet<DefinedTermBase> loadNamedAreas() {
598
        //IPreferenceStore preferenceStore = PreferencesUtil.getPreferenceStore();
599

    
600
        String valuesAreas = PreferencesUtil.getStringValue(EditorPreferencePredicate.AvailableDistributionAreaTerms.getKey());
601
        String values = PreferencesUtil.getStringValue(PreferencePredicate.AvailableDistributionAreaVocabularies.getKey());
602
        Set<UUID> uuidList = new HashSet<UUID>();
603
        String[] split;
604
        List<String> listValue;
605
        List<DefinedTermBase> termlist = new ArrayList<DefinedTermBase>();
606
        if (values != null && values != "") { //$NON-NLS-1$
607
            split = values.split(";"); //$NON-NLS-1$
608
            listValue = Arrays.asList(split);
609

    
610

    
611
            UUID uuid;
612
            for(String s : listValue){
613
                uuid = UUID.fromString(s);
614
                uuidList.add(uuid);
615

    
616
            }
617
        }
618

    
619
        List<TermVocabulary> vocs = new ArrayList<>();
620
        IVocabularyService service =  CdmStore.getService(IVocabularyService.class);
621
        if (uuidList.isEmpty()){
622
            List<TermVocabulary<DefinedTermBase>> vocList = CdmStore.getService(IVocabularyService.class).findByTermType(TermType.NamedArea, null);
623
            vocs.addAll(vocList);
624
        }else{
625
            vocs= service.find(uuidList);
626
        }
627
        split = valuesAreas.split(";");
628
        listValue = Arrays.asList(split);
629
        for (TermVocabulary voc: vocs){
630
            termlist.addAll(service.getTerms(voc, null, null, null, null).getRecords());
631
        }
632
        List<DefinedTermBase> filteredList = new ArrayList();
633
        for (DefinedTermBase area: termlist){
634
            if (listValue.contains(area.getUuid().toString())) {
635
                filteredList.add(area);
636
            }
637

    
638
        }
639

    
640
        if (PreferencesUtil.isSortNamedAreaByOrderInVocabulary()){
641
            areas =  getTermsOrderedByVocabularyOrder(filteredList);
642
        } else if (PreferencesUtil.isShowIdInVocabularyInChecklistEditor()){
643
            areas = getTermsOrderedByIdInVocabulary(filteredList);
644
        }else{
645
            areas =  getTermsOrderedByLabels(filteredList, CdmStore.getDefaultLanguage());
646
        }
647

    
648
        return null;
649
    }
650

    
651
    public SortedSet<DefinedTermBase> getTermsOrderedByLabels(List<DefinedTermBase> listTerm,Language language){
652
        TermLanguageComparator<?> comp = new TermLanguageComparator<>();
653
        comp.setCompareLanguage(language);
654
        SortedSet<DefinedTermBase> result = new TreeSet(comp);
655
        if(listTerm != null){
656
            result.addAll(listTerm);
657
        }
658
        return result;
659
    }
660

    
661
    public SortedSet<DefinedTermBase> getTermsOrderedByIdInVocabulary(List<DefinedTermBase> namedAreas) {
662
        TermIdInVocabularyComparator<?> comp = new TermIdInVocabularyComparator<>();
663

    
664
        SortedSet<DefinedTermBase> result = new TreeSet(comp);
665
        if(namedAreas != null){
666
            result.addAll(namedAreas);
667
        }
668
        return result;
669
    }
670

    
671
    public SortedSet<DefinedTermBase> getTermsOrderedByVocabularyOrder(List<DefinedTermBase> listAreas){
672
        HashMap<TermVocabulary<DefinedTermBase>, List<DefinedTermBase>> vocs = new HashMap<>();
673
        OrderedTermComparator<?> comp = new OrderedTermComparator<>();
674
        boolean allOrderedTerms = true;
675
        List<TermVocabulary> alreadyOrderIndexNull = new ArrayList<>();
676
        for (DefinedTermBase term: listAreas){
677
            if (!(term instanceof OrderedTermBase)){
678
                allOrderedTerms = false;
679
                break;
680
            }else if (((OrderedTermBase)term).getOrderIndex() == 0){
681
                if(alreadyOrderIndexNull.contains(term.getVocabulary())) {
682
                    allOrderedTerms = false;
683
                    break;
684
                }else{
685
                    alreadyOrderIndexNull.add(term.getVocabulary());
686
                }
687

    
688

    
689
            }
690
        }
691
        if (allOrderedTerms){
692
            SortedSet<DefinedTermBase> result = new TreeSet(comp.reversed());
693
            result.addAll(listAreas);
694
            return result;
695
        }else{
696
            return getTermsOrderedByLabels(listAreas, PreferencesUtil.getGlobalLanguage());
697
        }
698

    
699

    
700
    }
701

    
702
    private void registerHandlersAndListeners(AbstractLayer topMostLayer) {
703
        //selection listener
704
        E4SelectionListener selectionListener = new DistributionCellSelectionListener(part.getSelectionService(),
705
                selectionLayer, bodyDataProvider, part);
706
        selectionLayer.addLayerListener(selectionListener);
707
        selectionListener.setFullySelectedRowsOnly(false);
708

    
709
        //register handler for view configuration menu
710
      //  natTable.registerCommandHandler(toolbar.getDisplayPersistenceDialogCommandHandler());
711
    }
712

    
713
    /**
714
     * @return
715
     */
716
    public IRowDataProvider<TaxonDistributionDTO> getBodyDataProvider() {
717
        return bodyDataProvider;
718
    }
719

    
720
    public void setDirty() {
721
        part.setDirty();
722
    }
723

    
724
    public Reference getDefaultSource(){
725
        return defaultSource;
726
    }
727

    
728
//    /**
729
//     * @param result
730
//     */
731
//    public void reloadDistributions() {
732
//       loadDistributions(taxonList);
733
//
734
//    }
735

    
736

    
737

    
738
}
(8-8/20)