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

org.apache.pulsar.client.impl.ReaderInterceptorUtil Maven / Gradle / Ivy

There is a newer version: 4.0.1.4
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.client.impl;

import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import org.apache.pulsar.client.api.Consumer;
import org.apache.pulsar.client.api.ConsumerInterceptor;
import org.apache.pulsar.client.api.Message;
import org.apache.pulsar.client.api.MessageId;
import org.apache.pulsar.client.api.Reader;
import org.apache.pulsar.client.api.ReaderInterceptor;


/**
 * ReaderInterceptorUtil is used to wrap ReaderInterceptor by ConsumerInterceptor.
 */
public class ReaderInterceptorUtil {

    public static  ConsumerInterceptors convertToConsumerInterceptors(
            Reader reader, List> interceptorList) {
        if (interceptorList == null || interceptorList.isEmpty()) {
            return null;
        }
        List> consumerInterceptorList = new ArrayList<>(interceptorList.size());
        for (ReaderInterceptor readerInterceptor : interceptorList) {
            consumerInterceptorList.add(getInterceptor(reader, readerInterceptor));
        }
        return new ConsumerInterceptors<>(consumerInterceptorList);
    }

    private static  ConsumerInterceptor getInterceptor(Reader reader, ReaderInterceptor readerInterceptor) {
        return new ConsumerInterceptor() {
            @Override
            public void close() {
                readerInterceptor.close();
            }

            @Override
            public Message beforeConsume(Consumer consumer, Message message) {
                return readerInterceptor.beforeRead(reader, message);
            }

            @Override
            public void onAcknowledge(Consumer consumer, MessageId messageId, Throwable exception) {
                // nothing to do
            }

            @Override
            public void onAcknowledgeCumulative(Consumer consumer,
                                                MessageId messageId, Throwable exception) {
                // nothing to do
            }

            @Override
            public void onNegativeAcksSend(Consumer consumer, Set set) {
                // nothing to do
            }

            @Override
            public void onAckTimeoutSend(Consumer consumer, Set set) {
                // nothing to do
            }

            @Override
            public void onPartitionsChange(String topicName, int partitions) {
                readerInterceptor.onPartitionsChange(topicName, partitions);
            }
        };
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy