/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch 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. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.index.seqno; import org.opensearch.core.common.io.stream.StreamInput; import org.opensearch.core.common.io.stream.StreamOutput; import org.opensearch.core.common.io.stream.Writeable; import org.opensearch.core.xcontent.ToXContentFragment; import org.opensearch.core.xcontent.XContentBuilder; import org.opensearch.core.xcontent.XContent; import java.io.IOException; import java.util.Objects; /** * Represents retention lease stats. * * @opensearch.internal */ public final class RetentionLeaseStats implements ToXContentFragment, Writeable { private final RetentionLeases retentionLeases; /** * The underlying retention lease collection backing this stats object. * * @return the retention lease collection */ public RetentionLeases retentionLeases() { return retentionLeases; } /** * Constructs a new retention lease stats object from the specified retention lease collection. * * @param retentionLeases the retention lease collection */ public RetentionLeaseStats(final RetentionLeases retentionLeases) { this.retentionLeases = Objects.requireNonNull(retentionLeases); } /** * Constructs a new retention lease stats object from a stream. The retention lease stats should have been written via * {@link #writeTo(StreamOutput)}. * * @param in the stream to construct the retention lease stats from * @throws IOException if an I/O exception occurs reading from the stream */ public RetentionLeaseStats(final StreamInput in) throws IOException { retentionLeases = new RetentionLeases(in); } /** * Writes a retention lease stats object to a stream in a manner suitable for later reconstruction via * {@link #RetentionLeaseStats(StreamInput)} (StreamInput)}. * * @param out the stream to write the retention lease stats to * @throws IOException if an I/O exception occurs writing to the stream */ @Override public void writeTo(final StreamOutput out) throws IOException { retentionLeases.writeTo(out); } /** * Converts the retention lease stats to {@link XContent} using the specified builder and pararms. * * @param builder the builder * @param params the params * @return the builder that this retention lease collection was converted to {@link XContent} into * @throws IOException if an I/O exception occurs writing to the builder */ @Override public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException { builder.startObject("retention_leases"); { builder.field("primary_term", retentionLeases.primaryTerm()); builder.field("version", retentionLeases.version()); builder.startArray("leases"); { for (final RetentionLease retentionLease : retentionLeases.leases()) { builder.startObject(); { builder.field("id", retentionLease.id()); builder.field("retaining_seq_no", retentionLease.retainingSequenceNumber()); builder.field("timestamp", retentionLease.timestamp()); builder.field("source", retentionLease.source()); } builder.endObject(); } } builder.endArray(); } builder.endObject(); return builder; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; final RetentionLeaseStats that = (RetentionLeaseStats) o; return Objects.equals(retentionLeases, that.retentionLeases); } @Override public int hashCode() { return Objects.hash(retentionLeases); } }