Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.kafka.image;
import org.apache.kafka.image.node.MetadataImageNode;
import org.apache.kafka.image.writer.ImageWriter;
import org.apache.kafka.image.writer.ImageWriterOptions;
import org.apache.kafka.raft.OffsetAndEpoch;
import java.util.Objects;
/**
* The broker metadata image.
*
* This class is thread-safe.
*/
public final class MetadataImage {
public final static MetadataImage EMPTY = new MetadataImage(
MetadataProvenance.EMPTY,
FeaturesImage.EMPTY,
ClusterImage.EMPTY,
TopicsImage.EMPTY,
ConfigurationsImage.EMPTY,
ClientQuotasImage.EMPTY,
ProducerIdsImage.EMPTY,
AclsImage.EMPTY,
ScramImage.EMPTY);
private final MetadataProvenance provenance;
private final FeaturesImage features;
private final ClusterImage cluster;
private final TopicsImage topics;
private final ConfigurationsImage configs;
private final ClientQuotasImage clientQuotas;
private final ProducerIdsImage producerIds;
private final AclsImage acls;
private final ScramImage scram;
public MetadataImage(
MetadataProvenance provenance,
FeaturesImage features,
ClusterImage cluster,
TopicsImage topics,
ConfigurationsImage configs,
ClientQuotasImage clientQuotas,
ProducerIdsImage producerIds,
AclsImage acls,
ScramImage scram
) {
this.provenance = provenance;
this.features = features;
this.cluster = cluster;
this.topics = topics;
this.configs = configs;
this.clientQuotas = clientQuotas;
this.producerIds = producerIds;
this.acls = acls;
this.scram = scram;
}
public boolean isEmpty() {
return features.isEmpty() &&
cluster.isEmpty() &&
topics.isEmpty() &&
configs.isEmpty() &&
clientQuotas.isEmpty() &&
producerIds.isEmpty() &&
acls.isEmpty() &&
scram.isEmpty();
}
public MetadataProvenance provenance() {
return provenance;
}
public OffsetAndEpoch highestOffsetAndEpoch() {
return new OffsetAndEpoch(provenance.lastContainedOffset(), provenance.lastContainedEpoch());
}
public long offset() {
return provenance.lastContainedOffset();
}
public FeaturesImage features() {
return features;
}
public ClusterImage cluster() {
return cluster;
}
public TopicsImage topics() {
return topics;
}
public ConfigurationsImage configs() {
return configs;
}
public ClientQuotasImage clientQuotas() {
return clientQuotas;
}
public ProducerIdsImage producerIds() {
return producerIds;
}
public AclsImage acls() {
return acls;
}
public ScramImage scram() {
return scram;
}
public void write(ImageWriter writer, ImageWriterOptions options) {
// Features should be written out first so we can include the metadata.version at the beginning of the
// snapshot
features.write(writer, options);
cluster.write(writer, options);
topics.write(writer, options);
configs.write(writer, options);
clientQuotas.write(writer, options);
producerIds.write(writer, options);
acls.write(writer, options);
scram.write(writer, options);
writer.close(true);
}
@Override
public boolean equals(Object o) {
if (o == null || !o.getClass().equals(this.getClass())) return false;
MetadataImage other = (MetadataImage) o;
return provenance.equals(other.provenance) &&
features.equals(other.features) &&
cluster.equals(other.cluster) &&
topics.equals(other.topics) &&
configs.equals(other.configs) &&
clientQuotas.equals(other.clientQuotas) &&
producerIds.equals(other.producerIds) &&
acls.equals(other.acls) &&
scram.equals(other.scram);
}
@Override
public int hashCode() {
return Objects.hash(
provenance,
features,
cluster,
topics,
configs,
clientQuotas,
producerIds,
acls,
scram);
}
@Override
public String toString() {
return new MetadataImageNode(this).stringify();
}
}