| /* |
| * 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 |
| * |
| * https://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.commons.pool3.proxy; |
| |
| import java.util.List; |
| import java.util.NoSuchElementException; |
| |
| import org.apache.commons.pool3.KeyedObjectPool; |
| import org.apache.commons.pool3.UsageTracking; |
| |
| /** |
| * Create a new keyed object pool where the pooled objects are wrapped in |
| * proxies allowing better control of pooled objects and in particular the |
| * prevention of the continued use of an object by a client after that client |
| * returns the object to the pool. |
| * |
| * @param <K> type of the key |
| * @param <V> type of the pooled object |
| * @param <E> type of exception thrown by this pool |
| * @since 2.0 |
| */ |
| public class ProxiedKeyedObjectPool<K, V, E extends Exception> implements KeyedObjectPool<K, V, E> { |
| |
| private final KeyedObjectPool<K, V, E> pool; |
| private final ProxySource<V> proxySource; |
| |
| /** |
| * Constructs a new proxied object pool. |
| * |
| * @param pool The object pool to wrap |
| * @param proxySource The source of the proxy objects |
| */ |
| public ProxiedKeyedObjectPool(final KeyedObjectPool<K, V, E> pool, |
| final ProxySource<V> proxySource) { |
| this.pool = pool; |
| this.proxySource = proxySource; |
| } |
| |
| @Override |
| public void addObject(final K key) throws E, IllegalStateException, |
| UnsupportedOperationException { |
| pool.addObject(key); |
| } |
| |
| @SuppressWarnings("unchecked") |
| @Override |
| public V borrowObject(final K key) throws E, NoSuchElementException, |
| IllegalStateException { |
| UsageTracking<V> usageTracking = null; |
| if (pool instanceof UsageTracking) { |
| usageTracking = (UsageTracking<V>) pool; |
| } |
| return proxySource.createProxy(pool.borrowObject(key), usageTracking); |
| } |
| |
| @Override |
| public void clear() throws E, UnsupportedOperationException { |
| pool.clear(); |
| } |
| |
| @Override |
| public void clear(final K key) throws E, UnsupportedOperationException { |
| pool.clear(key); |
| } |
| |
| @Override |
| public void close() { |
| pool.close(); |
| } |
| |
| @Override |
| public List<K> getKeys() { |
| return pool.getKeys(); |
| } |
| |
| @Override |
| public int getNumActive() { |
| return pool.getNumActive(); |
| } |
| |
| @Override |
| public int getNumActive(final K key) { |
| return pool.getNumActive(key); |
| } |
| |
| @Override |
| public int getNumIdle() { |
| return pool.getNumIdle(); |
| } |
| |
| @Override |
| public int getNumIdle(final K key) { |
| return pool.getNumIdle(key); |
| } |
| |
| @Override |
| public void invalidateObject(final K key, final V proxy) throws E { |
| pool.invalidateObject(key, proxySource.resolveProxy(proxy)); |
| } |
| |
| @Override |
| public void returnObject(final K key, final V proxy) throws E { |
| pool.returnObject(key, proxySource.resolveProxy(proxy)); |
| } |
| |
| /** |
| * @since 2.4.3 |
| */ |
| @Override |
| public String toString() { |
| final StringBuilder builder = new StringBuilder(); |
| builder.append("ProxiedKeyedObjectPool [pool="); |
| builder.append(pool); |
| builder.append(", proxySource="); |
| builder.append(proxySource); |
| builder.append("]"); |
| return builder.toString(); |
| } |
| } |