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

com.bigdata.relation.rule.QueryOptions Maven / Gradle / Ivy

Go to download

Blazegraph(TM) DB Core Platform. It contains all Blazegraph DB dependencies other than Blueprints.

There is a newer version: 2.1.4
Show newest version
/*

Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016.  All rights reserved.

Contact:
     SYSTAP, LLC DBA Blazegraph
     2501 Calvert ST NW #106
     Washington, DC 20008
     [email protected]

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.

This program 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 General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

*/
/*
 * Created on Sep 24, 2008
 */

package com.bigdata.relation.rule;

import java.util.Arrays;

import com.bigdata.bop.solutions.ISortOrder;

/**
 * @author Bryan Thompson
 * @version $Id$
 */
public class QueryOptions implements IQueryOptions {

    /**
     * 
     */
    private static final long serialVersionUID = -4926866732224421937L;

    private final boolean distinct;

    private final boolean stable;

    private final ISortOrder[] orderBy;

    private final ISlice slice;

    /**
     * An instance specifying NONE of the constraints declared by
     * {@link IQueryOptions}.
     */
    public static final transient IQueryOptions NONE = new QueryOptions(
            false/* distinct */, false/* stable */, null/* orderBy */, null/* Slice */);

    /**
     * An instance specifying distinct := true but none of the
     * other {@link IQueryOptions}.
     */
    public static final transient IQueryOptions DISTINCT = new QueryOptions(
            true/* distinct */, false/* stable */, null/* orderBy */, null/* querySlice */);
    
    /**
     * @param distinct
     * @param stable
     * @param orderBy
     * @param slice
     * @throws IllegalArgumentException
     *             if a stable is false and a slice is
     *             specified with a non-zero offset and/or a non-{@link Long#MAX_VALUE}
     *             limit
     */
    public QueryOptions(final boolean distinct, final boolean stable,
            final ISortOrder[] orderBy, final ISlice slice) {

        this.distinct = distinct;

        this.stable = stable;
        
        // MAY be null.  @todo check elements not null when orderBy not null.
        this.orderBy = orderBy;
        
        // MAY be null.
        this.slice = slice;

        if (!stable
                && slice != null
                && (slice.getOffset() != 0L || slice.getLimit() != Long.MAX_VALUE)) {

            throw new IllegalArgumentException("slices must be stable");
            
        }
        
    }

    final public boolean isDistinct() {
        
        return distinct;
        
    }

    final public boolean isStable() {
        
        return stable;
        
    }

    final public ISortOrder[] getOrderBy() {
        
        return orderBy;
        
    }

    final public ISlice getSlice() {

        return slice;
        
    }

    public String toString() {

        return "QueryOptions" + //
            "{ distinct=" + distinct + //
            ", stable=" + stable + //
            ", orderBy=" + (orderBy == null ? "N/A" : Arrays.toString(orderBy)) + //
            ", slice=" + slice + //
            "}";

    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy