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.db.impl.query;
14 import org.simantics.db.exception.DatabaseException;
15 import org.simantics.db.impl.graph.ReadGraphImpl;
16 import org.simantics.db.request.RequestFlags;
18 abstract public class UnaryQuery<Procedure> extends CacheEntryBase implements Query {
22 public UnaryQuery(int r) {
34 return RequestFlags.INVALIDATE;
38 final public boolean equals(Object object) {
41 else if (object == null)
43 else if (getClass() != object.getClass())
45 UnaryQuery<?> other = (UnaryQuery<?>)object;
46 return id == other.id;
50 final public Query getQuery() {
51 assert(!isDiscarded());
56 public void recompute(ReadGraphImpl graph, Object provider, CacheEntry entry) {
57 recompute(graph, (QueryProcessor)provider);
61 public void performFromCache(ReadGraphImpl graph, Object provider, Object procedure) {
62 performFromCache(graph, (QueryProcessor)provider, (Procedure)procedure);
65 abstract public void recompute(ReadGraphImpl graph, QueryProcessor provider);
66 abstract public Object computeForEach(ReadGraphImpl graph, QueryProcessor provider, Procedure procedure, boolean store);
67 abstract public Object performFromCache(ReadGraphImpl graph, QueryProcessor provider, Procedure procedure);
68 abstract public void putEntry(QueryProcessor provider);
69 abstract public void removeEntry(QueryProcessor provider);
70 abstract public UnaryQuery<Procedure> getEntry(QueryProcessor provider);
72 public Object get(ReadGraphImpl graph, QueryProcessor processor, Object procedure) throws Throwable {
73 if(procedure != null) {
74 performFromCache(graph, processor, procedure);
82 boolean isImmutable(ReadGraphImpl graph) throws DatabaseException {
83 return graph.processor.isImmutable(id);