]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/labels/LabelContribution.java
Merge branch 'feature/funcwrite'
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / labels / LabelContribution.java
1 /*******************************************************************************
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.browsing.ui.model.labels;
13
14 import java.util.Collections;
15 import java.util.Map;
16
17 import org.simantics.browsing.ui.BuiltinKeys;
18 import org.simantics.browsing.ui.NodeContext;
19 import org.simantics.browsing.ui.common.ColumnKeys;
20 import org.simantics.browsing.ui.common.ErrorLogger;
21 import org.simantics.browsing.ui.model.InvalidContribution;
22 import org.simantics.browsing.ui.model.nodetypes.NodeType;
23 import org.simantics.browsing.ui.model.tests.Test;
24 import org.simantics.browsing.ui.model.visuals.VisualsContribution;
25 import org.simantics.db.ReadGraph;
26 import org.simantics.db.exception.DatabaseException;
27 import org.simantics.db.layer0.exception.PendingVariableException;
28
29 /**
30  * Produces labels for nodes of given node type.
31  * @author Hannu Niemistö
32  */
33 public class LabelContribution extends VisualsContribution {
34     LabelRule labelRule;
35
36     public LabelContribution(NodeType nodeType, Test test, LabelRule labelRule, double priority) throws InvalidContribution {
37         super(nodeType, test, priority);
38         if(!labelRule.isCompatible(
39                 nodeType.getContentType()
40                 ))
41             throw new InvalidContribution("Label rule is not compatible with the content type.");
42         this.labelRule = labelRule;
43     }
44
45     /**
46      * Returns a label for the node or null, if contribution is
47      * not suitable for the input.
48      */
49     public Map<String, String> getLabel(ReadGraph graph, NodeContext context) {
50         Object content = context.getConstant(BuiltinKeys.INPUT);
51         try {
52             if(test == null || test.test(graph, content))
53                 return labelRule.getLabel(graph, content);
54             else
55                 return null;
56         } catch(PendingVariableException e) {
57             return Collections.singletonMap(ColumnKeys.SINGLE, "");
58         } catch(DatabaseException e) {
59             ErrorLogger.defaultLogError(e);
60             return Collections.singletonMap(ColumnKeys.SINGLE, "");
61         }
62     }
63 }