blob: 8d515d8acdab636e5faeaabef523455eb6cfecbe [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 java.util.Set;
import org.apache.drill.exec.expr.holders.ObjectHolder;
import org.apache.drill.exec.memory.BufferAllocator;
import org.apache.drill.exec.memory.AllocationManager.BufferLedger;
import org.apache.drill.exec.exception.OutOfMemoryException;
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 final int ALLOCATION_SIZE = 4096;
private final Accessor accessor = new Accessor();
private final Mutator mutator = new Mutator();
private int maxCount = 0;
private int count = 0;
private List<Object[]> objectArrayList = new ArrayList<>();
public ObjectVector(MaterializedField field, BufferAllocator allocator) {
super(field, allocator);
}
public void addNewArray() {
objectArrayList.add(new Object[ALLOCATION_SIZE]);
maxCount += ALLOCATION_SIZE;
}
@Override
public FieldReader getReader() {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
public final class Mutator implements ValueVector.Mutator {
public void set(int index, Object obj) {
int listOffset = index / ALLOCATION_SIZE;
if (listOffset >= objectArrayList.size()) {
addNewArray();
}
objectArrayList.get(listOffset)[index % ALLOCATION_SIZE] = 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 exchange(ValueVector.Mutator other) { }
}
@Override
public void setInitialCapacity(int numRecords) {
// NoOp
}
@Override
public void allocateNew() throws OutOfMemoryException {
addNewArray();
}
public void allocateNew(int valueCount) throws OutOfMemoryException {
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 int getAllocatedSize() { return 0; }
@Override
public int getBufferSizeFor(final int valueCount) {
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 TransferPair getTransferPair(BufferAllocator allocator) {
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(String ref, BufferAllocator allocator) {
throw new UnsupportedOperationException("ObjectVector does not support this");
}
@Override
public void copyEntry(int toIndex, ValueVector from, int fromIndex) {
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");
}
@Override
public void toNullable(ValueVector nullableVector) {
throw new UnsupportedOperationException();
}
public final class Accessor extends BaseAccessor {
@Override
public Object getObject(int index) {
int listOffset = index / ALLOCATION_SIZE;
if (listOffset >= objectArrayList.size()) {
addNewArray();
}
return objectArrayList.get(listOffset)[index % ALLOCATION_SIZE];
}
@Override
public int getValueCount() { return count; }
public Object get(int index) {
return getObject(index);
}
public void get(int index, ObjectHolder holder){
holder.obj = getObject(index);
}
}
@Override
public void collectLedgers(Set<BufferLedger> ledgers) {}
@Override
public int getPayloadByteCount(int valueCount) {
// Values not stored in direct memory?
return 0;
}
@Override
public void exchange(ValueVector other) {
ObjectVector target = (ObjectVector) other;
List<Object[]> tempList = objectArrayList;
objectArrayList = target.objectArrayList;
target.objectArrayList = tempList;
int tempCount = count;
count = target.count;
target.count = tempCount;
tempCount = maxCount;
maxCount = target.maxCount;
target.maxCount = tempCount;
}
}