com.clickhouse.data.value.ClickHouseArrayValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickhouse-data Show documentation
Show all versions of clickhouse-data Show documentation
Data processing utilities for ClickHouse
The newest version!
package com.clickhouse.data.value;
import java.lang.reflect.Array;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.net.Inet4Address;
import java.net.Inet6Address;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.util.*;
import java.util.Map.Entry;
import com.clickhouse.data.ClickHouseArraySequence;
import com.clickhouse.data.ClickHouseChecker;
import com.clickhouse.data.ClickHouseValue;
import com.clickhouse.data.ClickHouseValues;
/**
* Wrapper class of Array.
*/
public class ClickHouseArrayValue extends ClickHouseObjectValue implements ClickHouseArraySequence {
/**
* Creates an empty array.
*
* @param type of the array
* @return empty array
*/
@SuppressWarnings("unchecked")
public static ClickHouseArrayValue ofEmpty() {
return of((T[]) ClickHouseValues.EMPTY_OBJECT_ARRAY);
}
/**
* Creates an empty array.
*
* @param type of the array
* @param clazz non-null component class
* @return empty array
*/
@SuppressWarnings("unchecked")
public static ClickHouseArrayValue ofEmpty(Class clazz) {
return of((T[]) Array.newInstance(clazz, new int[1]));
}
/**
* Wrap the given value.
*
* @param type of element
* @param value value
* @return object representing the value
*/
public static ClickHouseArrayValue of(T[] value) {
return of(null, value);
}
/**
* Update value of the given object or create a new instance if {@code ref} is
* null.
*
* @param type of element
* @param ref object to update, could be null
* @param value value
* @return same object as {@code ref} or a new instance if it's null
*/
@SuppressWarnings("unchecked")
public static ClickHouseArrayValue of(ClickHouseValue ref, T[] value) {
return ref instanceof ClickHouseArrayValue
? (ClickHouseArrayValue) ((ClickHouseArrayValue) ref).set(value)
: new ClickHouseArrayValue<>(value);
}
private final T[] emptyValue;
@SuppressWarnings("unchecked")
protected ClickHouseArrayValue(T[] value) {
super(value);
emptyValue = value.length == 0 ? value
: (T[]) Array.newInstance(value.getClass().getComponentType(), new int[1]);
}
@Override
protected ClickHouseArrayValue set(T[] value) {
super.set(ClickHouseChecker.nonNull(value, ClickHouseValues.TYPE_ARRAY));
return this;
}
@Override
public Object[] asArray() {
return getValue();
}
@Override
@SuppressWarnings("unchecked")
public E[] asArray(Class clazz) {
T[] v = getValue();
E[] array = (E[]) Array.newInstance(ClickHouseChecker.nonNull(clazz, ClickHouseValues.TYPE_CLASS), v.length);
int index = 0;
for (T o : v) {
array[index++] = clazz.cast(o);
}
return array;
}
@Override
public Map asMap(Class keyClass, Class valueClass) {
if (keyClass == null || valueClass == null) {
throw new IllegalArgumentException("Non-null key and value classes are required");
}
Map map = new LinkedHashMap<>();
int index = 1;
for (Object o : getValue()) {
map.put(keyClass.cast(index++), valueClass.cast(o));
}
// why not use Collections.unmodifiableMap(map) here?
return map;
}
@Override
public String asString() {
return Arrays.deepToString(getValue());
}
@Override
public ClickHouseArrayValue copy(boolean deep) {
if (!deep) {
return new ClickHouseArrayValue<>(getValue());
}
T[] value = getValue();
T[] newValue = Arrays.copyOf(value, value.length); // try harder
return new ClickHouseArrayValue<>(newValue);
}
@Override
public boolean isNullable() {
return false;
}
@Override
public boolean isNullOrEmpty() {
return getValue().length == 0;
}
@Override
public ClickHouseArrayValue resetToDefault() {
set(emptyValue);
return this;
}
@Override
public ClickHouseArrayValue resetToNullOrEmpty() {
return resetToDefault();
}
@Override
public String toSqlExpression() {
T[] value = getValue();
int len = value == null ? 0 : value.length;
if (len == 0) {
return ClickHouseValues.EMPTY_ARRAY_EXPR;
}
StringBuilder builder = new StringBuilder().append('[')
.append(ClickHouseValues.convertToSqlExpression(value[0]));
for (int i = 1; i < len; i++) {
builder.append(',').append(ClickHouseValues.convertToSqlExpression(value[i]));
}
return builder.append(']').toString();
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(boolean[] value) {
int len = value == null ? 0 : value.length;
if (len == 0) {
return resetToNullOrEmpty();
}
Object[] v = new Object[len];
int index = 0;
for (boolean b : value) {
v[index++] = b ? (byte) 1 : (byte) 0;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(char[] value) {
int len = value == null ? 0 : value.length;
if (len == 0) {
return resetToNullOrEmpty();
}
Object[] v = new Object[len];
int index = 0;
for (char c : value) {
v[index++] = (int) c;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(byte value) {
set((T[]) new Byte[] { value });
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(byte[] value) {
int len = value == null ? 0 : value.length;
if (len == 0) {
return resetToNullOrEmpty();
}
Byte[] v = new Byte[len];
int index = 0;
for (byte b : value) {
v[index++] = b;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(short value) {
set((T[]) new Short[] { value });
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(short[] value) {
int len = value == null ? 0 : value.length;
if (len == 0) {
return resetToNullOrEmpty();
}
Short[] v = new Short[len];
int index = 0;
for (short s : value) {
v[index++] = s;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(int value) {
set((T[]) new Integer[] { value });
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(int[] value) {
int len = value == null ? 0 : value.length;
if (len == 0) {
return resetToNullOrEmpty();
}
Integer[] v = new Integer[len];
int index = 0;
for (int i : value) {
v[index++] = i;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(long value) {
set((T[]) new Long[] { value });
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(long[] value) {
int len = value == null ? 0 : value.length;
if (len == 0) {
return resetToNullOrEmpty();
}
Long[] v = new Long[len];
int index = 0;
for (long l : value) {
v[index++] = l;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(float value) {
set((T[]) new Float[] { value });
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(float[] value) {
int len = value == null ? 0 : value.length;
if (len == 0) {
return resetToNullOrEmpty();
}
Float[] v = new Float[len];
int index = 0;
for (float f : value) {
v[index++] = f;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(double value) {
set((T[]) new Double[] { value });
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(double[] value) {
int len = value == null ? 0 : value.length;
if (len == 0) {
return resetToNullOrEmpty();
}
Double[] v = new Double[len];
int index = 0;
for (double d : value) {
v[index++] = d;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(BigInteger value) {
if (value == null) {
return resetToNullOrEmpty();
}
return set((T[]) new BigInteger[] { value });
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(BigDecimal value) {
if (value == null) {
return resetToNullOrEmpty();
}
return set((T[]) new BigDecimal[] { value });
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(Enum> value) {
if (value == null) {
return resetToNullOrEmpty();
}
return set((T[]) new Enum>[] { value });
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(Inet4Address value) {
if (value == null) {
return resetToNullOrEmpty();
}
return set((T[]) new Inet4Address[] { value });
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(Inet6Address value) {
if (value == null) {
return resetToNullOrEmpty();
}
return set((T[]) new Inet6Address[] { value });
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(LocalDate value) {
if (value == null) {
return resetToNullOrEmpty();
}
return set((T[]) new LocalDate[] { value });
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(LocalTime value) {
if (value == null) {
return resetToNullOrEmpty();
}
return set((T[]) new LocalTime[] { value });
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(LocalDateTime value) {
if (value == null) {
return resetToNullOrEmpty();
}
return set((T[]) new LocalDateTime[] { value });
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(Collection> value) {
int size = value == null ? 0 : value.size();
if (size == 0) {
return resetToNullOrEmpty();
}
Object[] v = new Object[size];
int index = 0;
for (Object o : value) {
v[index++] = o;
}
set((T[]) v);
return this;
}
@Override
@SuppressWarnings("unchecked")
public ClickHouseArrayValue update(Enumeration> value) {
if (value == null) {
return resetToNullOrEmpty();
}
List