Package com.hp.hpl.jena.sparql.algebra.optimize

Source Code of com.hp.hpl.jena.sparql.algebra.optimize.TransformDistinctToReduced

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you 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.hp.hpl.jena.sparql.algebra.optimize;

import com.hp.hpl.jena.sparql.algebra.Op;
import com.hp.hpl.jena.sparql.algebra.TransformCopy;
import com.hp.hpl.jena.sparql.algebra.op.OpDistinct;
import com.hp.hpl.jena.sparql.algebra.op.OpOrder;
import com.hp.hpl.jena.sparql.algebra.op.OpProject;
import com.hp.hpl.jena.sparql.algebra.op.OpReduced;

/**
* <p>
* Transforms generic {@code DISTINCT} plus {@code ORDER BY} combinations to
* {@code REDUCED} plus {@code ORDER BY} which typically gives better
* performance and memory consumption because engines have to keep less data
* in-memory to evaluate it.
* </p>
* <p>
* See also {@link TransformOrderByDistinctAppplication} which is a better
* optimization for these kinds of queries but only applies to a limited
* range of queries. Where possible that optimization is applied in preference
* to this one.
* </p>
* <p>
* {@link TransformTopN} covers the case of {@code DISTINCT} plus
* {@code ORDER BY} where there is also a {@code LIMIT}. Where possible that
* optimization is applied in preference to either this or
* {@link TransformOrderByDistinctAppplication}.
* </p>
*
*/
public class TransformDistinctToReduced extends TransformCopy {

    // Best is this is after TransformTopN but they are order independent
    // TopN of "reduced or distinct of order" is handled.
    @Override
    public Op transform(OpDistinct opDistinct, Op subOp) {
        if (subOp instanceof OpOrder) {
            return OpReduced.create(subOp);
        } else if (subOp instanceof OpProject) {
            OpProject project = (OpProject) subOp;
            if (project.getSubOp() instanceof OpOrder) {
                return OpReduced.create(subOp);
            }
        }
        return super.transform(opDistinct, subOp);
    }

}
TOP

Related Classes of com.hp.hpl.jena.sparql.algebra.optimize.TransformDistinctToReduced

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.