]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/StringQuery.java
QueryListening sync is slow
[simantics/platform.git] / bundles / org.simantics.db.impl / src / org / simantics / db / impl / query / StringQuery.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.request.RequestFlags;
15
16 public abstract class StringQuery<Procedure> extends CacheEntryBase<Procedure> implements Query {
17
18     public final String id;
19     protected final 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     protected static final 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     abstract public void removeEntry(QueryProcessor provider);
59
60 }