com.liferay.portal.util.MaintenanceUtil Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present 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.util;
import com.liferay.petra.string.StringBundler;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.servlet.PortalSessionContext;
import com.liferay.portal.kernel.util.HtmlUtil;
import com.liferay.portal.kernel.util.Time;
import java.util.Collection;
import javax.servlet.http.HttpSession;
/**
* @author Alexander Chow
*/
public class MaintenanceUtil {
public static void appendStatus(String status) {
if (_log.isDebugEnabled()) {
_log.debug(status);
}
_status = _status.concat(
StringBundler.concat(
Time.getRFC822(), StringPool.SPACE, HtmlUtil.escape(status),
"
"));
}
public static void cancel() {
HttpSession httpSession = PortalSessionContext.get(_sessionId);
if (httpSession != null) {
httpSession.invalidate();
}
else {
if (_log.isWarnEnabled()) {
_log.warn("Session " + _sessionId + " is null");
}
}
_maintaining = false;
}
public static String getClassName() {
return _className;
}
public static String getSessionId() {
return _sessionId;
}
public static String getStatus() {
return _status;
}
public static boolean isMaintaining() {
return _maintaining;
}
public static void maintain(String sessionId, String className) {
_sessionId = sessionId;
_className = className;
_maintaining = true;
_status = StringPool.BLANK;
appendStatus("Executing " + _className);
Collection httpSessions = PortalSessionContext.values();
for (HttpSession httpSession : httpSessions) {
if (!sessionId.equals(httpSession.getId())) {
try {
httpSession.invalidate();
}
catch (IllegalStateException illegalStateException) {
if (_log.isDebugEnabled()) {
_log.debug(illegalStateException);
}
}
}
}
}
private MaintenanceUtil() {
}
private static final Log _log = LogFactoryUtil.getLog(
MaintenanceUtil.class);
private static volatile String _className;
private static volatile boolean _maintaining;
private static volatile String _sessionId;
private static volatile String _status = StringPool.BLANK;
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy