All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.pulsar.broker.systopic.TransactionBufferSystemTopicClient Maven / Gradle / Ivy

There is a newer version: 4.0.0.10
Show newest version
/**
 * 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.pulsar.broker.systopic;

import java.io.IOException;
import java.util.concurrent.CompletableFuture;
import lombok.extern.slf4j.Slf4j;
import org.apache.pulsar.broker.service.TransactionBufferSnapshotService;
import org.apache.pulsar.broker.transaction.buffer.matadata.TransactionBufferSnapshot;
import org.apache.pulsar.client.api.Message;
import org.apache.pulsar.client.api.MessageId;
import org.apache.pulsar.client.api.Producer;
import org.apache.pulsar.client.api.PulsarClient;
import org.apache.pulsar.client.api.PulsarClientException;
import org.apache.pulsar.client.api.Schema;
import org.apache.pulsar.common.naming.TopicName;

@Slf4j
public class TransactionBufferSystemTopicClient extends SystemTopicClientBase {
    private TransactionBufferSnapshotService transactionBufferSnapshotService;

    public TransactionBufferSystemTopicClient(PulsarClient client, TopicName topicName,
                                              TransactionBufferSnapshotService transactionBufferSnapshotService) {
        super(client, topicName);
        this.transactionBufferSnapshotService = transactionBufferSnapshotService;
    }

    @Override
    protected CompletableFuture> newWriterAsyncInternal() {
        return client.newProducer(Schema.AVRO(TransactionBufferSnapshot.class))
                .topic(topicName.toString())
                .createAsync().thenCompose(producer -> {
                    if (log.isDebugEnabled()) {
                        log.debug("[{}] A new transactionBufferSnapshot writer is created", topicName);
                    }
                    return CompletableFuture.completedFuture(
                            new TransactionBufferSnapshotWriter(producer, this));
                });
    }

    @Override
    protected CompletableFuture> newReaderAsyncInternal() {
        return client.newReader(Schema.AVRO(TransactionBufferSnapshot.class))
                .topic(topicName.toString())
                .startMessageId(MessageId.earliest)
                .readCompacted(true)
                .createAsync()
                .thenCompose(reader -> {
                    if (log.isDebugEnabled()) {
                        log.debug("[{}] A new transactionBufferSnapshot buffer reader is created", topicName);
                    }
                    return CompletableFuture.completedFuture(
                            new TransactionBufferSnapshotReader(reader, this));
                });
    }

    protected void removeWriter(TransactionBufferSnapshotWriter writer) {
        writers.remove(writer);
        this.transactionBufferSnapshotService.removeClient(topicName, this);
    }

    protected void removeReader(TransactionBufferSnapshotReader reader) {
        readers.remove(reader);
        this.transactionBufferSnapshotService.removeClient(topicName, this);
    }

    private static class TransactionBufferSnapshotWriter implements Writer {

        private final Producer producer;
        private final TransactionBufferSystemTopicClient transactionBufferSystemTopicClient;

        private TransactionBufferSnapshotWriter(Producer producer,
                                                TransactionBufferSystemTopicClient transactionBufferSystemTopicClient) {
            this.producer = producer;
            this.transactionBufferSystemTopicClient = transactionBufferSystemTopicClient;
        }

        @Override
        public MessageId write(TransactionBufferSnapshot transactionBufferSnapshot) throws PulsarClientException {
            return producer.newMessage().key(transactionBufferSnapshot.getTopicName())
                    .value(transactionBufferSnapshot).send();
        }

        @Override
        public CompletableFuture writeAsync(TransactionBufferSnapshot transactionBufferSnapshot) {
            return producer.newMessage().key(transactionBufferSnapshot.getTopicName())
                    .value(transactionBufferSnapshot).sendAsync();
        }

        @Override
        public MessageId delete(TransactionBufferSnapshot transactionBufferSnapshot) throws PulsarClientException {
            return producer.newMessage()
                    .key(transactionBufferSnapshot.getTopicName())
                    .value(null)
                    .send();
        }

        @Override
        public CompletableFuture deleteAsync(TransactionBufferSnapshot transactionBufferSnapshot) {
            return producer.newMessage()
                    .key(transactionBufferSnapshot.getTopicName())
                    .value(null)
                    .sendAsync();
        }

        @Override
        public void close() throws IOException {
            this.producer.close();
            transactionBufferSystemTopicClient.removeWriter(this);
        }

        @Override
        public CompletableFuture closeAsync() {
            CompletableFuture completableFuture = new CompletableFuture<>();
            producer.closeAsync().whenComplete((v, e) -> {
                // if close fail, also need remove the producer
                transactionBufferSystemTopicClient.removeWriter(this);
                if (e != null) {
                    completableFuture.completeExceptionally(e);
                    return;
                }
                completableFuture.complete(null);
            });
            return completableFuture;
        }

        @Override
        public SystemTopicClient getSystemTopicClient() {
            return transactionBufferSystemTopicClient;
        }
    }

    private static class TransactionBufferSnapshotReader implements Reader {

        private final org.apache.pulsar.client.api.Reader reader;
        private final TransactionBufferSystemTopicClient transactionBufferSystemTopicClient;

        private TransactionBufferSnapshotReader(org.apache.pulsar.client.api.Reader reader,
                                                TransactionBufferSystemTopicClient transactionBufferSystemTopicClient) {
            this.reader = reader;
            this.transactionBufferSystemTopicClient = transactionBufferSystemTopicClient;
        }

        @Override
        public Message readNext() throws PulsarClientException {
            return reader.readNext();
        }

        @Override
        public CompletableFuture> readNextAsync() {
            return reader.readNextAsync();
        }

        @Override
        public boolean hasMoreEvents() throws PulsarClientException {
            return reader.hasMessageAvailable();
        }

        @Override
        public CompletableFuture hasMoreEventsAsync() {
            return reader.hasMessageAvailableAsync();
        }

        @Override
        public void close() throws IOException {
            this.reader.close();
            transactionBufferSystemTopicClient.removeReader(this);
        }

        @Override
        public CompletableFuture closeAsync() {
            CompletableFuture completableFuture = new CompletableFuture<>();
            reader.closeAsync().whenComplete((v, e) -> {
                // if close fail, also need remove the reader
                transactionBufferSystemTopicClient.removeReader(this);
                if (e != null) {
                    completableFuture.completeExceptionally(e);
                    return;
                }
                completableFuture.complete(null);
            });
            return completableFuture;
        }

        @Override
        public SystemTopicClient getSystemTopic() {
            return transactionBufferSystemTopicClient;
        }
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy