io.nats.client.api.SourceBase Maven / Gradle / Ivy
// Copyright 2020 The NATS Authors
// 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 io.nats.client.api;
import io.nats.client.support.JsonSerializable;
import io.nats.client.support.JsonUtils;
import io.nats.client.support.JsonValue;
import io.nats.client.support.JsonValueUtils;
import java.time.ZonedDateTime;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import static io.nats.client.JetStreamOptions.convertDomainToPrefix;
import static io.nats.client.support.ApiConstants.*;
import static io.nats.client.support.JsonUtils.beginJson;
import static io.nats.client.support.JsonUtils.endJson;
import static io.nats.client.support.JsonValueUtils.readValue;
import static io.nats.client.support.Validator.consumerFilterSubjectsAreEquivalent;
public abstract class SourceBase implements JsonSerializable {
private final String name;
private final long startSeq;
private final ZonedDateTime startTime;
private final String filterSubject;
private final External external;
private final List subjectTransforms;
SourceBase(JsonValue jv) {
name = JsonValueUtils.readString(jv, NAME);
startSeq = JsonValueUtils.readLong(jv, OPT_START_SEQ, 0);
startTime = JsonValueUtils.readDate(jv, OPT_START_TIME);
filterSubject = JsonValueUtils.readString(jv, FILTER_SUBJECT);
external = External.optionalInstance(readValue(jv, EXTERNAL));
subjectTransforms = SubjectTransform.optionalListOf(readValue(jv, SUBJECT_TRANSFORMS));
}
SourceBase(SourceBaseBuilder> b) {
this.name = b.name;
this.startSeq = b.startSeq;
this.startTime = b.startTime;
this.filterSubject = b.filterSubject;
this.external = b.external;
this.subjectTransforms = b.subjectTransforms;
}
/**
* Returns a JSON representation of this mirror
* @return json mirror json string
*/
public String toJson() {
StringBuilder sb = beginJson();
JsonUtils.addField(sb, NAME, name);
JsonUtils.addFieldWhenGreaterThan(sb, OPT_START_SEQ, startSeq, 0);
JsonUtils.addField(sb, OPT_START_TIME, startTime);
JsonUtils.addField(sb, FILTER_SUBJECT, filterSubject);
JsonUtils.addField(sb, EXTERNAL, external);
JsonUtils.addJsons(sb, SUBJECT_TRANSFORMS, subjectTransforms);
return endJson(sb).toString();
}
/**
* Get the name of the source. Same as getName()
* @return get the source name
*/
public String getSourceName() {
return name;
}
/**
* Get the name of the source. Same as getSourceName()
* @return the source name
*/
public String getName() {
return name;
}
public long getStartSeq() {
return startSeq;
}
public ZonedDateTime getStartTime() {
return startTime;
}
public String getFilterSubject() {
return filterSubject;
}
public External getExternal() {
return external;
}
public List getSubjectTransforms() {
return subjectTransforms;
}
@Override
public String toString() {
return JsonUtils.toKey(getClass()) + toJson();
}
public abstract static class SourceBaseBuilder {
String name;
long startSeq;
ZonedDateTime startTime;
String filterSubject;
External external;
List subjectTransforms = new ArrayList<>();
abstract T getThis();
public SourceBaseBuilder() {}
public SourceBaseBuilder(SourceBase base) {
this.name = base.name;
this.startSeq = base.startSeq;
this.startTime = base.startTime;
this.filterSubject = base.filterSubject;
this.external = base.external;
this.subjectTransforms = base.getSubjectTransforms();
}
public T sourceName(String name) {
this.name = name;
return getThis();
}
public T name(String name) {
this.name = name;
return getThis();
}
public T startSeq(long startSeq) {
this.startSeq = startSeq;
return getThis();
}
public T startTime(ZonedDateTime startTime) {
this.startTime = startTime;
return getThis();
}
public T filterSubject(String filterSubject) {
this.filterSubject = filterSubject;
return getThis();
}
public T external(External external) {
this.external = external;
return getThis();
}
public T domain(String domain) {
String prefix = convertDomainToPrefix(domain);
external = prefix == null ? null : External.builder().api(prefix).build();
return getThis();
}
public T subjectTransforms(SubjectTransform... subjectTransforms) {
this.subjectTransforms = subjectTransforms == null ? null : Arrays.asList(subjectTransforms);
return getThis();
}
public T subjectTransforms(List subjectTransforms) {
this.subjectTransforms = subjectTransforms;
return getThis();
}
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
SourceBase that = (SourceBase) o;
if (startSeq != that.startSeq) return false;
if (!Objects.equals(name, that.name)) return false;
if (!Objects.equals(startTime, that.startTime)) return false;
if (!Objects.equals(filterSubject, that.filterSubject))
return false;
if (!Objects.equals(external, that.external)) return false;
return consumerFilterSubjectsAreEquivalent(subjectTransforms, that.subjectTransforms);
}
@Override
public int hashCode() {
int result = name != null ? name.hashCode() : 0;
result = 31 * result + (int) (startSeq ^ (startSeq >>> 32));
result = 31 * result + (startTime != null ? startTime.hashCode() : 0);
result = 31 * result + (filterSubject != null ? filterSubject.hashCode() : 0);
result = 31 * result + (external != null ? external.hashCode() : 0);
result = 31 * result + (subjectTransforms != null ? subjectTransforms.hashCode() : 0);
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy