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

org.mitre.caasd.commons.InstantIterator Maven / Gradle / Ivy

The newest version!
/*
 *    Copyright 2022 The MITRE Corporation
 *
 *    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.mitre.caasd.commons;

import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;

import java.time.Duration;
import java.time.Instant;
import java.util.Iterator;
import java.util.NoSuchElementException;

/**
 * An InstantIterator iterates over a steadily increasing sequence of Instants that are all within a
 * fixed TimeWindow.
 */
public class InstantIterator implements Iterator {

    private final TimeWindow window;

    private final Duration timeStep;

    private Instant next;

    /**
     * Create an InstantIterator that traverses time values in between these two times.
     *
     * @param startTime The first instant in the iteration
     * @param endTime   The last Instant in the iteration
     * @param timeStep  The size of the steps between the jumps (must be a positive Duration)
     */
    public InstantIterator(Instant startTime, Instant endTime, Duration timeStep) {
        checkNotNull(startTime, "The start time cannot be null");
        checkNotNull(endTime, "The end time cannot be null");
        checkNotNull(timeStep, "The timeStep cannot be null");
        checkArgument(!timeStep.isNegative(), "The timeStep cannot be negative");
        checkArgument(!timeStep.isZero(), "The timeStep cannot be zero");
        this.window = new TimeWindow(startTime, endTime);
        this.timeStep = timeStep;
        this.next = window.start();
    }

    public InstantIterator(TimeWindow window, Duration timeStep) {
        this(window.start(), window.end(), timeStep);
    }

    @Override
    public boolean hasNext() {
        return next != null;
    }

    @Override
    public Instant next() {
        if (hasNext()) {
            Instant returnMe = next;
            updateNext();
            return returnMe;
        } else {
            throw new NoSuchElementException();
        }
    }

    private void updateNext() {

        if (next.equals(window.end())) {
            next = null;
        } else {
            Instant possible = next.plus(timeStep);

            next = (window.contains(possible)) ? possible : window.end();
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy