blob: 4e1a35f066ee60639126697c6bd9305fc744ade5 [file] [log] [blame]
/*
* 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.cassandra.spark.data.types;
import java.util.Comparator;
import com.google.common.primitives.UnsignedBytes;
import org.apache.cassandra.bridge.BigNumberConfig;
import org.apache.cassandra.spark.data.NativeType;
import org.apache.spark.sql.Row;
import org.apache.spark.sql.catalyst.expressions.GenericInternalRow;
import org.apache.spark.sql.types.DataType;
import org.apache.spark.sql.types.DataTypes;
public abstract class BinaryBased extends NativeType
{
public static final Comparator<byte[]> BYTE_ARRAY_COMPARATOR = UnsignedBytes.lexicographicalComparator();
@Override
protected int compareTo(Object first, Object second)
{
return BYTE_ARRAY_COMPARATOR.compare((byte[]) first, (byte[]) second);
}
@Override
public DataType sparkSqlType(BigNumberConfig bigNumberConfig)
{
return DataTypes.BinaryType;
}
@Override
protected Object nativeSparkSqlRowValue(GenericInternalRow row, int position)
{
return row.getBinary(position);
}
@Override
protected Object nativeSparkSqlRowValue(Row row, int position)
{
return row.getAs(position);
}
}