org.modeshape.jcr.query.optimize.AddOrderingColumnsToSources Maven / Gradle / Ivy
/*
* ModeShape (http://www.modeshape.org)
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership. Some portions may be licensed
* to Red Hat, Inc. under one or more contributor license agreements.
* See the AUTHORS.txt file in the distribution for a full listing of
* individual contributors.
*
* ModeShape is free software. Unless otherwise indicated, all code in ModeShape
* is licensed to you under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* ModeShape is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.modeshape.jcr.query.optimize;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import org.modeshape.jcr.query.QueryContext;
import org.modeshape.jcr.query.model.Column;
import org.modeshape.jcr.query.model.Ordering;
import org.modeshape.jcr.query.model.PropertyValue;
import org.modeshape.jcr.query.model.ReferenceValue;
import org.modeshape.jcr.query.model.SelectorName;
import org.modeshape.jcr.query.model.Visitor;
import org.modeshape.jcr.query.model.Visitors;
import org.modeshape.jcr.query.plan.PlanNode;
import org.modeshape.jcr.query.plan.PlanNode.Property;
import org.modeshape.jcr.query.plan.PlanNode.Type;
/**
* An {@link OptimizerRule} that adds any missing columns required by the ordering specifications to the SORT node's PROJECT, and
* to the appropriate access nodes.
*/
public class AddOrderingColumnsToSources implements OptimizerRule {
public static final AddOrderingColumnsToSources INSTANCE = new AddOrderingColumnsToSources();
@Override
public PlanNode execute( QueryContext context,
PlanNode plan,
LinkedList ruleStack ) {
final boolean includeSourceName = context.getHints().qualifyExpandedColumnNames;
// For each of the SORT nodes ...
for (PlanNode sortNode : plan.findAllAtOrBelow(Type.SORT)) {
// Get the list of property and reference expressions that are used in the Ordering instances, using a visitor. Other
// kinds of
// dynamic operands in Ordering instances will not need to change the columns
final Set sortColumns = new HashSet();
Visitor columnVisitor = new Visitors.AbstractVisitor() {
@Override
public void visit( PropertyValue prop ) {
sortColumns.add(columnFor(prop.selectorName(), prop.getPropertyName(), includeSourceName));
}
@Override
public void visit( ReferenceValue ref ) {
sortColumns.add(columnFor(ref.selectorName(), ref.getPropertyName(), includeSourceName));
}
};
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy