1 /*******************************************************************************
2 * Copyright (c) 2007, 2010 Association for Decentralized Information Management
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
10 * VTT Technical Research Centre of Finland - initial API and implementation
11 *******************************************************************************/
12 package org.simantics.browsing.ui.graph.impl;
14 import java.util.Collections;
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;
29 public abstract class LazyGraphLabeler extends LabelerStub {
31 protected final PrimitiveQueryUpdater updater;
32 private final ResourceQuery<LabelerContent> labelQuery;
33 private final Listener<LabelerContent> procedure;
35 public Object getIdentity(LabelerKey key) {
39 public LazyGraphLabeler(final PrimitiveQueryUpdater updater, final NodeContext context, final LabelerKey key) {
40 this.updater = updater;
42 labelQuery = new ResourceQuery<LabelerContent>(getIdentity(key), context) {
45 public LabelerContent perform(ReadGraph graph) throws DatabaseException {
47 int cat = category(graph);
48 Map<String, String> lbls = labels(graph);
49 // Make sure that null is not returned.
51 throw new NullPointerException("LazyGraphLabeler.labels is not allowed to return null, but " + LazyGraphLabeler.this.getClass() + " just did it");
52 return new LabelerContent(cat, lbls);
53 } catch (DatabaseException e) {
55 } catch (Throwable t) {
56 ErrorLogger.defaultLogError("LazyGraphLabeler.labelQuery produced unexpected exception.", t);
57 return LabelerContent.NO_CONTENT;
62 public String toString() {
63 return LazyGraphLabeler.this + " with context " + context;
68 procedure = new Listener<LabelerContent>() {
71 public void execute(LabelerContent result) {
73 updater.scheduleReplace(context, key, LazyGraphLabeler.this);
77 public boolean isDisposed() {
78 return updater.isDisposed();
82 public void exception(Throwable t) {
83 System.err.println("LazyGraphLabeler2: ");
91 public Map<String, String> getLabels() {
93 if (content == LabelerContent.NO_CONTENT) {
95 final DataSource<ReadGraph> source = updater.getDataSource(ReadGraph.class);
96 assert(source != null);
97 source.schedule(graph -> graph.asyncRequest(labelQuery, procedure));
101 if(content == null) return Collections.emptyMap();
103 return content.labels;
109 public abstract Map<String, String> labels(ReadGraph graph) throws DatabaseException;
111 public int category(ReadGraph graph) throws DatabaseException {
113 if(content == null) return 0;
115 return content.category;