/*
 * Copyright 2004-2019 H2 Group. Multiple-Licensed under the MPL 2.0,
 * and the EPL 1.0 (http://h2database.com/html/license.html).
 * Initial Developer: H2 Group
 */
package org.h2.value;

import java.sql.PreparedStatement;
import java.sql.SQLException;

import org.h2.api.ErrorCode;
import org.h2.message.DbException;

Implementation of the INT data type.
/** * Implementation of the INT data type. */
public class ValueInt extends Value {
The precision in digits.
/** * The precision in digits. */
public static final int PRECISION = 10;
The maximum display size of an int. Example: -2147483648
/** * The maximum display size of an int. * Example: -2147483648 */
public static final int DISPLAY_SIZE = 11; private static final int STATIC_SIZE = 128; // must be a power of 2 private static final int DYNAMIC_SIZE = 256; private static final ValueInt[] STATIC_CACHE = new ValueInt[STATIC_SIZE]; private static final ValueInt[] DYNAMIC_CACHE = new ValueInt[DYNAMIC_SIZE]; private final int value; static { for (int i = 0; i < STATIC_SIZE; i++) { STATIC_CACHE[i] = new ValueInt(i); } } private ValueInt(int value) { this.value = value; }
Get or create an int value for the given int.
Params:
  • i – the int
Returns:the value
/** * Get or create an int value for the given int. * * @param i the int * @return the value */
public static ValueInt get(int i) { if (i >= 0 && i < STATIC_SIZE) { return STATIC_CACHE[i]; } ValueInt v = DYNAMIC_CACHE[i & (DYNAMIC_SIZE - 1)]; if (v == null || v.value != i) { v = new ValueInt(i); DYNAMIC_CACHE[i & (DYNAMIC_SIZE - 1)] = v; } return v; } @Override public Value add(Value v) { ValueInt other = (ValueInt) v; return checkRange((long) value + (long) other.value); } private static ValueInt checkRange(long x) { if ((int) x != x) { throw DbException.get(ErrorCode.NUMERIC_VALUE_OUT_OF_RANGE_1, Long.toString(x)); } return ValueInt.get((int) x); } @Override public int getSignum() { return Integer.signum(value); } @Override public Value negate() { return checkRange(-(long) value); } @Override public Value subtract(Value v) { ValueInt other = (ValueInt) v; return checkRange((long) value - (long) other.value); } @Override public Value multiply(Value v) { ValueInt other = (ValueInt) v; return checkRange((long) value * (long) other.value); } @Override public Value divide(Value v) { int y = ((ValueInt) v).value; if (y == 0) { throw DbException.get(ErrorCode.DIVISION_BY_ZERO_1, getSQL()); } int x = value; if (x == Integer.MIN_VALUE && y == -1) { throw DbException.get(ErrorCode.NUMERIC_VALUE_OUT_OF_RANGE_1, "2147483648"); } return ValueInt.get(x / y); } @Override public Value modulus(Value v) { ValueInt other = (ValueInt) v; if (other.value == 0) { throw DbException.get(ErrorCode.DIVISION_BY_ZERO_1, getSQL()); } return ValueInt.get(value % other.value); } @Override public StringBuilder getSQL(StringBuilder builder) { return builder.append(value); } @Override public TypeInfo getType() { return TypeInfo.TYPE_INT; } @Override public int getValueType() { return INT; } @Override public int getInt() { return value; } @Override public long getLong() { return value; } @Override public int compareTypeSafe(Value o, CompareMode mode) { return Integer.compare(value, ((ValueInt) o).value); } @Override public String getString() { return Integer.toString(value); } @Override public int hashCode() { return value; } @Override public Object getObject() { return value; } @Override public void set(PreparedStatement prep, int parameterIndex) throws SQLException { prep.setInt(parameterIndex, value); } @Override public boolean equals(Object other) { return other instanceof ValueInt && value == ((ValueInt) other).value; } }