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

com.espertech.esper.view.window.IStreamRelativeAccess Maven / Gradle / Ivy

/*
 ***************************************************************************************
 *  Copyright (C) 2006 EsperTech, Inc. All rights reserved.                            *
 *  http://www.espertech.com/esper                                                     *
 *  http://www.espertech.com                                                           *
 *  ---------------------------------------------------------------------------------- *
 *  The software in this package is published under the terms of the GPL license       *
 *  a copy of which has been included with this distribution in the license.txt file.  *
 ***************************************************************************************
 */
package com.espertech.esper.view.window;

import com.espertech.esper.client.EventBean;
import com.espertech.esper.collection.ReversedArrayEventIterator;
import com.espertech.esper.collection.ViewUpdatedCollection;

import java.util.*;

/**
 * Provides relative access to insert stream events for certain window.
 */
public class IStreamRelativeAccess implements RelativeAccessByEventNIndex, ViewUpdatedCollection {
    private final Map indexPerEvent;
    private EventBean[] lastNewData;
    private final IStreamRelativeAccessUpdateObserver updateObserver;

    /**
     * Ctor.
     *
     * @param updateObserver is invoked when updates are received
     */
    public IStreamRelativeAccess(IStreamRelativeAccessUpdateObserver updateObserver) {
        this.updateObserver = updateObserver;
        indexPerEvent = new HashMap();
    }

    public void update(EventBean[] newData, EventBean[] oldData) {
        updateObserver.updated(this, newData);
        indexPerEvent.clear();
        lastNewData = newData;

        if (newData != null) {
            for (int i = 0; i < newData.length; i++) {
                indexPerEvent.put(newData[i], i);
            }
        }
    }

    public EventBean getRelativeToEvent(EventBean theEvent, int prevIndex) {
        if (lastNewData == null) {
            return null;
        }

        if (prevIndex == 0) {
            return theEvent;
        }

        Integer indexIncoming = indexPerEvent.get(theEvent);
        if (indexIncoming == null) {
            return null;
        }

        if (prevIndex > indexIncoming) {
            return null;
        }

        int relativeIndex = indexIncoming - prevIndex;
        if ((relativeIndex < lastNewData.length) && (relativeIndex >= 0)) {
            return lastNewData[relativeIndex];
        }
        return null;
    }

    public EventBean getRelativeToEnd(int prevIndex) {
        if (lastNewData == null) {
            return null;
        }

        if (prevIndex < lastNewData.length && prevIndex >= 0) {
            return lastNewData[prevIndex];
        }
        return null;
    }

    public Iterator getWindowToEvent() {
        return new ReversedArrayEventIterator(lastNewData);
    }

    public Collection getWindowToEventCollReadOnly() {
        return Arrays.asList(lastNewData);
    }

    public int getWindowToEventCount() {
        if (lastNewData == null) {
            return 0;
        }
        return lastNewData.length;
    }

    /**
     * For indicating that the collection has been updated.
     */
    public interface IStreamRelativeAccessUpdateObserver {
        /**
         * Callback to indicate an update.
         *
         * @param iStreamRelativeAccess is the collection
         * @param newData               is the new data available
         */
        public void updated(RelativeAccessByEventNIndex iStreamRelativeAccess, EventBean[] newData);
    }

    public void destroy() {
        // No action required
    }

    public int getNumEventsInsertBuf() {
        return indexPerEvent.size();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy