]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.common/src/org/simantics/browsing/ui/common/processors/ComparableSelectorQueryProcessor.java
4e359ba83c57c4fab1cac8e3425777fbd2c5ecc8
[simantics/platform.git] / bundles / org.simantics.browsing.ui.common / src / org / simantics / browsing / ui / common / processors / ComparableSelectorQueryProcessor.java
1 /*******************************************************************************\r
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
3  * in Industry THTH ry.\r
4  * All rights reserved. This program and the accompanying materials\r
5  * are made available under the terms of the Eclipse Public License v1.0\r
6  * which accompanies this distribution, and is available at\r
7  * http://www.eclipse.org/legal/epl-v10.html\r
8  *\r
9  * Contributors:\r
10  *     VTT Technical Research Centre of Finland - initial API and implementation\r
11  *******************************************************************************/\r
12 package org.simantics.browsing.ui.common.processors;\r
13 \r
14 import java.util.Collection;\r
15 \r
16 import org.simantics.browsing.ui.BuiltinKeys;\r
17 import org.simantics.browsing.ui.NodeContext;\r
18 import org.simantics.browsing.ui.NodeQueryManager;\r
19 import org.simantics.browsing.ui.NodeContext.QueryKey;\r
20 import org.simantics.browsing.ui.content.ComparableContext;\r
21 import org.simantics.browsing.ui.content.ComparableContextFactory;\r
22 import org.simantics.browsing.ui.content.PrunedChildrenResult;\r
23 \r
24 public class ComparableSelectorQueryProcessor extends AbstractNodeQueryProcessor<ComparableContext[]> {\r
25 \r
26     @Override\r
27     public QueryKey<ComparableContext[]> getIdentifier() {\r
28         return BuiltinKeys.COMPARABLE_CHILDREN;\r
29     }\r
30 \r
31     private ComparableContext[] build(NodeQueryManager manager, NodeContext context, ComparableContextFactory factory) {\r
32         PrunedChildrenResult pruned = manager.query(context, BuiltinKeys.PRUNED_CHILDREN);\r
33         NodeContext[] prunedChildren = pruned.getPrunedChildren();\r
34         return factory.create(manager, context, prunedChildren);\r
35     }\r
36 \r
37     @Override\r
38     public ComparableContext[] query(NodeQueryManager manager, NodeContext context) {\r
39         Collection<ComparableContextFactory> comparators = manager.query(context, BuiltinKeys.COMPARABLE_FACTORIES);\r
40         if (comparators.isEmpty())\r
41             return null;\r
42 \r
43         ComparableContextFactory selectedFactory = manager.query(context, new BuiltinKeys.SelectedComparableFactoryKey(comparators));\r
44         if (selectedFactory == null)\r
45             return null;\r
46 \r
47         return build(manager, context, selectedFactory);\r
48     }\r
49 \r
50     @Override\r
51     public String toString() {\r
52         return "SelectedComparableProcessor";\r
53     }\r
54 \r
55 }\r