com.helger.commons.serialize.SerializationHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-commons Show documentation
Show all versions of ph-commons Show documentation
Java 1.8+ Library with tons of utility classes required in all projects
The newest version!
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* 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 com.helger.commons.serialize;
import java.io.IOException;
import java.io.NotSerializableException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import javax.annotation.Nonnull;
import javax.annotation.concurrent.Immutable;
import com.helger.commons.ValueEnforcer;
import com.helger.commons.io.stream.NonBlockingByteArrayInputStream;
import com.helger.commons.io.stream.NonBlockingByteArrayOutputStream;
import com.helger.commons.lang.GenericReflection;
/**
* Global serialization helper method.
*
* @author Philip Helger
* @since 8.5.5
*/
@Immutable
public final class SerializationHelper
{
private SerializationHelper ()
{}
/**
* Convert the passed Serializable object to a serialized byte array.
*
* @param aData
* Source object. May not be null
.
* @return A non-null
byte array.
* @throws IllegalStateException
* If serialization failed
*/
@Nonnull
public static byte [] getSerializedByteArray (@Nonnull final Serializable aData)
{
ValueEnforcer.notNull (aData, "Data");
try (final NonBlockingByteArrayOutputStream aBAOS = new NonBlockingByteArrayOutputStream ())
{
// Convert to byte array
try (final ObjectOutputStream aOOS = new ObjectOutputStream (aBAOS))
{
aOOS.writeObject (aData);
}
// Main sending
return aBAOS.toByteArray ();
}
catch (final NotSerializableException ex)
{
throw new IllegalArgumentException ("Not serializable: " + ex.getMessage (), ex);
}
catch (final IOException ex)
{
throw new IllegalArgumentException ("Failed to write serializable object " + aData + " of type " + aData.getClass ().getName (), ex);
}
}
/**
* Convert the passed byte array to an object using deserialization.
*
* @param aData
* The source serialized byte array. Must contain a single object only.
* May not be null
.
* @return The deserialized object. Never null
.
* @throws IllegalStateException
* If deserialization failed
* @param
* The type of the deserialized object
*/
@Nonnull
public static T getDeserializedObject (@Nonnull final byte [] aData)
{
ValueEnforcer.notNull (aData, "Data");
// Read new object from byte array
try (final ObjectInputStream aOIS = new ObjectInputStream (new NonBlockingByteArrayInputStream (aData)))
{
return GenericReflection.uncheckedCast (aOIS.readObject ());
}
catch (final Exception ex)
{
throw new IllegalStateException ("Failed to read serializable object", ex);
}
}
}