From b1ba29c24f6c48c9b028bc8c4c5e9c729092f5ac Mon Sep 17 00:00:00 2001 From: "Brian S. O'Neill" Date: Mon, 11 Sep 2006 01:33:12 +0000 Subject: Completed new query engine implementation. --- .../java/com/amazon/carbonado/qe/QueryEngine.java | 67 ++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/main/java/com/amazon/carbonado/qe/QueryEngine.java (limited to 'src/main/java/com/amazon/carbonado/qe/QueryEngine.java') diff --git a/src/main/java/com/amazon/carbonado/qe/QueryEngine.java b/src/main/java/com/amazon/carbonado/qe/QueryEngine.java new file mode 100644 index 0000000..1362045 --- /dev/null +++ b/src/main/java/com/amazon/carbonado/qe/QueryEngine.java @@ -0,0 +1,67 @@ +/* + * Copyright 2006 Amazon Technologies, Inc. or its affiliates. + * Amazon, Amazon.com and Carbonado are trademarks or registered trademarks + * of Amazon Technologies, Inc. or its affiliates. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.amazon.carbonado.qe; + +import com.amazon.carbonado.IsolationLevel; +import com.amazon.carbonado.Storable; +import com.amazon.carbonado.Transaction; + +import com.amazon.carbonado.filter.FilterValues; + +/** + * Complete rule-based query engine implementation. + * + * @author Brian S O'Neill + */ +public class QueryEngine extends StandardQueryFactory { + final RepositoryAccess mRepoAccess; + final QueryExecutorFactory mExecutorFactory; + + public QueryEngine(Class type, RepositoryAccess access) { + super(type); + mRepoAccess = access; + mExecutorFactory = new QueryExecutorCache(new UnionQueryAnalyzer(type, access)); + } + + protected StandardQuery createQuery(FilterValues values, OrderingList ordering) { + return new Query(values, ordering); + } + + private class Query extends StandardQuery { + Query(FilterValues values, OrderingList ordering) { + super(values, ordering); + } + + protected Transaction enterTransaction(IsolationLevel level) { + return mRepoAccess.getRootRepository().enterTransaction(level); + } + + protected QueryFactory queryFactory() { + return QueryEngine.this; + } + + protected QueryExecutorFactory executorFactory() { + return mExecutorFactory; + } + + protected StandardQuery newInstance(FilterValues values, OrderingList ordering) { + return new Query(values, ordering); + } + } +} -- cgit v1.2.3