All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.drill.exec.physical.rowSet.IndirectRowSet Maven / Gradle / Ivy

/*
 * 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.physical.rowSet;

import java.util.Collections;
import java.util.Set;

import org.apache.drill.exec.exception.OutOfMemoryException;
import org.apache.drill.exec.memory.BufferAllocator;
import org.apache.drill.exec.physical.resultSet.model.single.SingleSchemaInference;
import org.apache.drill.exec.record.BatchSchema.SelectionVectorMode;
import org.apache.drill.exec.record.RecordBatchSizer;
import org.apache.drill.exec.record.VectorContainer;
import org.apache.drill.exec.record.selection.SelectionVector2;

/**
 * Single row set coupled with an indirection (selection) vector,
 * specifically an SV2.
 */

public class IndirectRowSet extends AbstractSingleRowSet {

  private final SelectionVector2 sv2;

  private IndirectRowSet(VectorContainer container, SelectionVector2 sv2) {
    super(container, new SingleSchemaInference().infer(container));
    this.sv2 = sv2;
  }

  public IndirectRowSet(VectorContainer container) {
    this(container, makeSv2(container.getAllocator(), container, Collections.emptySet()));
  }

  public IndirectRowSet(DirectRowSet directRowSet, Set skipIndices) {
    super(directRowSet);
    sv2 = makeSv2(allocator(), container(), skipIndices);
  }

  public static IndirectRowSet fromContainer(VectorContainer container) {
    return new IndirectRowSet(container, makeSv2(container.getAllocator(), container, Collections.emptySet()));
  }

  public static IndirectRowSet fromSv2(VectorContainer container, SelectionVector2 sv2) {
    return new IndirectRowSet(container, sv2);
  }

  private static SelectionVector2 makeSv2(BufferAllocator allocator, VectorContainer container,
      Set skipIndices) {
    int rowCount = container.getRecordCount() - skipIndices.size();
    SelectionVector2 sv2 = new SelectionVector2(allocator);
    if (!sv2.allocateNewSafe(rowCount)) {
      throw new OutOfMemoryException("Unable to allocate sv2 buffer");
    }
    for (int srcIndex = 0, destIndex = 0; srcIndex < container.getRecordCount(); srcIndex++) {
      if (skipIndices.contains(srcIndex)) {
        continue;
      }

      sv2.setIndex(destIndex, (char) srcIndex);
      destIndex++;
    }
    sv2.setRecordCount(rowCount);
    sv2.setBatchActualRecordCount(container.getRecordCount());
    container.buildSchema(SelectionVectorMode.TWO_BYTE);
    return sv2;
  }

  @Override
  public SelectionVector2 getSv2() { return sv2; }

  @Override
  public void clear() {
    super.clear();
    getSv2().clear();
  }

  @Override
  public RowSetReader reader() {
    IndirectRowIndex index = new IndirectRowIndex(getSv2());
    return buildReader(index);
  }

  @Override
  public boolean isExtendable() {return false;}

  @Override
  public boolean isWritable() { return true;}

  @Override
  public SelectionVectorMode indirectionType() { return SelectionVectorMode.TWO_BYTE; }

  @Override
  public SingleRowSet toIndirect() { return this; }

  @Override
  public SingleRowSet toIndirect(Set skipIndices) {
    return new IndirectRowSet(DirectRowSet.fromContainer(container()), skipIndices);
  }

  @Override
  public long size() {
    RecordBatchSizer sizer = new RecordBatchSizer(container(), sv2);
    return sizer.getActualSize();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy