|
|
|
|
|
*/ |
|
/* |
|
* 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 com.sun.org.apache.xml.internal.utils; |
|
|
|
import com.sun.org.apache.xalan.internal.utils.ObjectFactory; |
|
import com.sun.org.apache.xml.internal.res.XMLErrorResources; |
|
import com.sun.org.apache.xml.internal.res.XMLMessages; |
|
import java.lang.reflect.InvocationTargetException; |
|
import java.util.ArrayList; |
|
import java.util.List; |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public class ObjectPool implements java.io.Serializable |
|
{ |
|
static final long serialVersionUID = -8519013691660936643L; |
|
|
|
|
|
* @serial */ |
|
private final Class<?> objectType; |
|
|
|
|
|
* @serial */ |
|
private final List<Object> freeStack; |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public ObjectPool(Class<?> type) |
|
{ |
|
objectType = type; |
|
freeStack = new ArrayList<>(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public ObjectPool(String className) |
|
{ |
|
try |
|
{ |
|
objectType = ObjectFactory.findProviderClass(className, true); |
|
} |
|
catch(ClassNotFoundException cnfe) |
|
{ |
|
throw new WrappedRuntimeException(cnfe); |
|
} |
|
freeStack = new ArrayList<>(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public ObjectPool(Class<?> type, int size) |
|
{ |
|
objectType = type; |
|
freeStack = new ArrayList<>(size); |
|
} |
|
|
|
|
|
|
|
|
|
*/ |
|
public ObjectPool() |
|
{ |
|
objectType = null; |
|
freeStack = new ArrayList<>(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public synchronized Object getInstanceIfFree() |
|
{ |
|
|
|
|
|
if (!freeStack.isEmpty()) |
|
{ |
|
|
|
|
|
Object result = freeStack.remove(freeStack.size() - 1); |
|
return result; |
|
} |
|
|
|
return null; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public synchronized Object getInstance() |
|
{ |
|
|
|
|
|
if (freeStack.isEmpty()) |
|
{ |
|
|
|
|
|
try |
|
{ |
|
return objectType.getConstructor().newInstance(); |
|
} |
|
catch (InstantiationException | IllegalAccessException | SecurityException | |
|
IllegalArgumentException | InvocationTargetException | NoSuchMethodException ex){} |
|
|
|
|
|
throw new RuntimeException(XMLMessages.createXMLMessage( |
|
XMLErrorResources.ER_EXCEPTION_CREATING_POOL, null)); |
|
} |
|
else |
|
{ |
|
|
|
|
|
Object result = freeStack.remove(freeStack.size() - 1); |
|
return result; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
public synchronized void freeInstance(Object obj) |
|
{ |
|
|
|
// Make sure the object is of the correct type. |
|
// Remove safety. -sb |
|
// if (objectType.isInstance(obj)) |
|
|
|
freeStack.add(obj); |
|
// } |
|
// else |
|
// { |
|
// throw new IllegalArgumentException("argument type invalid for pool"); |
|
// } |
|
} |
|
} |