com.facebook.hive.orc.OrcUnion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hive-dwrf Show documentation
Show all versions of hive-dwrf Show documentation
DWRF file format for Hive
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
/**
* 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 com.facebook.hive.orc;
import java.util.ArrayList;
import java.util.List;
import com.facebook.hive.orc.lazy.OrcLazyObjectInspectorUtils;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.FBSettableUnionObjectInspector;
import org.apache.hadoop.hive.serde2.objectinspector.UnionObject;
import org.apache.hadoop.hive.serde2.typeinfo.TypeInfo;
import org.apache.hadoop.hive.serde2.typeinfo.UnionTypeInfo;
/**
* An in-memory representation of a union type.
*/
public final class OrcUnion implements UnionObject {
private byte tag;
private Object object;
public void set(byte tag, Object object) {
this.tag = tag;
this.object = object;
}
@Override
public byte getTag() {
return tag;
}
@Override
public Object getObject() {
return object;
}
@Override
public boolean equals(Object other) {
if (other == null || other.getClass() != OrcUnion.class) {
return false;
}
OrcUnion oth = (OrcUnion) other;
if (tag != oth.tag) {
return false;
} else if (object == null) {
return oth.object == null;
} else {
return object.equals(oth.object);
}
}
@Override
public int hashCode() {
int result = tag;
if (object != null) {
result ^= object.hashCode();
}
return result;
}
@Override
public String toString() {
return "union(" + Integer.toString(tag & 0xff) + ", " + object.toString() +
")";
}
public static class OrcUnionObjectInspector implements FBSettableUnionObjectInspector {
private final List children;
public OrcUnionObjectInspector(int columnId,
List types) {
OrcProto.Type type = types.get(columnId);
children = new ArrayList(type.getSubtypesCount());
for(int i=0; i < type.getSubtypesCount(); ++i) {
children.add(OrcLazyObjectInspectorUtils.createWritableObjectInspector(type.getSubtypes(i),
types));
}
}
public OrcUnionObjectInspector(UnionTypeInfo info) {
List unionChildren = info.getAllUnionObjectTypeInfos();
this.children = new ArrayList(unionChildren.size());
for(TypeInfo child: info.getAllUnionObjectTypeInfos()) {
this.children.add(OrcLazyObjectInspectorUtils.createWritableObjectInspector(child));
}
}
@Override
public List getObjectInspectors() {
return children;
}
@Override
public byte getTag(Object obj) {
return ((OrcUnion) obj).tag;
}
@Override
public Object getField(Object obj) {
return ((OrcUnion) obj).object;
}
@Override
public String getTypeName() {
StringBuilder builder = new StringBuilder("uniontype<");
boolean first = true;
for(ObjectInspector child: children) {
if (first) {
first = false;
} else {
builder.append(",");
}
builder.append(child.getTypeName());
}
builder.append(">");
return builder.toString();
}
@Override
public Category getCategory() {
return Category.UNION;
}
@Override
public boolean equals(Object o) {
if (o == null || o.getClass() != getClass()) {
return false;
} else if (o == this) {
return true;
} else {
List other = ((OrcUnionObjectInspector) o).children;
if (other.size() != children.size()) {
return false;
}
for(int i = 0; i < children.size(); ++i) {
if (!other.get(i).equals(children.get(i))) {
return false;
}
}
return true;
}
}
@Override
public Object create() {
return new OrcUnion();
}
@Override
public void setField(Object union, byte tag, Object object) {
((OrcUnion) union).set(tag, object);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy