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

src.gov.nasa.worldwind.util.TimedExpirySupport Maven / Gradle / Ivy

Go to download

World Wind is a collection of components that interactively display 3D geographic information within Java applications or applets.

There is a newer version: 2.0.0-986
Show newest version
/*
 * Copyright (C) 2012 United States Government as represented by the Administrator of the
 * National Aeronautics and Space Administration.
 * All Rights Reserved.
 */

package gov.nasa.worldwind.util;

import gov.nasa.worldwind.render.DrawContext;

import java.util.Random;

/**
 * Handles expiration after some interval of time has passed. Expiration time is computed as a random value between a
 * specified minimum and a specified maximum delay interval.
 *
 * @version $Id: TimedExpirySupport.java 1171 2013-02-11 21:45:02Z dcollins $
 */
public class TimedExpirySupport
{
    protected boolean expired = true;
    protected long expiryTime = -1L;
    protected long minExpiryTime;
    protected long maxExpiryTime;
    protected static Random rand = new Random();

    /** Constructs an instance with minimum expiry interval of 1 second and a max of 2 seconds. */
    public TimedExpirySupport()
    {
        this.minExpiryTime = 2000;
        this.maxExpiryTime = 3000;
    }

    /**
     * Constructs an instance with specified minimum and maximum expiry intervals. An interval is set to 0 if its
     * specified value is less than 0.
     *
     * @param minExpiryTime the minimum interval allowed to pass before expiration, in milliseconds.
     * @param maxExpiryTime the maximum interval allowed to pass before expiration, in milliseconds.
     */
    public TimedExpirySupport(long minExpiryTime, long maxExpiryTime)
    {
        this.minExpiryTime = Math.max(minExpiryTime, 0);
        this.maxExpiryTime = Math.max(maxExpiryTime, 0);
    }

    /**
     * Set the expiration state of this timer.
     *
     * @param expired true to indicate expired, false to indicate not expired.
     */
    public void setExpired(boolean expired)
    {
        this.expired = expired;
    }

    /**
     * Indicates the current expiration time, which is a random value between the specified minimum and maximum.
     *
     * @return the current expiration time, in milliseconds.
     */
    public long getExpiryTime()
    {
        return this.expiryTime;
    }

    /**
     * Specifies the minimum and maximum expiration intervals. An interval is set to 0 if its specified value is less
     * than 0.
     *
     * @param minExpiryTime the minimum interval allowed to pass before expiration, in milliseconds.
     * @param maxExpiryTime the maximum interval allowed to pass before expiration, in milliseconds.
     */
    public void setExpiryTime(long minExpiryTime, long maxExpiryTime)
    {
        this.minExpiryTime = Math.max(minExpiryTime, 0);
        this.maxExpiryTime = Math.max(maxExpiryTime, 0);
    }

    /**
     * Indicates this timer's minimum expiry interval.
     *
     * @return this timer's minimum expiry interval, in milliseconds.
     */
    public long getMinExpiryTime()
    {
        return this.minExpiryTime;
    }

    /**
     * Indicates this timer's maximum expiry interval.
     *
     * @return this timer's maximum expiry interval, in milliseconds.
     */
    public long getMaxExpiryTime()
    {
        return this.maxExpiryTime;
    }

    /**
     * Indicates whether this timer has expired.
     *
     * @param dc the current draw context.
     *
     * @return true if this timer has expired relative to the frame time, otherwise false.
     *
     * @throws IllegalArgumentException if the draw context is null.
     */
    public boolean isExpired(DrawContext dc)
    {
        if (this.expired)
            return true;

        long now = dc != null ? dc.getFrameTimeStamp() : System.currentTimeMillis();
        if (now >= this.expiryTime)
            return true;

        return false;
    }

    /**
     * Indicates whether this timer has expired.
     *
     * @param now the time to relate this timer's expiration time to. The timer is considered expired if this timer's
     *            expiry time is less than this value.
     *
     * @return true if this timer has expired relative to system time, otherwise false.
     */
    public boolean isExpired(long now)
    {
        return this.expired || this.expiryTime < now;
    }

    /**
     * Marks this timer as not expired and restarts the timer.
     *
     * @param dc the current draw context.
     *
     * @throws IllegalArgumentException if the draw context is null.
     */
    public void restart(DrawContext dc)
    {
        if (this.maxExpiryTime == 0 || this.maxExpiryTime < this.minExpiryTime)
        {
            this.expired = true;
        }
        else
        {
            long now = dc != null ? dc.getFrameTimeStamp() : System.currentTimeMillis();
            this.expiryTime = now + this.minExpiryTime
                + rand.nextInt((int) (this.maxExpiryTime - this.minExpiryTime));
            this.expired = false;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy