/* * 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.RepositoryException; import com.amazon.carbonado.Storable; import com.amazon.carbonado.Transaction; import com.amazon.carbonado.filter.Filter; import com.amazon.carbonado.filter.FilterValues; /** * Complete rule-based query engine implementation. * * @author Brian S O'Neill */ public class QueryEngine extends StandardQueryFactory implements QueryExecutorFactory { final RepositoryAccess mRepoAccess; final QueryExecutorFactory mExecutorFactory; public QueryEngine(Class type, RepositoryAccess access) { super(type); mRepoAccess = access; mExecutorFactory = new QueryExecutorCache(new UnionQueryAnalyzer(type, access)); } public QueryExecutor executor(Filter filter, OrderingList ordering) throws RepositoryException { return mExecutorFactory.executor(filter, ordering); } protected StandardQuery createQuery(Filter filter, FilterValues values, OrderingList ordering) { return new Query(filter, values, ordering, null); } private class Query extends StandardQuery { Query(Filter filter, FilterValues values, OrderingList ordering, QueryExecutor executor) { super(filter, values, ordering, executor); } 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, QueryExecutor executor) { return new Query(values.getFilter(), values, ordering, executor); } } }