
org.apache.hadoop.hive.ql.exec.persistence.MapJoinObjectKey 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.hadoop.hive.ql.exec.persistence;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.util.ArrayList;
import org.apache.hadoop.hive.ql.exec.HashTableSinkOperator;
import org.apache.hadoop.hive.ql.exec.HashTableSinkOperator.HashTableSinkObjectCtx;
import org.apache.hadoop.hive.ql.exec.MapJoinOperator;
import org.apache.hadoop.hive.serde2.SerDeException;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorUtils;
import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspectorUtils.ObjectInspectorCopyOption;
import org.apache.hadoop.io.Writable;
/**
* Map Join Object used for both key.
*/
public class MapJoinObjectKey extends AbstractMapJoinKey {
protected transient Object[] obj;
public MapJoinObjectKey() {
}
/**
* @param obj
*/
public MapJoinObjectKey(Object[] obj) {
this.obj = obj;
}
@Override
public boolean equals(Object o) {
if (o instanceof MapJoinObjectKey) {
MapJoinObjectKey mObj = (MapJoinObjectKey) o;
Object[] mObjArray = mObj.getObj();
if ((obj == null) && (mObjArray == null)) {
return true;
}
if ((obj != null) && (mObjArray != null)) {
if (obj.length == mObjArray.length) {
for (int i = 0; i < obj.length; i++) {
if (obj[i] == null) {
return mObjArray[i] == null;
}
if (!obj[i].equals(mObjArray[i])) {
return false;
}
}
return true;
}
}
}
return false;
}
@Override
public int hashCode() {
int hashCode;
if (obj == null) {
hashCode = metadataTag;
} else {
hashCode = 1;
for (int i = 0; i < obj.length; i++) {
Object o = obj[i];
hashCode = 31 * hashCode + (o == null ? 0 : o.hashCode());
}
}
return hashCode;
}
@Override
public void readExternal(ObjectInput in) throws IOException,
ClassNotFoundException {
try {
// get the tableDesc from the map stored in the mapjoin operator
HashTableSinkObjectCtx ctx = MapJoinOperator.getMetadata().get(
Integer.valueOf(metadataTag));
Writable val = ctx.getSerDe().getSerializedClass().newInstance();
val.readFields(in);
ArrayList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy