com.liferay.portal.kernel.util.UnsyncPrintWriterPool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* 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.
*/
package com.liferay.portal.kernel.util;
import com.liferay.portal.kernel.io.OutputStreamWriter;
import com.liferay.portal.kernel.io.unsync.UnsyncPrintWriter;
import com.liferay.portal.kernel.memory.PoolAction;
import com.liferay.portal.kernel.memory.SoftReferencePool;
import java.io.OutputStream;
import java.io.Writer;
import java.util.ArrayList;
import java.util.List;
/**
* @author Shuyang Zhou
*/
public class UnsyncPrintWriterPool {
public static UnsyncPrintWriter borrow(OutputStream outputStream) {
return borrow(new OutputStreamWriter(outputStream));
}
public static UnsyncPrintWriter borrow(
OutputStream outputStream, String charsetName) {
return borrow(new OutputStreamWriter(outputStream, charsetName));
}
public static UnsyncPrintWriter borrow(Writer writer) {
if (!isEnabled()) {
return new UnsyncPrintWriter(writer);
}
UnsyncPrintWriter unsyncPrintWriter =
_unsyncPrintWriterSoftReferencePool.borrowObject(writer);
List unsyncPrintWriters =
_borrowedUnsyncPrintWritersThreadLocal.get();
unsyncPrintWriters.add(unsyncPrintWriter);
return unsyncPrintWriter;
}
public static void cleanUp() {
List unsyncPrintWriters =
_borrowedUnsyncPrintWritersThreadLocal.get();
for (UnsyncPrintWriter unsyncPrintWriter : unsyncPrintWriters) {
_unsyncPrintWriterSoftReferencePool.returnObject(unsyncPrintWriter);
}
unsyncPrintWriters.clear();
}
public static boolean isEnabled() {
return _enabledThreadLocal.get();
}
public static void setEnabled(boolean enabled) {
_enabledThreadLocal.set(enabled);
}
private static ThreadLocal>
_borrowedUnsyncPrintWritersThreadLocal =
new AutoResetThreadLocal>(
UnsyncPrintWriterPool.class.getName() +
"._borrowedUnsyncPrintWritersThreadLocal",
new ArrayList());
private static ThreadLocal _enabledThreadLocal =
new AutoResetThreadLocal(
UnsyncPrintWriterPool.class.getName() + "._enabledThreadLocal",
false);
private static SoftReferencePool
_unsyncPrintWriterSoftReferencePool =
new SoftReferencePool(
new UnsyncPrintWriterPoolAction(), 8192);
private static class UnsyncPrintWriterPoolAction
implements PoolAction {
@Override
public UnsyncPrintWriter onBorrow(
UnsyncPrintWriter unsyncPrintWriter, Writer writer) {
unsyncPrintWriter.reset(writer);
return unsyncPrintWriter;
}
@Override
public UnsyncPrintWriter onCreate(Writer writer) {
return new UnsyncPrintWriter(writer);
}
@Override
public void onReturn(UnsyncPrintWriter unsyncPrintWriter) {
unsyncPrintWriter.reset(null);
}
}
}