/*********************************************************************************************************************** * * Copyright (C) 2010-2013 by the Stratosphere project (http://stratosphere.eu) * * 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 eu.stratosphere.api.java.typeutils.runtime; import java.io.IOException; import java.lang.reflect.Array; import eu.stratosphere.api.common.typeutils.TypeSerializer; import eu.stratosphere.core.memory.DataInputView; import eu.stratosphere.core.memory.DataOutputView; /** * @param <C> The component type */ public class GenericArraySerializer<C> extends TypeSerializer<C[]> { private static final long serialVersionUID = 1L; private final Class<C> componentClass; private final TypeSerializer<C> componentSerializer; private final C[] EMPTY; public GenericArraySerializer(Class<C> componentClass, TypeSerializer<C> componentSerializer) { if (componentClass == null || componentSerializer == null) { throw new NullPointerException(); } this.componentClass = componentClass; this.componentSerializer = componentSerializer; this.EMPTY = create(0); } @Override public boolean isImmutableType() { return false; } @Override public boolean isStateful() { return this.componentSerializer.isStateful(); } @Override public C[] createInstance() { return EMPTY; } @Override public C[] copy(C[] from, C[] reuse) { C[] copy = create(from.length); for (int i = 0; i < copy.length; i++) { copy[i] = this.componentSerializer.copy(from[i], this.componentSerializer.createInstance()); } return copy; } @Override public int getLength() { return -1; } @Override public void serialize(C[] value, DataOutputView target) throws IOException { target.writeInt(value.length); for (int i = 0; i < value.length; i++) { C val = value[i]; if (val == null) { target.writeBoolean(false); } else { target.writeBoolean(true); componentSerializer.serialize(val, target); } } } @Override public C[] deserialize(C[] reuse, DataInputView source) throws IOException { int len = source.readInt(); if (reuse.length != len) { reuse = create(len); } for (int i = 0; i < len; i++) { boolean isNonNull = source.readBoolean(); if (isNonNull) { reuse[i] = componentSerializer.deserialize(componentSerializer.createInstance(), source); } else { reuse[i] = null; } } return reuse; } @Override public void copy(DataInputView source, DataOutputView target) throws IOException { int len = source.readInt(); target.writeInt(len); for (int i = 0; i < len; i++) { boolean isNonNull = source.readBoolean(); target.writeBoolean(isNonNull); if (isNonNull) { componentSerializer.copy(source, target); } } } @SuppressWarnings("unchecked") private final C[] create(int len) { return (C[]) Array.newInstance(componentClass, len); } // -------------------------------------------------------------------------------------------- @Override public int hashCode() { return componentClass.hashCode() + componentSerializer.hashCode(); } @Override public boolean equals(Object obj) { if (obj != null && obj instanceof GenericArraySerializer) { GenericArraySerializer<?> other = (GenericArraySerializer<?>) obj; return this.componentClass == other.componentClass && this.componentSerializer.equals(other.componentSerializer); } else { return false; } } }