codegen.templates.UnionListWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arrow-vector Show documentation
Show all versions of arrow-vector Show documentation
An off-heap reference implementation for Arrow columnar data format.
The newest version!
/*
* 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.
*/
import io.netty.buffer.ArrowBuf;
import org.apache.arrow.vector.complex.writer.DecimalWriter;
import org.apache.arrow.vector.holders.DecimalHolder;
import java.lang.UnsupportedOperationException;
import java.math.BigDecimal;
<@pp.dropOutputFile />
<@pp.changeOutputFile name="/org/apache/arrow/vector/complex/impl/UnionListWriter.java" />
<#include "/@includes/license.ftl" />
package org.apache.arrow.vector.complex.impl;
<#include "/@includes/vv_imports.ftl" />
/*
* This class is generated using freemarker and the ${.template_name} template.
*/
@SuppressWarnings("unused")
public class UnionListWriter extends AbstractFieldWriter {
protected ListVector vector;
protected PromotableWriter writer;
private boolean inStruct = false;
private String structName;
private static final int OFFSET_WIDTH = 4;
public UnionListWriter(ListVector vector) {
this(vector, NullableStructWriterFactory.getNullableStructWriterFactoryInstance());
}
public UnionListWriter(ListVector vector, NullableStructWriterFactory nullableStructWriterFactory) {
this.vector = vector;
this.writer = new PromotableWriter(vector.getDataVector(), vector, nullableStructWriterFactory);
}
public UnionListWriter(ListVector vector, AbstractFieldWriter parent) {
this(vector);
}
@Override
public void allocate() {
vector.allocateNew();
}
@Override
public void clear() {
vector.clear();
}
@Override
public Field getField() {
return vector.getField();
}
public void setValueCount(int count) {
vector.setValueCount(count);
}
@Override
public int getValueCapacity() {
return vector.getValueCapacity();
}
@Override
public void close() throws Exception {
vector.close();
writer.close();
}
@Override
public void setPosition(int index) {
super.setPosition(index);
}
<#list vv.types as type><#list type.minor as minor><#assign name = minor.class?cap_first />
<#assign fields = minor.fields!type.fields />
<#assign uncappedName = name?uncap_first/>
<#if uncappedName == "int" ><#assign uncappedName = "integer" />#if>
<#if !minor.typeParams?? >
@Override
public ${name}Writer ${uncappedName}() {
return this;
}
@Override
public ${name}Writer ${uncappedName}(String name) {
structName = name;
return writer.${uncappedName}(name);
}
#if>
#list>#list>
@Override
public DecimalWriter decimal() {
return this;
}
@Override
public DecimalWriter decimal(String name, int scale, int precision) {
return writer.decimal(name, scale, precision);
}
@Override
public DecimalWriter decimal(String name) {
return writer.decimal(name);
}
@Override
public StructWriter struct() {
inStruct = true;
return this;
}
@Override
public ListWriter list() {
return writer;
}
@Override
public ListWriter list(String name) {
ListWriter listWriter = writer.list(name);
return listWriter;
}
@Override
public StructWriter struct(String name) {
StructWriter structWriter = writer.struct(name);
return structWriter;
}
@Override
public void startList() {
vector.startNewValue(idx());
writer.setPosition(vector.getOffsetBuffer().getInt((idx() + 1) * OFFSET_WIDTH));
}
@Override
public void endList() {
vector.getOffsetBuffer().setInt((idx() + 1) * OFFSET_WIDTH, writer.idx());
setPosition(idx() + 1);
}
@Override
public void start() {
writer.start();
}
@Override
public void end() {
writer.end();
inStruct = false;
}
@Override
public void write(DecimalHolder holder) {
writer.write(holder);
writer.setPosition(writer.idx()+1);
}
public void writeDecimal(int start, ArrowBuf buffer, ArrowType arrowType) {
writer.writeDecimal(start, buffer, arrowType);
writer.setPosition(writer.idx()+1);
}
public void writeDecimal(int start, ArrowBuf buffer) {
writer.writeDecimal(start, buffer);
writer.setPosition(writer.idx()+1);
}
public void writeDecimal(BigDecimal value) {
writer.writeDecimal(value);
writer.setPosition(writer.idx()+1);
}
public void writeBigEndianBytesToDecimal(byte[] value, ArrowType arrowType){
writer.writeBigEndianBytesToDecimal(value, arrowType);
writer.setPosition(writer.idx() + 1);
}
<#list vv.types as type>
<#list type.minor as minor>
<#assign name = minor.class?cap_first />
<#assign fields = minor.fields!type.fields />
<#assign uncappedName = name?uncap_first/>
<#if !minor.typeParams?? >
@Override
public void write${name}(<#list fields as field>${field.type} ${field.name}<#if field_has_next>, #if>#list>) {
writer.write${name}(<#list fields as field>${field.name}<#if field_has_next>, #if>#list>);
writer.setPosition(writer.idx()+1);
}
public void write(${name}Holder holder) {
writer.write${name}(<#list fields as field>holder.${field.name}<#if field_has_next>, #if>#list>);
writer.setPosition(writer.idx()+1);
}
#if>
#list>
#list>
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy