]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/UnaryQuery.java
26eff457dc99f29e741b53c73be2db895d4883a6
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / query / UnaryQuery.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2018 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.db.impl.query;
13
14 import org.simantics.db.exception.DatabaseException;
15 import org.simantics.db.impl.graph.ReadGraphImpl;
16 import org.simantics.db.request.RequestFlags;
17
18 public abstract class UnaryQuery<Procedure> extends CacheEntryBase<Procedure> implements Query {
19
20     final public int id;
21
22     public UnaryQuery(int r) {
23         assert(r != 0);
24         this.id = r;
25     }
26     
27     @Override
28     int makeHash() {
29         return id;
30     }
31     
32     @Override
33     public int type() {
34         return RequestFlags.INVALIDATE;
35     }
36     
37     @Override
38     final public boolean equals(Object object) {
39         if (this == object)
40             return true;
41         else if (object == null)
42             return false;
43         else if (getClass() != object.getClass())
44             return false;
45         UnaryQuery<?> other = (UnaryQuery<?>)object;
46         return id == other.id;
47     }
48     
49     @Override
50     final public Query getQuery() {
51         assert(!isDiscarded());
52         return this;
53     }
54     
55     abstract public void removeEntry(QueryProcessor provider);
56         
57     public Object get(ReadGraphImpl graph, Procedure procedure) throws Throwable {
58         if(procedure != null) {
59             performFromCache(graph, procedure);
60         } else {
61             checkAndThrow();
62         }
63         return getResult();
64     }
65     
66     @Override
67     boolean isImmutable(ReadGraphImpl graph) throws DatabaseException {
68                 return graph.processor.isImmutable(id);
69     }
70     
71 }