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

org.apache.flink.connector.pulsar.source.StopCondition Maven / Gradle / Ivy

There is a newer version: 1.12.0
Show newest version
/*
 * 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 org.apache.flink.connector.pulsar.source;

import org.apache.pulsar.client.api.Consumer;
import org.apache.pulsar.client.api.Message;
import org.apache.pulsar.client.api.MessageId;
import org.apache.pulsar.client.api.PulsarClientException;
import org.apache.pulsar.client.impl.MessageIdImpl;

import java.io.Serializable;
import java.util.Comparator;
import java.util.Map;

import static org.apache.flink.connector.pulsar.source.StopCondition.StopResult.DONT_STOP;
import static org.apache.flink.connector.pulsar.source.StopCondition.StopResult.STOP_AFTER;
import static org.apache.flink.connector.pulsar.source.StopCondition.StopResult.STOP_BEFORE;

/**
 * An interface to control when to stop.
 */
public interface StopCondition extends Serializable {
    StopResult shouldStop(AbstractPartition partition, Message message);

    /**
     * Enum for stop condition.
     */
    enum StopResult {
        STOP_BEFORE, STOP_AFTER, DONT_STOP;
    }

    Comparator NON_BATCH_COMPARATOR = new Comparator() {
        final Comparator implComparator = Comparator
                .comparingLong(MessageIdImpl::getLedgerId)
                .thenComparingLong(MessageIdImpl::getEntryId)
                .thenComparingInt(MessageIdImpl::getPartitionIndex);

        @Override
        public int compare(MessageId o1, MessageId o2) {
            return implComparator.compare((MessageIdImpl) o1, (MessageIdImpl) o2);
        }
    };

    default void init(AbstractPartition partition, Consumer consumer) throws PulsarClientException {
    }

    static StopCondition stopAtMessageId(MessageId id) {
        return (partition, message) -> hitMessageId(message, id) ? STOP_BEFORE : DONT_STOP;
    }

    static boolean hitMessageId(Message message, MessageId id) {
        return NON_BATCH_COMPARATOR.compare(message.getMessageId(), id) >= 0;
    }

    static StopCondition stopAfterMessageId(MessageId id) {
        return (partition, message) -> hitMessageId(message, id) ? STOP_AFTER : DONT_STOP;
    }

    static StopCondition stopAtMessageIds(Map ids) {
        return (partition, message) -> hitMessageId(message, ids.get(partition)) ? STOP_BEFORE : DONT_STOP;
    }

    static StopCondition stopAfterMessageIds(Map ids) {
        return (partition, message) -> hitMessageId(message, ids.get(partition)) ? STOP_AFTER : DONT_STOP;
    }

    static StopCondition stopAtTimestamp(long timestamp) {
        return (partition, message) -> message.getEventTime() >= timestamp ? STOP_BEFORE : DONT_STOP;
    }

    static StopCondition stopAfterTimestamp(long timestamp) {
        return (partition, message) -> message.getEventTime() >= timestamp ? STOP_AFTER : DONT_STOP;
    }

    static StopCondition stopAtLast() {
        return new LastStopCondition() {
            @Override
            public StopResult shouldStop(AbstractPartition partition, Message message) {
                return lastId == null || hitMessageId(message, lastId) ? STOP_BEFORE : DONT_STOP;
            }
        };
    }

    static StopCondition stopAfterLast() {
        return new LastStopCondition() {
            @Override
            public StopResult shouldStop(AbstractPartition partition, Message message) {
                if (lastId == null) {
                    return STOP_BEFORE;
                }
                return hitMessageId(message, lastId) ? STOP_AFTER : DONT_STOP;
            }
        };
    }

    static StopCondition never() {
        return (partition, message) -> DONT_STOP;
    }
}

abstract class LastStopCondition implements StopCondition {
    MessageId lastId;

    @Override
    public void init(AbstractPartition partition, Consumer consumer) throws PulsarClientException {
        if (lastId == null) {
            lastId = consumer.getLastMessageId();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy