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

com.samskivert.util.RecentList Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
//
// $Id$
//
// samskivert library - useful routines for java programs
// Copyright (C) 2001-2011 Michael Bayne, et al.
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

package com.samskivert.util;

import java.util.Arrays;

/**
 * An array list that maintains a list of the N most recent entries added
 * to it.
 */
public class RecentList
{
    /**
     * Constructs a recent list that keeps the specified number of most
     * recently added objects.
     */
    public RecentList (int keepCount)
    {
        _list = new Object[keepCount];
    }

    /**
     * Returns the number of elements in this list.
     */
    public int size ()
    {
        return Math.min(_lastPos, _list.length);
    }

    /**
     * Clears the list.
     */
    public void clear ()
    {
        Arrays.fill(_list, null);
        _lastPos = 0;
    }

    /**
     * Adds the specified value to the list.
     */
    public void add (Object value)
    {
        _list[_lastPos++ % _list.length] = value;
        // keep last pos cycling from keepCount to 2*keepCount-1
        if (_lastPos == 2*_list.length) {
            _lastPos = _list.length;
        }
    }

    /**
     * Returns true if the supplied value is equal (using {@link
     * Object#equals}) to any value in the list.
     */
    public boolean contains (Object value)
    {
        for (int ii = 0, nn = size(); ii < nn; ii++) {
            if (ObjectUtil.equals(value, _list[ii])) {
                return true;
            }
        }
        return false;
    }

    /**
     * Gets the Nth most recently added value from the list.
     * null is returned if the list does not contain at least
     * index+1 entries.
     */
    public Object get (int index)
    {
        return _list[(_lastPos-index-1+_list.length)%_list.length];
    }

    public static void main (String[] args)
    {
        RecentList list = new RecentList(5);
        for (int ii = 0; ii < 10; ii++) {
            list.add(ii);
        }
        System.out.println("Contains 3 " + list.contains(3));
        System.out.println("Contains 7 " + list.contains(7));
        for (int ii = 0; ii < list.size(); ii++) {
            System.out.println(ii + " => " + list.get(ii));
        }
    }

    protected Object[] _list;
    protected int _lastPos;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy