All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.rya.indexing.pcj.matching.PCJToSegmentConverter Maven / Gradle / Ivy

/*
 * 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 org.apache.rya.indexing.pcj.matching;

import org.apache.rya.indexing.external.matching.ExternalSetConverter;
import org.apache.rya.indexing.external.matching.JoinSegment;
import org.apache.rya.indexing.external.matching.OptionalJoinSegment;
import org.apache.rya.indexing.external.matching.QuerySegment;
import org.apache.rya.indexing.external.tupleSet.ExternalTupleSet;
import org.eclipse.rdf4j.query.algebra.Filter;
import org.eclipse.rdf4j.query.algebra.Join;
import org.eclipse.rdf4j.query.algebra.LeftJoin;
import org.eclipse.rdf4j.query.algebra.TupleExpr;
import org.eclipse.rdf4j.query.algebra.helpers.AbstractQueryModelVisitor;

import com.google.common.base.Preconditions;

/**
 * Implementation of {@link ExternalSetConverter} to convert {@link ExternalTupleSet}s
 * to {@link QuerySegment}s.
 *
 */
public class PCJToSegmentConverter implements ExternalSetConverter {

    private static final PCJToOptionalJoinSegment optional = new PCJToOptionalJoinSegment();
    private static final PCJToJoinSegment join = new PCJToJoinSegment();


    @Override
    public QuerySegment setToSegment(final ExternalTupleSet set) {
        Preconditions.checkNotNull(set);
        if (PCJOptimizerUtilities.tupleContainsLeftJoins(set.getTupleExpr())) {
            return optional.getSegment(set);
        } else {
            return join.getSegment(set);
        }
    }

    /**
     * This class extracts the {@link JoinSegment} from the {@link TupleExpr} of
     * specified PCJ.
     *
     */
    static class PCJToJoinSegment extends AbstractQueryModelVisitor {

        private JoinSegment segment;

        private PCJToJoinSegment(){}

        public QuerySegment getSegment(final ExternalTupleSet pcj) {
            segment = null;
            pcj.getTupleExpr().visit(this);
            return segment;
        }

        @Override
        public void meet(final Join join) {
            segment = new JoinSegment(join);
        }

        @Override
        public void meet(final Filter filter) {
            segment = new JoinSegment(filter);
        }

    }

    /**
     * This class extracts the {@link OptionalJoinSegment} of PCJ query.
     *
     */
    static class PCJToOptionalJoinSegment extends AbstractQueryModelVisitor {

        private OptionalJoinSegment segment;

        private PCJToOptionalJoinSegment(){}

        public QuerySegment getSegment(final ExternalTupleSet pcj) {
            segment = null;
            pcj.getTupleExpr().visit(this);
            return segment;
        }

        @Override
        public void meet(final Join join) {
            segment = new OptionalJoinSegment(join);
        }

        @Override
        public void meet(final Filter filter) {
            segment = new OptionalJoinSegment(filter);
        }

        @Override
        public void meet(final LeftJoin node) {
            segment = new OptionalJoinSegment(node);
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy