UnionLargeListReader.java
/*
* 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.arrow.vector.complex.impl;
import static org.apache.arrow.memory.util.LargeMemoryUtil.checkedCastToInt;
import org.apache.arrow.vector.ValueVector;
import org.apache.arrow.vector.complex.LargeListVector;
import org.apache.arrow.vector.complex.reader.FieldReader;
import org.apache.arrow.vector.complex.writer.FieldWriter;
import org.apache.arrow.vector.holders.UnionHolder;
import org.apache.arrow.vector.types.Types.MinorType;
import org.apache.arrow.vector.types.pojo.Field;
/** {@link FieldReader} for list of union types. */
public class UnionLargeListReader extends AbstractFieldReader {
private LargeListVector vector;
private ValueVector data;
private static final long OFFSET_WIDTH = 8L;
public UnionLargeListReader(LargeListVector vector) {
this.vector = vector;
this.data = vector.getDataVector();
}
@Override
public Field getField() {
return vector.getField();
}
@Override
public boolean isSet() {
return !vector.isNull(idx());
}
private long currentOffset;
private long maxOffset;
@Override
public void setPosition(int index) {
super.setPosition(index);
currentOffset = vector.getOffsetBuffer().getLong((long) index * OFFSET_WIDTH) - 1;
maxOffset = vector.getOffsetBuffer().getLong(((long) index + 1L) * OFFSET_WIDTH);
}
@Override
public FieldReader reader() {
return data.getReader();
}
@Override
public Object readObject() {
return vector.getObject(idx());
}
@Override
public MinorType getMinorType() {
return MinorType.LARGELIST;
}
@Override
public void read(int index, UnionHolder holder) {
setPosition(index);
for (int i = -1; i < index; i++) {
next();
}
holder.reader = data.getReader();
holder.isSet = data.getReader().isSet() ? 1 : 0;
}
@Override
public int size() {
int size =
checkedCastToInt(maxOffset - currentOffset - 1); // todo revisit when int64 vectors are done
return size < 0 ? 0 : size;
}
@Override
public boolean next() {
if (currentOffset + 1 < maxOffset) {
data.getReader()
.setPosition(
checkedCastToInt(++currentOffset)); // todo revisit when int64 vectors are done
return true;
} else {
return false;
}
}
public void copyAsValue(UnionLargeListWriter writer) {
ComplexCopier.copy(this, (FieldWriter) writer);
}
}