io.sphere.sdk.messages.GenericMessageImpl Maven / Gradle / Ivy
package io.sphere.sdk.messages;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.node.ObjectNode;
import io.sphere.sdk.json.SphereJsonUtils;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.models.ResourceImpl;
import java.time.ZonedDateTime;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
public abstract class GenericMessageImpl extends ResourceImpl implements GenericMessage {
protected final Long sequenceNumber;
protected final JsonNode resource;
protected final Long resourceVersion;
protected final String type;
@JsonIgnore
private final Map furtherFields = new HashMap<>();
@JsonIgnore
private final TypeReference> typeReference;
public GenericMessageImpl(final String id, final Long version, final ZonedDateTime createdAt,
final ZonedDateTime lastModifiedAt, final JsonNode resource,
final Long sequenceNumber, final Long resourceVersion,
final String type, final TypeReference> typeReference) {
super(id, version, createdAt, lastModifiedAt);
this.resource = resource;
this.sequenceNumber = sequenceNumber;
this.resourceVersion = resourceVersion;
this.type = type;
this.typeReference = typeReference;
}
@Override
public Long getResourceVersion() {
return resourceVersion;
}
@Override
public Long getSequenceNumber() {
return sequenceNumber;
}
@Override
public String getType() {
return type;
}
@Override
public Reference toReference() {
return Reference.of(Message.referenceTypeId(), getId(), this);
}
@SuppressWarnings("unchecked")
@Override
public Reference getResource() {
return SphereJsonUtils.readObject(resource, typeReference);
}
@Override
public JsonNode getPayload() {
final ObjectMapper objectMapper = SphereJsonUtils.newObjectMapper();
final ObjectNode jsonNode = objectMapper.createObjectNode();
furtherFields.entrySet().forEach(entry -> jsonNode.replace(entry.getKey(), entry.getValue()));
return jsonNode;
}
@Override
public T as(final Class messageClass) {
final ObjectMapper objectMapper = SphereJsonUtils.newObjectMapper();
final ObjectNode jsonNode = objectMapper.createObjectNode()
.put("id", getId())
.put("version", getVersion())
.put("createdAt", getCreatedAt().toString())
.put("lastModifiedAt", getLastModifiedAt().toString())
.put("sequenceNumber", sequenceNumber)
.put("resourceVersion", resourceVersion)
.put("type", type);
furtherFields.entrySet().forEach(entry -> jsonNode.replace(entry.getKey(), entry.getValue()));
jsonNode.replace("resource", resource);
return SphereJsonUtils.readObject(jsonNode, messageClass);
}
@JsonAnySetter
private void set(final String key, final JsonNode value) {
furtherFields.put(key, value);
}
@Override
public boolean equals(final Object o) {
if (this == o) return true;
if (!(o instanceof GenericMessageImpl)) return false;
//
//important, do not use this:
//
//if (!super.equals(o)) return false;
final GenericMessageImpl> that = (GenericMessageImpl>) o;
return Objects.equals(getSequenceNumber(), that.getSequenceNumber()) &&
Objects.equals(getResource(), that.getResource()) &&
Objects.equals(getResourceVersion(), that.getResourceVersion()) &&
Objects.equals(getType(), that.getType()) &&
Objects.equals(furtherFields, that.furtherFields);
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), getSequenceNumber(), getResource(), getResourceVersion(), getType(), furtherFields);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy