Package com.stratio.cassandra.index.query

Source Code of com.stratio.cassandra.index.query.SortingField

/*
* Copyright 2014, Stratio.
*
* 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.stratio.cassandra.index.query;

import com.stratio.cassandra.index.schema.Column;
import com.stratio.cassandra.index.schema.ColumnMapper;
import com.stratio.cassandra.index.schema.Columns;
import com.stratio.cassandra.index.schema.Schema;
import org.apache.cassandra.db.marshal.AbstractType;
import org.apache.lucene.search.SortField;
import org.codehaus.jackson.annotate.JsonCreator;
import org.codehaus.jackson.annotate.JsonProperty;

import java.nio.ByteBuffer;
import java.util.Comparator;

/**
* A sorting for a field of a search.
*
* @author Andres de la Pena <adelapena@stratio.com>
*/
public class SortingField
{

    private static final boolean DEFAULT_REVERSE = false;

    /**
     * The name of field to sort by.
     */
    @JsonProperty("field")
    private final String field;

    /**
     * {@code true} if natural order should be reversed.
     */
    @JsonProperty("reverse")
    private final boolean reverse;

    /**
     * Returns a new {@link SortingField}.
     *
     * @param field   The name of field to sort by.
     * @param reverse {@code true} if natural order should be reversed.
     */
    @JsonCreator
    public SortingField(@JsonProperty("field") String field, @JsonProperty("reverse") Boolean reverse)
    {
        this.field = field;
        this.reverse = reverse == null ? DEFAULT_REVERSE : reverse;
    }

    /**
     * Returns the Lucene's {@link SortField} representing this {@link SortingField}.
     *
     * @param schema The {@link Schema} to be used.
     * @return the Lucene's {@link SortField} representing this {@link SortingField}.
     */
    public SortField sortField(Schema schema)
    {
        if (field == null || field.trim().isEmpty())
        {
            throw new IllegalArgumentException("Field name required");
        }
        ColumnMapper<?> columnMapper = schema.getMapper(field);
        if (columnMapper == null)
        {
            throw new IllegalArgumentException("No mapper found for sort field " + field);
        }
        else
        {
            return columnMapper.sortField(field, reverse);
        }
    }

    public Comparator<Columns> comparator()
    {
        return new Comparator<Columns>()
        {
            public int compare(Columns o1, Columns o2)
            {

                if (o1 == null)
                {
                    return o2 == null ? 0 : 1;
                }
                if (o2 == null)
                {
                    return -1;
                }

                Column column1 = o1.getCell(field);
                Column column2 = o2.getCell(field);

                if (column1 == null)
                {
                    return column2 == null ? 0 : 1;
                }
                if (column2 == null)
                {
                    return -1;
                }

                AbstractType<?> type = column1.getType();
                ByteBuffer value1 = column1.getRawValue();
                ByteBuffer value2 = column2.getRawValue();
                return reverse ? type.compare(value2, value1) : type.compare(value1, value2);
            }
        };
    }

    @Override
    public String toString()
    {
        StringBuilder builder = new StringBuilder();
        builder.append("Sort [field=");
        builder.append(field);
        builder.append(", reverse=");
        builder.append(reverse);
        builder.append("]");
        return builder.toString();
    }

}
TOP

Related Classes of com.stratio.cassandra.index.query.SortingField

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.