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

org.apache.camel.component.feed.FeedEntryPollingConsumer Maven / Gradle / Ivy

There is a newer version: 4.8.1
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.camel.component.feed;

import java.util.List;

import org.apache.camel.Exchange;
import org.apache.camel.Processor;

/**
 * Consumer to poll feeds and return each entry from the feed step by step.
 */
public abstract class FeedEntryPollingConsumer extends FeedPollingConsumer {
    protected int entryIndex;
    @SuppressWarnings("rawtypes")
    protected List list;
    protected boolean throttleEntries;
    protected Object feed;

    protected FeedEntryPollingConsumer(FeedEndpoint endpoint, Processor processor, boolean throttleEntries) {
        super(endpoint, processor);
        this.throttleEntries = throttleEntries;
    }

    @Override
    public int poll() throws Exception {
        if (feed == null) {
            // populate new feed
            feed = createFeed();
            populateList(feed);
        }

        int polledMessages = 0;
        while (hasNextEntry()) {
            E entry = list.get(entryIndex--);
            polledMessages++;

            Exchange exchange = endpoint.createExchange(feed, entry);
            getProcessor().process(exchange);
            if (this.throttleEntries) {
                // return and wait for the next poll to continue from last time (this consumer is stateful)
                return polledMessages;
            }
        }

        // reset feed and list to be able to poll again
        feed = null;
        resetList();

        return polledMessages;
    }

    protected abstract void resetList();

    protected abstract void populateList(Object feed) throws Exception;

    private boolean hasNextEntry() {
        return entryIndex >= 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy