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.
/**
* 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.schema;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import parquet.io.InvalidRecordException;
/**
* Represents a group type: a list of fields
*
* @author Julien Le Dem
*
*/
public class GroupType extends Type {
private final List fields;
private final Map indexByName;
/**
* @param repetition OPTIONAL, REPEATED, REQUIRED
* @param name the name of the field
* @param fields the contained fields
*/
public GroupType(Repetition repetition, String name, List fields) {
this(repetition, name, null, fields);
}
/**
* @param repetition OPTIONAL, REPEATED, REQUIRED
* @param name the name of the field
* @param fields the contained fields
*/
public GroupType(Repetition repetition, String name, Type... fields) {
this(repetition, name, null, fields);
}
/**
* @param repetition OPTIONAL, REPEATED, REQUIRED
* @param name the name of the field
* @param originalType (optional) the original type to help with cross schema conversion (LIST, MAP, ...)
* @param fields the contained fields
*/
public GroupType(Repetition repetition, String name, OriginalType originalType, Type... fields) {
this(repetition, name, originalType, Arrays.asList(fields));
}
/**
* @param repetition OPTIONAL, REPEATED, REQUIRED
* @param name the name of the field
* @param originalType (optional) the original type to help with cross schema conversion (LIST, MAP, ...)
* @param fields the contained fields
*/
public GroupType(Repetition repetition, String name, OriginalType originalType, List fields) {
super(name, repetition, originalType);
this.fields = fields;
this.indexByName = new HashMap();
for (int i = 0; i < fields.size(); i++) {
indexByName.put(fields.get(i).getName(), i);
}
}
/**
* returns the name of the corresponding field
* @param index the index of the desired field in this type
* @return the name of the field at this index
*/
public String getFieldName(int index) {
return fields.get(index).getName();
}
/**
* @param name the requested name
* @return whether this type contains a field with that name
*/
public boolean containsField(String name) {
return indexByName.containsKey(name);
}
/**
*
* @param name
* @return the index of the field with that name
*/
public int getFieldIndex(String name) {
if (!indexByName.containsKey(name)) {
throw new InvalidRecordException(name + " not found in " + this);
}
return indexByName.get(name);
}
/**
* @return the fields contained in this type
*/
public List getFields() {
return fields;
}
/**
* @return the number of fields in this type
*/
public int getFieldCount() {
return fields.size();
}
/**
* @return false
*/
@Override
public boolean isPrimitive() {
return false;
}
/**
* @param fieldName
* @return the type of this field by name
*/
public Type getType(String fieldName) {
return getType(getFieldIndex(fieldName));
}
/**
* @param index
* @return the type of this field by index
*/
public Type getType(int index) {
return fields.get(index);
}
/**
* appends a display string for of the members of this group to sb
* @param sb where to append
* @param indent the indentation level
*/
void membersDisplayString(StringBuilder sb, String indent) {
for (Type field : fields) {
field.writeToStringBuilder(sb, indent);
if (field.isPrimitive()) {
sb.append(";");
}
sb.append("\n");
}
}
/**
* {@inheritDoc}
*/
@Override
public void writeToStringBuilder(StringBuilder sb, String indent) {
sb.append(indent)
.append(getRepetition().name().toLowerCase())
.append(" group ")
.append(getName())
.append(getOriginalType() == null ? "" : " (" + getOriginalType() +")")
.append(" {\n");
membersDisplayString(sb, indent + " ");
sb.append(indent)
.append("}");
}
/**
* {@inheritDoc}
*/
@Override
public void accept(TypeVisitor visitor) {
visitor.visit(this);
}
/**
* {@inheritDoc}
*/
@Override
protected int typeHashCode() {
int c = 17;
c += 31 * getRepetition().hashCode();
c += 31 * getName().hashCode();
c += 31 * getFields().hashCode();
return c;
}
/**
* {@inheritDoc}
*/
@Override
protected boolean typeEquals(Type other) {
Type otherType = (Type) other;
if (otherType.isPrimitive()) {
return false;
} else {
GroupType groupType = otherType.asGroupType();
return getRepetition() == groupType.getRepetition() &&
getName().equals(groupType.getName()) &&
getFields().equals(groupType.getFields());
}
}
@Override
protected int getMaxRepetitionLevel(String[] path, int depth) {
int myVal = isRepetition(Repetition.REPEATED) ? 1 : 0;
if (depth == path.length) {
return myVal;
}
return myVal + getType(path[depth]).getMaxRepetitionLevel(path, depth + 1);
}
@Override
protected int getMaxDefinitionLevel(String[] path, int depth) {
int myVal = !isRepetition(Repetition.REQUIRED) ? 1 : 0;
if (depth == path.length) {
return myVal;
}
return myVal + getType(path[depth]).getMaxDefinitionLevel(path, depth + 1);
}
@Override
protected Type getType(String[] path, int depth) {
if (depth == path.length) {
return this;
}
return getType(path[depth]).getType(path, depth + 1);
}
@Override
protected boolean containsPath(String[] path, int depth) {
if (depth == path.length) {
return false;
}
return containsField(path[depth]) && getType(path[depth]).containsPath(path, depth + 1);
}
@Override
protected List getPaths(int depth) {
List result = new ArrayList();
for (Type field : fields) {
List paths = field.getPaths(depth + 1);
for (String[] path : paths) {
path[depth] = field.getName();
result.add(path);
}
}
return result;
}
@Override
void checkContains(Type subType) {
super.checkContains(subType);
checkGroupContains(subType);
}
void checkGroupContains(Type subType) {
if (subType.isPrimitive()) {
throw new InvalidRecordException(subType + " found: expected " + this);
}
List fields = subType.asGroupType().getFields();
for (Type otherType : fields) {
Type thisType = this.getType(otherType.getName());
thisType.checkContains(otherType);
}
}
@Override
T convert(List path, TypeConverter converter) {
List childrenPath = new ArrayList(path);
childrenPath.add(this);
final List children = convertChildren(childrenPath, converter);
return converter.convertGroupType(path, this, children);
}
protected List convertChildren(List path, TypeConverter converter) {
List children = new ArrayList(fields.size());
for (Type field : fields) {
children.add(field.convert(path, converter));
}
return children;
}
@Override
protected Type union(Type toMerge) {
return union(toMerge, true);
}
@Override
protected Type union(Type toMerge, boolean strict) {
if (toMerge.isPrimitive()) {
throw new IncompatibleSchemaModificationException("can not merge primitive type " + toMerge + " into group type " + this);
}
return new GroupType(toMerge.getRepetition(), getName(), mergeFields(toMerge.asGroupType()));
}
/**
* produces the list of fields resulting from merging toMerge into the fields of this
* @param toMerge the group containing the fields to merge
* @return the merged list
*/
List mergeFields(GroupType toMerge) {
return mergeFields(toMerge, true);
}
/**
* produces the list of fields resulting from merging toMerge into the fields of this
* @param toMerge the group containing the fields to merge
* @param strict should schema primitive types match
* @return the merged list
*/
List mergeFields(GroupType toMerge, boolean strict) {
List newFields = new ArrayList();
// merge existing fields
for (Type type : this.getFields()) {
Type merged;
if (toMerge.containsField(type.getName())) {
Type fieldToMerge = toMerge.getType(type.getName());
if (fieldToMerge.getRepetition().isMoreRestrictiveThan(type.getRepetition())) {
throw new IncompatibleSchemaModificationException("repetition constraint is more restrictive: can not merge type " + fieldToMerge + " into " + type);
}
merged = type.union(fieldToMerge, strict);
} else {
merged = type;
}
newFields.add(merged);
}
// add new fields
for (Type type : toMerge.getFields()) {
if (!this.containsField(type.getName())) {
newFields.add(type);
}
}
return newFields;
}
}