com.sun.enterprise.web.BasePersistenceStrategyBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project for IBM JDK
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2016 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
// Portions Copyright [2016] [Payara Foundation and/or its affiliates]
package com.sun.enterprise.web;
import org.apache.catalina.Context;
import org.apache.catalina.core.StandardContext;
import org.glassfish.web.LogFacade;
import org.glassfish.web.config.serverbeans.SessionProperties;
import org.glassfish.web.deployment.runtime.ManagerProperties;
import org.glassfish.web.deployment.runtime.SessionManager;
import org.glassfish.web.deployment.runtime.StoreProperties;
import org.glassfish.web.deployment.runtime.WebProperty;
import java.io.File;
import java.util.ArrayList;
import java.util.ResourceBundle;
import java.util.StringTokenizer;
import java.util.logging.Level;
import java.util.logging.Logger;
public abstract class BasePersistenceStrategyBuilder
implements PersistenceStrategyBuilder {
public static final Logger _logger = LogFacade.getLogger();
public static final ResourceBundle _rb = _logger.getResourceBundle();
protected String directory = null;
// START GLASSFISH-15745
//protected static final String DEFAULT_SESSION_FILENAME = "SESSIONS.ser";
protected static final String DEFAULT_SESSION_FILENAME = null;
// END GLASSFISH-15745
protected String sessionFilename = DEFAULT_SESSION_FILENAME;
// START CR 6275709
protected String sessionIdGeneratorClassname = null;
// END CR 6275709
protected String _persistenceFrequency = null;
protected String _persistenceScope = null;
protected String _passedInPersistenceType = null;
protected int maxSessions = -1;
protected static final int DEFAULT_REAP_INTERVAL = 60; // 1 minute
protected int reapInterval = DEFAULT_REAP_INTERVAL;
protected int storeReapInterval = DEFAULT_REAP_INTERVAL;
protected static final int DEFAULT_MAX_IDLE_BACKUP = -1; // never save
//protected int maxIdleBackup = DEFAULT_MAX_IDLE_BACKUP;
protected static final int DEFAULT_SESSION_TIMEOUT = 1800; // 30 minute
protected int sessionMaxInactiveInterval = DEFAULT_SESSION_TIMEOUT;
protected String persistentCookieName = "GLASSFISHCOOKIE";
protected boolean relaxCacheVersionSemantics = true;
// Special constant for Java Server Faces
protected static final String JSF_HA_ENABLED = "com.sun.appserver.enableHighAvailability";
public void initializePersistenceStrategy(
Context ctx,
SessionManager smBean,
ServerConfigLookup serverConfigLookup) {
/*
* This method sets default values.
* It may be extended in builder subclasses which will have their
* own inst vars for additional params.
*/
setDefaultParams(ctx, smBean);
/*
* This method reads server instance-level parameter values from
* domain.xml.
* Any values found here will over-ride defaults.
* This method may be extended in builder subclasses which will have
* their own inst vars for additional params.
*/
readInstanceLevelParams(serverConfigLookup);
/*
* This method reads web app parameter values from sun-web.xml.
* Any values found here will over-ride defaults & instance-level
* values.
* This method may be extended in builder subclasses which will have
* their own inst vars for additional params.
*/
readWebAppParams(ctx, smBean);
ctx.setBackgroundProcessorDelay(reapInterval);
StandardContext sctx = (StandardContext)ctx;
sctx.restrictedSetPipeline(new WebPipeline(sctx));
}
public void setDefaultParams(Context ctx, SessionManager smBean) {
reapInterval = DEFAULT_REAP_INTERVAL;
maxSessions = -1;
// Default settings for persistence-type = 'memory'
sessionFilename = DEFAULT_SESSION_FILENAME;
// Default settings for persistence-type = 'file'
storeReapInterval = DEFAULT_REAP_INTERVAL;
directory = ((StandardContext) ctx).getWorkDir();
}
public void readInstanceLevelParams(ServerConfigLookup serverConfigLookup) {
org.glassfish.web.config.serverbeans.SessionManager smBean =
serverConfigLookup.getInstanceSessionManager();
if (smBean != null) {
// The persistence-type controls what properties of the
// session manager can be configured
org.glassfish.web.config.serverbeans.ManagerProperties mgrBean =
smBean.getManagerProperties();
if (mgrBean != null) {
// manager reap-interval-in-seconds
String reapIntervalInSecondsString = mgrBean.getReapIntervalInSeconds();
if (reapIntervalInSecondsString != null) {
try {
reapInterval = Integer.parseInt(reapIntervalInSecondsString);
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.MANAGER_REAP_INTERVAL_SET, reapInterval);
}
} catch (NumberFormatException e) {
// XXX need error message
}
} else {
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.NO_INSTANCE_LEVEL_VALUE_SET_MGR_REAP_INTERVAL);
}
}
//max-sessions
String maxSessionsString = mgrBean.getMaxSessions();
if (maxSessionsString != null) {
try {
maxSessions = Integer.parseInt(maxSessionsString);
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.MAX_SESSIONS_SET, maxSessions);
}
} catch (NumberFormatException e) {
// XXX need error message
}
} else {
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.NO_INSTANCE_LEVEL_VALUE_SET_MAX_SESSIONS);
}
}
//session-file-name
String sessionFilenameString = mgrBean.getSessionFileName();
if (sessionFilenameString != null) {
sessionFilename = sessionFilenameString;
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.SESSION_FILENAME_SET, sessionFilename);
}
}
// START CR 6275709
sessionIdGeneratorClassname =
mgrBean.getSessionIdGeneratorClassname();
if (sessionIdGeneratorClassname != null
&& _logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.SESSION_ID_GENERATOR_CLASSNAME_SET, sessionIdGeneratorClassname);
}
// END CR 6275709
/*
// Now do properties under element
List props = mgrBean.getProperty();
if (props != null) {
for (Property prop : props) {
String name = prop.getName();
String value = prop.getValue();
// maxIdleBackupSeconds
if (name.equalsIgnoreCase("maxIdleBackupSeconds")) {
try {
maxIdleBackup = Integer.parseInt(value);
} catch (NumberFormatException e) {
// XXX need error message
}
}
}
}*/
}
org.glassfish.web.config.serverbeans.StoreProperties storeBean =
smBean.getStoreProperties();
if (storeBean != null) {
// Store reap-interval-in-seconds
String reapIntervalInSecondsString = storeBean.getReapIntervalInSeconds();
if (reapIntervalInSecondsString != null) {
try {
storeReapInterval = Integer.parseInt(reapIntervalInSecondsString);
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.STORE_REAP_INTERVAL_SET, storeReapInterval);
}
} catch (NumberFormatException e) {
// XXX need error message
}
}
// Directory
String directoryString = storeBean.getDirectory();
if (directoryString != null) {
directory = directoryString;
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.DIRECTORY_SET, directoryString);
}
}
}
}
SessionProperties spBean =
serverConfigLookup.getInstanceSessionProperties();
if (spBean != null) {
// session timeout-in-seconds
String timeoutSecondsString = spBean.getTimeoutInSeconds();
if (timeoutSecondsString != null) {
try {
sessionMaxInactiveInterval = Integer.parseInt(timeoutSecondsString);
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.SESSION_MAX_INACTIVE_INTERVAL_SET, sessionMaxInactiveInterval);
}
} catch (NumberFormatException e) {
// XXX need error message
}
} else {
if (_logger.isLoggable(Level.FINEST)) {
_logger.log(Level.FINEST, LogFacade.NO_INSTANCE_LEVEL_VALUE_SET_SESSION_MAX_INACTIVE_INTERVAL);
}
}
}
}
public void readWebAppParams(Context ctx, SessionManager smBean ) {
if (smBean != null) {
// The persistence-type controls what properties of the
// session manager can be configured
ManagerProperties mgrBean = smBean.getManagerProperties();
if ((mgrBean != null) && (mgrBean.sizeWebProperty() > 0)) {
for (WebProperty prop : mgrBean.getWebProperty()) {
String name = prop.getAttributeValue(WebProperty.NAME);
String value = prop.getAttributeValue(WebProperty.VALUE);
if (name.equalsIgnoreCase("reapIntervalSeconds")) {
try {
reapInterval = Integer.parseInt(value);
} catch (NumberFormatException e) {
// XXX need error message
}
} else if (name.equalsIgnoreCase("maxSessions")) {
try {
maxSessions = Integer.parseInt(value);
} catch (NumberFormatException e) {
// XXX need error message
}
} /*else if (name.equalsIgnoreCase("maxIdleBackupSeconds")) {
try {
maxIdleBackup = Integer.parseInt(value);
} catch (NumberFormatException e) {
// XXX need error message
}
} */else if (name.equalsIgnoreCase("relaxCacheVersionSemantics")) {
relaxCacheVersionSemantics = Boolean.parseBoolean(value);
} else if (name.equalsIgnoreCase("sessionFilename")) {
sessionFilename = value;
} else if (name.equalsIgnoreCase("persistenceFrequency")) {
_persistenceFrequency = value;
} else {
if (_logger.isLoggable(Level.INFO)) {
Object[] params = { name };
_logger.log(Level.INFO, LogFacade.PROPERTY_NOT_YET_SUPPORTED, params);
}
}
}
}
StoreProperties storeBean = smBean.getStoreProperties();
if ((storeBean != null) && (storeBean.sizeWebProperty() > 0)) {
for (WebProperty prop : storeBean.getWebProperty()) {
String name = prop.getAttributeValue(WebProperty.NAME);
String value = prop.getAttributeValue(WebProperty.VALUE);
if (name.equalsIgnoreCase("reapIntervalSeconds")) {
try {
storeReapInterval = Integer.parseInt(value);
} catch (NumberFormatException e) {
// XXX need error message
}
} else if (name.equalsIgnoreCase("directory")) {
directory = value;
} else if (name.equalsIgnoreCase("persistenceScope")) {
_persistenceScope = value;
} else if (name.equalsIgnoreCase("cookieName")) {
persistentCookieName = value;
} else {
if (_logger.isLoggable(Level.INFO)) {
Object[] params = { name };
_logger.log(Level.INFO, LogFacade.PROPERTY_NOT_YET_SUPPORTED, params);
}
}
}
}
}
}
protected String prependContextPathTo(String str, Context ctx) {
if (str == null) {
return str;
}
String filePart = getFilePartOf(str);
if (filePart == null || filePart.equals("")) {
return null;
}
String strippedContextPath = stripNonAlphaNumericsExceptUnderscore(ctx.getPath());
String modifiedFilePart = null;
if (strippedContextPath != null && !strippedContextPath.equals("")) {
modifiedFilePart = strippedContextPath + "_" + filePart;
} else {
modifiedFilePart = filePart;
}
int lastSlashIdx = str.lastIndexOf(File.separator);
String result = null;
if (lastSlashIdx == -1) {
result = modifiedFilePart;
} else {
String firstPart = str.substring(0, lastSlashIdx);
result = firstPart + File.separator + modifiedFilePart;
}
return result;
}
protected String getFilePartOf(String str) {
if (str == null) {
return str;
}
int lastSlashIdx = str.lastIndexOf(File.separator);
String result = null;
if (lastSlashIdx == -1) {
result = cleanFileParts(str);
} else {
result = cleanFileParts(str.substring(lastSlashIdx + 1, str.length()));
}
return result;
}
private String cleanFileParts(String fileString) {
String fileMainPart = getFileMainPart(fileString);
String fileSuffixPart = getFileSuffixPart(fileString);
if (fileMainPart == null) {
return null;
}
if (fileSuffixPart == null) {
return fileMainPart;
} else {
return fileMainPart + "." + fileSuffixPart;
}
}
private String getFileMainPart(String fileString) {
ArrayList results = new ArrayList();
StringTokenizer st = new StringTokenizer(fileString, ".");
while (st.hasMoreTokens()) {
results.add(st.nextToken());
}
if (results.size() > 0) {
return stripNonAlphaNumericsExceptUnderscore(results.get(0));
} else {
return null;
}
}
private String getFileSuffixPart(String fileString) {
ArrayList results = new ArrayList();
StringTokenizer st = new StringTokenizer(fileString, ".");
while (st.hasMoreTokens()) {
results.add(st.nextToken());
}
if (results.size() > 1) {
return stripNonAlphaNumericsExceptUnderscore(results.get(1));
} else {
return null;
}
}
/**
* this method strips out all non-alpha characters
*
* @param inputString
*/
protected String stripNonAlphas(String inputString) {
StringBuilder sb = new StringBuilder(50);
for (int i=0; i
© 2015 - 2024 Weber Informatics LLC | Privacy Policy