org.eclipse.ditto.internal.utils.cluster.JsonJsonifiableSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-internal-utils-cluster Show documentation
Show all versions of ditto-internal-utils-cluster Show documentation
Eclipse Ditto is a framework for creating and managing digital twins in the IoT.
The newest version!
/*
* Copyright (c) 2017 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.ditto.internal.utils.cluster;
import java.nio.ByteBuffer;
import javax.annotation.concurrent.NotThreadSafe;
import org.eclipse.ditto.json.JsonFactory;
import org.eclipse.ditto.json.JsonObject;
import org.eclipse.ditto.json.JsonValue;
import org.apache.pekko.actor.ExtendedActorSystem;
/**
* Serializer of Eclipse Ditto for Jsonifiables via string-based {@code ditto-json}.
*/
@NotThreadSafe
public final class JsonJsonifiableSerializer extends AbstractJsonifiableWithDittoHeadersSerializer {
private static final int UNIQUE_IDENTIFIER = 784456217;
/**
* Constructs a new {@code JsonifiableSerializer} object.
*
* @param actorSystem the ExtendedActorSystem to use in order to dynamically load mapping strategies in parent.
*/
public JsonJsonifiableSerializer(final ExtendedActorSystem actorSystem) {
super(UNIQUE_IDENTIFIER, actorSystem, ManifestProvider.getInstance(), "JSON");
}
@Override
protected void serializeIntoByteBuffer(final JsonObject jsonObject, final ByteBuffer byteBuffer) {
final String jsonStr = jsonObject.toString();
byteBuffer.put(CHARSET.encode(jsonStr));
}
@Override
protected JsonValue deserializeFromByteBuffer(final ByteBuffer byteBuffer) {
String json = CHARSET.decode(byteBuffer).toString();
return JsonFactory.readFrom(json);
}
}