]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/StringQuery.java
Generate parts of db client query code
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / query / StringQuery.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.db.impl.query;
13
14 import org.simantics.db.request.RequestFlags;
15
16 abstract public class StringQuery<Procedure> extends CacheEntryBase<Procedure> implements Query {
17
18     final public String id;
19     final public int hash;
20
21     public StringQuery(String id) {
22         assert(id != null);
23         this.id = id;
24         hash = id.hashCode();
25     }
26     
27     @Override
28     int makeHash() {
29         return id.hashCode();
30     }
31     
32     final protected static int hash(String id) {
33         return id.hashCode();
34     }
35     
36     @Override
37     public int type() {
38         return RequestFlags.INVALIDATE;
39     }
40     
41     @Override
42     final public boolean equals(Object object) {
43         if (this == object)
44             return true;
45         else if (object == null)
46             return false;
47         else if (getClass() != object.getClass())
48             return false;
49         StringQuery other = (StringQuery)object;
50         return id == other.id;
51     }
52     
53     @Override
54     final public Query getQuery() {
55         return this;
56     }
57     
58 //    @Override
59 //    public void recompute(ReadGraphImpl graph, Object provider, CacheEntry entry) {
60 //        throw new Error("Recompute of primitive queries is not supported.");
61 //    }
62 //    
63 //    @Override
64 //    public Object performFromCache(ReadGraphImpl graph, Object provider, Object procedure) throws DatabaseException {
65 //        return performFromCache(graph, (QueryProcessor)provider, (Procedure)procedure);
66 //    }
67     
68     //abstract public void recompute(ReadGraphImpl graph, QueryProcessor provider) throws DatabaseException;
69     //abstract public Object performFromCache(ReadGraphImpl graph, QueryProcessor provider, Procedure procedure) throws DatabaseException;
70     abstract public void removeEntry(QueryProcessor provider);
71         
72 }