All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
parquet.example.data.simple.SimpleGroup Maven / Gradle / Ivy
/**
* Copyright 2012 Twitter, Inc.
*
* Licensed 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 parquet.example.data.simple;
import java.util.ArrayList;
import java.util.List;
import parquet.example.data.Group;
import parquet.io.api.Binary;
import parquet.io.api.RecordConsumer;
import parquet.schema.GroupType;
import parquet.schema.Type;
public class SimpleGroup extends Group {
private final GroupType schema;
private final List[] data;
@SuppressWarnings("unchecked")
public SimpleGroup(GroupType schema) {
this.schema = schema;
this.data = new List[schema.getFields().size()];
for (int i = 0; i < schema.getFieldCount(); i++) {
this.data[i] = new ArrayList();
}
}
@Override
public String toString() {
return toString("");
}
public String toString(String indent) {
String result = "";
int i = 0;
for (Type field : schema.getFields()) {
String name = field.getName();
List values = data[i];
++i;
if (values != null) {
if (values.size() > 0) {
for (Object value : values) {
result += indent + name;
if (value == null) {
result += ": NULL\n";
} else if (value instanceof Group) {
result += "\n" + ((SimpleGroup)value).toString(indent+" ");
} else {
result += ": " + value.toString() + "\n";
}
}
}
}
}
return result;
}
@Override
public Group addGroup(int fieldIndex) {
SimpleGroup g = new SimpleGroup(schema.getType(fieldIndex).asGroupType());
data[fieldIndex].add(g);
return g;
}
@Override
public Group getGroup(int fieldIndex, int index) {
return (Group)getValue(fieldIndex, index);
}
private Object getValue(int fieldIndex, int index) {
List list;
try {
list = data[fieldIndex];
} catch (IndexOutOfBoundsException e) {
throw new RuntimeException("not found " + fieldIndex + "(" + schema.getFieldName(fieldIndex) + ") in group:\n" + this);
}
try {
return list.get(index);
} catch (IndexOutOfBoundsException e) {
throw new RuntimeException("not found " + fieldIndex + "(" + schema.getFieldName(fieldIndex) + ") element number " + index + " in group:\n" + this);
}
}
private void add(int fieldIndex, Primitive value) {
Type type = schema.getType(fieldIndex);
List list = data[fieldIndex];
if (!type.isRepetition(Type.Repetition.REPEATED)
&& !list.isEmpty()) {
throw new IllegalStateException("field "+fieldIndex+" (" + type.getName() + ") can not have more than one value: " + list);
}
list.add(value);
}
@Override
public int getFieldRepetitionCount(int fieldIndex) {
List list = data[fieldIndex];
return list == null ? 0 : list.size();
}
@Override
public String getValueToString(int fieldIndex, int index) {
return String.valueOf(getValue(fieldIndex, index));
}
@Override
public String getString(int fieldIndex, int index) {
return ((BinaryValue)getValue(fieldIndex, index)).getString();
}
@Override
public int getInteger(int fieldIndex, int index) {
return ((IntegerValue)getValue(fieldIndex, index)).getInteger();
}
@Override
public long getLong(int fieldIndex, int index) {
return ((LongValue)getValue(fieldIndex, index)).getLong();
}
@Override
public boolean getBoolean(int fieldIndex, int index) {
return ((BooleanValue)getValue(fieldIndex, index)).getBoolean();
}
@Override
public Binary getBinary(int fieldIndex, int index) {
return ((BinaryValue)getValue(fieldIndex, index)).getBinary();
}
public NanoTime getTimeNanos(int fieldIndex, int index) {
return NanoTime.fromInt96((Int96Value)getValue(fieldIndex, index));
}
@Override
public Binary getInt96(int fieldIndex, int index) {
return ((Int96Value)getValue(fieldIndex, index)).getInt96();
}
@Override
public void add(int fieldIndex, int value) {
add(fieldIndex, new IntegerValue(value));
}
@Override
public void add(int fieldIndex, long value) {
add(fieldIndex, new LongValue(value));
}
@Override
public void add(int fieldIndex, String value) {
add(fieldIndex, new BinaryValue(Binary.fromString(value)));
}
@Override
public void add(int fieldIndex, NanoTime value) {
add(fieldIndex, value.toInt96());
}
@Override
public void add(int fieldIndex, boolean value) {
add(fieldIndex, new BooleanValue(value));
}
@Override
public void add(int fieldIndex, Binary value) {
switch (getType().getType(fieldIndex).asPrimitiveType().getPrimitiveTypeName()) {
case BINARY:
add(fieldIndex, new BinaryValue(value));
break;
case INT96:
add(fieldIndex, new Int96Value(value));
break;
default:
throw new UnsupportedOperationException(
getType().asPrimitiveType().getName() + " not supported for Binary");
}
}
@Override
public void add(int fieldIndex, float value) {
add(fieldIndex, new FloatValue(value));
}
@Override
public void add(int fieldIndex, double value) {
add(fieldIndex, new DoubleValue(value));
}
@Override
public GroupType getType() {
return schema;
}
@Override
public void writeValue(int field, int index, RecordConsumer recordConsumer) {
((Primitive)getValue(field, index)).writeValue(recordConsumer);
}
}