]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.graph.impl/src/org/simantics/browsing/ui/graph/impl/LazyGraphLabeler.java
a7635bedfbb676c337870027bcb85550494766e5
[simantics/platform.git] / bundles / org.simantics.browsing.ui.graph.impl / src / org / simantics / browsing / ui / graph / impl / LazyGraphLabeler.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in 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.graph.impl;
13
14 import java.util.Collections;
15 import java.util.Map;
16
17 import org.simantics.browsing.ui.BuiltinKeys.LabelerKey;
18 import org.simantics.browsing.ui.DataSource;
19 import org.simantics.browsing.ui.NodeContext;
20 import org.simantics.browsing.ui.PrimitiveQueryUpdater;
21 import org.simantics.browsing.ui.common.labelers.LabelerContent;
22 import org.simantics.browsing.ui.common.labelers.LabelerStub;
23 import org.simantics.browsing.ui.graph.impl.request.ResourceQuery;
24 import org.simantics.db.ReadGraph;
25 import org.simantics.db.exception.DatabaseException;
26 import org.simantics.db.procedure.Listener;
27 import org.simantics.utils.ui.ErrorLogger;
28 import org.slf4j.Logger;
29
30 public abstract class LazyGraphLabeler extends LabelerStub {
31
32     protected final PrimitiveQueryUpdater       updater;
33     private final ResourceQuery<LabelerContent> labelQuery;
34     private final Listener<LabelerContent>      procedure;
35
36     public Object getIdentity(LabelerKey key) {
37         return key;
38     }
39
40     public LazyGraphLabeler(final PrimitiveQueryUpdater updater, final NodeContext context, final LabelerKey key) {
41         this.updater = updater;
42
43         labelQuery = new ResourceQuery<LabelerContent>(getIdentity(key), context) {
44
45             @Override
46             public LabelerContent perform(ReadGraph graph) throws DatabaseException {
47                 try {
48                     int cat = category(graph);
49                     Map<String, String> lbls = labels(graph);
50                     // Make sure that null is not returned.
51                     if (lbls == null)
52                         throw new NullPointerException("LazyGraphLabeler.labels is not allowed to return null, but " + LazyGraphLabeler.this.getClass() + " just did it");
53                     return new LabelerContent(cat, lbls);
54                 } catch (DatabaseException e) {
55                     throw e;
56                 } catch (Throwable t) {
57                     ErrorLogger.defaultLogError("LazyGraphLabeler.labelQuery produced unexpected exception.", t);
58                     return LabelerContent.NO_CONTENT;
59                 }
60             }
61
62             @Override
63             public String toString() {
64                 return LazyGraphLabeler.this + " with context " + context;
65             }
66
67         };
68
69         procedure = new Listener<LabelerContent>() {
70
71             @Override
72             public void execute(LabelerContent result) {
73                 setContent(result);
74                 updater.scheduleReplace(context, key, LazyGraphLabeler.this);
75             }
76
77             @Override
78             public boolean isDisposed() {
79                 return updater.isDisposed();
80             }
81
82             @Override
83             public void exception(Throwable t) {
84                 getLogger().error("LazyGraphLabeler2: ", t);
85             }
86
87         };
88     }
89
90     @Override
91     public Map<String, String> getLabels() {
92
93         if (content == LabelerContent.NO_CONTENT) {
94
95             final DataSource<ReadGraph> source = updater.getDataSource(ReadGraph.class);
96             assert(source != null);
97             source.schedule(graph -> graph.asyncRequest(labelQuery, procedure));
98
99         }
100
101         if(content == null) return Collections.emptyMap();
102
103         return content.labels;
104
105     }
106
107     // OVERRIDE
108
109     public abstract Map<String, String> labels(ReadGraph graph) throws DatabaseException;
110
111     public int category(ReadGraph graph) throws DatabaseException {
112
113         if(content == null) return 0;
114
115         return content.category;
116
117     }
118
119     public abstract Logger getLogger();
120 }