com.hazelcast.jet.cdc.impl.ChangeRecordImpl 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.ChangeRecord;
import com.hazelcast.jet.cdc.Operation;
import com.hazelcast.jet.cdc.ParsingException;
import com.hazelcast.jet.cdc.RecordPart;
import javax.annotation.Nonnull;
import java.util.Map;
import java.util.Objects;
public class ChangeRecordImpl implements ChangeRecord {
private final long sequenceSource;
private final long sequenceValue;
private final String keyJson;
private final String valueJson;
private String json;
private Long timestamp;
private Operation operation;
private String database;
private String schema;
private String table;
private RecordPart key;
private RecordPart value;
public ChangeRecordImpl(
long sequenceSource,
long sequenceValue,
@Nonnull String keyJson,
@Nonnull String valueJson
) {
this.sequenceSource = sequenceSource;
this.sequenceValue = sequenceValue;
this.keyJson = Objects.requireNonNull(keyJson, "keyJson");
this.valueJson = Objects.requireNonNull(valueJson, "valueJson");
}
@Override
public long timestamp() throws ParsingException {
if (timestamp == null) {
Long millis = get(value().toMap(), "__ts_ms", Long.class);
if (millis == null) {
throw new ParsingException("No parsable timestamp field found");
}
timestamp = millis;
}
return timestamp;
}
@Override
@Nonnull
public Operation operation() throws ParsingException {
if (operation == null) {
String opAlias = get(value().toMap(), "__op", String.class);
operation = Operation.get(opAlias);
}
return operation;
}
@Nonnull
@Override
public String database() throws ParsingException {
if (database == null) {
database = get(value().toMap(), "__db", String.class);
if (database == null) {
throw new ParsingException("No parsable database name field found");
}
}
return database;
}
@Nonnull
@Override
public String schema() throws ParsingException {
if (schema == null) {
schema = get(value().toMap(), "__schema", String.class);
if (schema == null) {
throw new ParsingException("No parsable schema name field found");
}
}
return schema;
}
@Nonnull
@Override
public String table() throws ParsingException {
if (table == null) {
table = get(value().toMap(), "__table", String.class);
if (table == null) {
throw new ParsingException("No parsable table name field found");
}
}
return table;
}
@Override
@Nonnull
public RecordPart key() {
if (key == null) {
key = new RecordPartImpl(keyJson);
}
return key;
}
@Override
@Nonnull
public RecordPart value() {
if (value == null) {
value = new RecordPartImpl(valueJson);
}
return value;
}
@Override
@Nonnull
public String toJson() {
if (json == null) {
json = String.format("key:{%s}, value:{%s}", keyJson, valueJson);
}
return json;
}
@Override
public long sequenceSource() {
return sequenceSource;
}
@Override
public long sequenceValue() {
return sequenceValue;
}
public String getKeyJson() {
return keyJson;
}
public String getValueJson() {
return valueJson;
}
@Override
public String toString() {
return toJson();
}
@SuppressWarnings("unchecked")
private static T get(Map map, String key, Class clazz) {
Object obj = map.get(key);
if (clazz.isInstance(obj)) {
return (T) obj;
}
return null;
}
@Override
public int hashCode() {
int hash = (int) sequenceSource;
hash = 31 * hash + (int) sequenceValue;
hash = 31 * hash + keyJson.hashCode();
hash = 31 * hash + valueJson.hashCode();
return hash;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ChangeRecordImpl that = (ChangeRecordImpl) obj;
return this.sequenceSource == that.sequenceSource &&
this.sequenceValue == that.sequenceValue &&
this.keyJson.equals(that.keyJson) &&
this.valueJson.equals(that.valueJson);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy