com.hazelcast.jet.cdc.impl.RecordPartImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hazelcast-jet-cdc-debezium Show documentation
Show all versions of hazelcast-jet-cdc-debezium Show documentation
Change Data Capture support for Hazelcast Jet
/*
* Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.
*
* 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.hazelcast.jet.cdc.impl;
import com.hazelcast.jet.cdc.ParsingException;
import com.hazelcast.jet.cdc.RecordPart;
import com.hazelcast.jet.json.JsonUtil;
import javax.annotation.Nonnull;
import java.io.IOException;
import java.util.Map;
import java.util.Objects;
class RecordPartImpl implements RecordPart {
private final String json;
private Map content;
RecordPartImpl(@Nonnull String json) {
this.json = Objects.requireNonNull(json);
}
@Override
@Nonnull
public T toObject(@Nonnull Class clazz) throws ParsingException {
Objects.requireNonNull(clazz, "class");
try {
T t = JsonUtil.beanFrom(json, clazz);
if (t == null) {
throw new ParsingException(String.format("Mapping %s as %s didn't yield a result", json, clazz.getName()));
}
return t;
} catch (IOException e) {
throw new ParsingException(e.getMessage(), e);
}
}
@Override
@Nonnull
public Map toMap() throws ParsingException {
if (content == null) {
try {
content = JsonUtil.mapFrom(json);
if (content == null) {
throw new ParsingException(String.format("Parsing %s didn't yield a result", json));
}
} catch (IOException e) {
throw new ParsingException(e.getMessage(), e);
}
}
return content;
}
@Override
@Nonnull
public String toJson() {
return json;
}
@Override
public int hashCode() {
return json.hashCode();
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
RecordPartImpl other = (RecordPartImpl) obj;
return Objects.equals(json, other.json);
}
@Override
public String toString() {
return toJson();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy