/* * Copyright (C) 2011 The Guava Authors * * 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 com.google.common.cache; import java.util.concurrent.ConcurrentLinkedQueue; import java.util.concurrent.atomic.AtomicInteger; /** * Utility {@link RemovalListener} implementations intended for use in testing. * * @author mike nonemacher */ class TestingRemovalListeners { /** * Returns a new no-op {@code RemovalListener}. */ static NullRemovalListener nullRemovalListener() { return new NullRemovalListener(); } /** * Type-inferring factory method for creating a {@link QueuingRemovalListener}. */ static QueuingRemovalListener queuingRemovalListener() { return new QueuingRemovalListener(); } /** * Type-inferring factory method for creating a {@link CountingRemovalListener}. */ static CountingRemovalListener countingRemovalListener() { return new CountingRemovalListener(); } /** * {@link RemovalListener} that adds all {@link RemovalNotification} objects to a queue. */ static class QueuingRemovalListener extends ConcurrentLinkedQueue> implements RemovalListener { @Override public void onRemoval(RemovalNotification notification) { add(notification); } } /** * {@link RemovalListener} that counts each {@link RemovalNotification} it receives, and provides * access to the most-recently received one. */ static class CountingRemovalListener implements RemovalListener { private final AtomicInteger count = new AtomicInteger(); private volatile RemovalNotification lastNotification; @Override public void onRemoval(RemovalNotification notification) { count.incrementAndGet(); lastNotification = notification; } public int getCount() { return count.get(); } public K getLastEvictedKey() { return lastNotification.getKey(); } public V getLastEvictedValue() { return lastNotification.getValue(); } public RemovalNotification getLastNotification() { return lastNotification; } } /** * No-op {@link RemovalListener}. */ static class NullRemovalListener implements RemovalListener { @Override public void onRemoval(RemovalNotification notification) {} } }