📄 expiringstack.java
字号:
/* * 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.mina.util;import java.io.Serializable;import java.util.Arrays;/** * A unbounded stack with expiration. * * @author The Apache Directory Project (mina-dev@directory.apache.org) * @version $Rev: 555855 $, $Date: 2007-07-13 12:19:00 +0900 (금, 13 7월 2007) $ */public class ExpiringStack implements Serializable { private static final long serialVersionUID = 3546919169401434168L; private static final int DEFAULT_CAPACITY = 4; private Object[] items; private long[] timestamps; private int size = 0; /** * Construct a new, empty stack. */ public ExpiringStack() { items = new Object[DEFAULT_CAPACITY]; timestamps = new long[DEFAULT_CAPACITY]; } /** * Clears this stack. */ public void clear() { Arrays.fill(items, null); size = 0; } /** * Pops from this stack. * * @return <code>null</code>, if this stack is empty or the element is * really <code>null</code>. */ public Object pop() { if (size == 0) { return null; } int pos = size - 1; Object ret = items[pos]; items[pos] = null; size--; return ret; } /** * Push into this stack. */ public void push(Object obj) { if (size == items.length) { // expand queue final int oldLen = items.length; Object[] tmpItems = new Object[oldLen * 2]; System.arraycopy(items, 0, tmpItems, 0, size); long[] tmpTimestamps = new long[oldLen * 2]; System.arraycopy(timestamps, 0, tmpTimestamps, 0, size); items = tmpItems; timestamps = tmpTimestamps; } items[size] = obj; timestamps[size] = System.currentTimeMillis(); size++; } public void remove(Object o) { for (int i = size - 1; i >= 0; i--) { if (items[i] == o) { System.arraycopy(items, i + 1, items, i, size - i - 1); System .arraycopy(timestamps, i + 1, timestamps, i, size - i - 1); items[size - 1] = null; size--; break; } } } public void expireBefore(long time) { int i; for (i = 0; i < size; i++) { if (timestamps[i] >= time) { break; } } if (i > 0) { size -= i; System.arraycopy(items, i, items, 0, size); System.arraycopy(timestamps, i, timestamps, 0, size); Arrays.fill(items, size, items.length, null); } } /** * Returns the first element of the stack. * * @return <code>null</code>, if the stack is empty, or the element is * really <code>null</code>. */ public Object first() { if (size == 0) { return null; } return items[size - 1]; } public Object last() { if (size == 0) { return null; } return items[0]; } /** * Returns <code>true</code> if the stack is empty. */ public boolean isEmpty() { return (size == 0); } /** * Returns the number of elements in the stack. */ public int size() { return size; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -