blob: bd6103e97ac79690f80c3bb9e4d8f2e8d32aefce [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 org.apache.cassandra.bridge.BigNumberConfig;
import org.apache.cassandra.cql3.functions.types.SettableByIndexData;
import org.apache.cassandra.db.marshal.AbstractType;
import org.apache.cassandra.db.marshal.Int32Type;
import org.apache.cassandra.spark.data.NativeType;
import org.apache.cassandra.spark.utils.RandomUtils;
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 class Int extends NativeType
{
public static final Int INSTANCE = new Int();
static final Comparator<Integer> INTEGER_COMPARATOR = Integer::compareTo;
@Override
public String name()
{
return "int";
}
@Override
public DataType sparkSqlType(BigNumberConfig bigNumberConfig)
{
return DataTypes.IntegerType;
}
@Override
public AbstractType<?> dataType()
{
return Int32Type.instance;
}
@Override
protected int compareTo(Object first, Object second)
{
return INTEGER_COMPARATOR.compare((Integer) first, (Integer) second);
}
@Override
protected Object nativeSparkSqlRowValue(GenericInternalRow row, int position)
{
return row.getInt(position);
}
@Override
protected Object nativeSparkSqlRowValue(Row row, int position)
{
return row.getInt(position);
}
@Override
public Object randomValue(int minCollectionSize)
{
return RandomUtils.RANDOM.nextInt();
}
@Override
public void setInnerValue(SettableByIndexData<?> udtValue, int position, Object value)
{
udtValue.setInt(position, (int) value);
}
@Override
public org.apache.cassandra.cql3.functions.types.DataType driverDataType(boolean isFrozen)
{
return org.apache.cassandra.cql3.functions.types.DataType.cint();
}
}