blob: ac050e10e2c0b6fc65197349cadd3bec66d65d7c [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.drill.exec.vector;
import io.netty.buffer.DrillBuf;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.apache.drill.common.expression.FieldReference;
import org.apache.drill.exec.expr.holders.ObjectHolder;
import org.apache.drill.exec.memory.BufferAllocator;
import org.apache.drill.exec.memory.OutOfMemoryRuntimeException;
import org.apache.drill.exec.proto.UserBitShared;
import org.apache.drill.exec.record.MaterializedField;
import org.apache.drill.exec.record.TransferPair;
import org.apache.drill.exec.vector.complex.reader.FieldReader;
public class ObjectVector extends BaseValueVector{
private Accessor accessor = new Accessor();
private Mutator mutator = new Mutator();
private int maxCount = 0;
private int count = 0;
private int allocationSize = 4096;
private List<Object[]> objectArrayList = new ArrayList<>();
public ObjectVector(MaterializedField field, BufferAllocator allocator) {
super(field, allocator);
}
public void addNewArray() {
objectArrayList.add(new Object[allocationSize]);
maxCount += allocationSize;
}
public final class Mutator implements ValueVector.Mutator {
public void set(int index, Object obj) {
int listOffset = index / allocationSize;
if (listOffset >= objectArrayList.size()) {
addNewArray();
}
objectArrayList.get(listOffset)[index % allocationSize] = obj;
}
public boolean setSafe(int index, long value) {
set(index, value);
return true;
}
protected void set(int index, ObjectHolder holder) {
set(index, holder.obj);
}
public boolean setSafe(int index, ObjectHolder holder){
set(index, holder);
return true;
}
@Override
public void setValueCount(int valueCount) {
count = valueCount;
}
@Override
public void reset() {
count = 0;
maxCount = 0;
objectArrayList = new ArrayList<>();
addNewArray();
}
@Override
public void generateTestData(int values) {
}
}
@Override
public void setInitialCapacity(int numRecords) {
// NoOp
}
@Override
public void allocateNew() throws OutOfMemoryRuntimeException {
addNewArray();
}
public void allocateNew(int valueCount) throws OutOfMemoryRuntimeException {
while (maxCount < valueCount) {
addNewArray();
}
}
@Override
public boolean allocateNewSafe() {
allocateNew();
return true;
}
@Override
public int getBufferSize() {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public void close() {
clear();
}
@Override
public void clear() {
objectArrayList.clear();
maxCount = 0;
count = 0;
}
@Override
public MaterializedField getField() {
return field;
}
@Override
public int getCurrentValueCount() {
return 0;
}
@Override
public void setCurrentValueCount(int count) {
}
@Override
public DrillBuf getData() {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public TransferPair getTransferPair() {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public TransferPair makeTransferPair(ValueVector to) {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public TransferPair getTransferPair(FieldReference ref) {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public int getValueCapacity() {
return maxCount;
}
@Override
public Accessor getAccessor() {
return accessor;
}
@Override
public DrillBuf[] getBuffers(boolean clear) {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public void load(UserBitShared.SerializedField metadata, DrillBuf buffer) {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public UserBitShared.SerializedField getMetadata() {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public Mutator getMutator() {
return mutator;
}
@Override
public Iterator<ValueVector> iterator() {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
public final class Accessor extends BaseAccessor {
@Override
public Object getObject(int index) {
int listOffset = index / allocationSize;
if (listOffset >= objectArrayList.size()) {
addNewArray();
}
return objectArrayList.get(listOffset)[index % allocationSize];
}
@Override
public int getValueCount() {
return count;
}
@Override
public boolean isNull(int index) {
return false;
}
@Override
public FieldReader getReader() {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
public Object get(int index) {
return getObject(index);
}
public void get(int index, ObjectHolder holder){
holder.obj = getObject(index);
}
}
}