/*
* Copyright Terracotta, 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 org.ehcache.impl.copy;
import org.ehcache.spi.copy.Copier;
import org.ehcache.spi.serialization.SerializerException;
import org.ehcache.spi.serialization.Serializer;
A helper copier implementation that performs the "copying" using serialization
. /**
* A helper copier implementation that performs the "copying" using {@link Serializer serialization}.
*/
public final class SerializingCopier<T> extends ReadWriteCopier<T> {
private final Serializer<T> serializer;
Convenience method allowing to represent this copier's class as the expected type in configuration.
Type parameters: - <T> – The type to work on
Returns: the proper type
/**
* Convenience method allowing to represent this copier's class as the expected type in configuration.
*
* @param <T> The type to work on
* @return the proper type
*/
@SuppressWarnings("unchecked")
public static <T> Class<? extends Copier<T>> asCopierClass() {
return (Class) SerializingCopier.class;
}
Creates a new copier that will using the provided Serializer
. Params: - serializer – the serializer to use
/**
* Creates a new copier that will using the provided {@link Serializer}.
*
* @param serializer the serializer to use
*/
public SerializingCopier(Serializer<T> serializer) {
if (serializer == null) {
throw new NullPointerException("A " + SerializingCopier.class.getName() + " instance requires a "
+ Serializer.class.getName() + " instance to copy!");
}
this.serializer = serializer;
}
Returns a copy of the passed in instance by serializing and deserializing it.
/**
* Returns a copy of the passed in instance by serializing and deserializing it.
*/
@Override
public T copy(final T obj) {
try {
return serializer.read(serializer.serialize(obj));
} catch (ClassNotFoundException e) {
throw new SerializerException("Copying failed.", e);
}
}
Returns the Serializer
used by this copier. Returns: the serializer used
/**
* Returns the {@link Serializer} used by this copier.
*
* @return the serializer used
*/
public Serializer<T> getSerializer() {
return serializer;
}
}