org.glassfish.web.ha.session.management.HAStoreBase 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
/*
* 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.
*/
/*
* HAStoreBase.java
*
* Created on November 22, 2005, 12:34 PM
*
*/
package org.glassfish.web.ha.session.management;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.zip.GZIPOutputStream;
import com.sun.enterprise.container.common.spi.util.JavaEEIOUtils;
import org.apache.catalina.*;
import org.apache.catalina.session.StoreBase;
import com.sun.enterprise.web.ServerConfigLookup;
import org.glassfish.web.ha.LogFacade;
/**
*
* @author Larry White
* @author Rajiv Mordani
*/
public abstract class HAStoreBase extends StoreBase {
protected JavaEEIOUtils ioUtils;
static final Logger _logger = LogFacade.getLogger();
/** Creates a new instance of HAStoreBase */
public HAStoreBase(JavaEEIOUtils ioUtils) {
this.ioUtils = ioUtils;
}
/**
* Controls the verbosity of the web container subsystem's debug messages.
*
* This value is non-zero only when the level is one of FINE, FINER
* or FINEST.
*
*/
protected int _debug = 0;
protected void debug(String message) {
log(message);
}
/**
* The current level of logging verbosity for this object.
*/
protected Level _logLevel = Level.FINE;
/**
* Set _debug flag and _logLevel based on the log level.
*/
protected void setLogLevel() {
Level level = _logger.getLevel();
_logLevel = level;
if(_logLevel == null) {
_logLevel = Level.FINE;
}
// Determine the appropriate value our debug level
if (_logLevel.equals(Level.FINE))
_debug = 1;
else if (_logLevel.equals(Level.FINER))
_debug = 2;
else if (_logLevel.equals(Level.FINEST))
_debug = 5;
else
_debug = 0;
}
/**
* The application id
*/
protected String applicationId = null;
public String getApplicationId() {
if(applicationId != null)
return applicationId;
Container container = manager.getContainer();
StringBuffer sb = new StringBuffer(50);
sb.append(this.getClusterId());
List list = new ArrayList();
while (container != null) {
if(container.getName() != null) {
list.add(":" + container.getName());
}
container = container.getParent();
}
for(int i=(list.size() -1); i>-1; i--) {
String nextString = (String) list.get(i);
sb.append(nextString);
}
applicationId = sb.toString();
return applicationId;
}
/**
* Return the cluster id for this Store as defined in server.xml.
*/
protected String getClusterIdFromConfig() {
return null;
}
/**
* The cluster id
*/
protected String clusterId = null;
/**
* Return the cluster id for this Store
*/
protected String getClusterId() {
if(clusterId == null)
clusterId = getClusterIdFromConfig();
return clusterId;
}
//possible generic methods begin
/**
* Create serialized byte[] for obj
.
*
* @param session - serialize obj
* @return byte[] containing serialized data stream for obj
*/
public byte[] getByteArray(Session session)
throws IOException {
return getByteArray(session, false);
}
/**
* Create an byte[] for the session that we can then pass to
* the HA Store.
*
* @param session
* The session we are serializing
*
*/
protected byte[] getByteArray(Session session, boolean compress)
throws IOException {
ByteArrayOutputStream bos = null;
ObjectOutputStream oos = null;
byte[] obs;
try {
bos = new ByteArrayOutputStream();
// ObjectInputOutputStreamFactory oiosf = ObjectInputOutputStreamFactoryFactory.getFactory();
try {
if (compress) {
oos = ioUtils.createObjectOutputStream(
new GZIPOutputStream(new BufferedOutputStream(bos)), true);
} else {
oos = ioUtils.createObjectOutputStream(new BufferedOutputStream(bos), true);
}
} catch (Exception ex) {}
//use normal ObjectOutputStream if there is a failure during stream creation
if(oos == null) {
if (compress) {
oos = new ObjectOutputStream(new GZIPOutputStream(new BufferedOutputStream(bos)));
} else {
oos = new ObjectOutputStream(new BufferedOutputStream(bos));
}
}
writeSession(session, oos);
oos.close();
oos = null;
obs = bos.toByteArray();
//for monitoring
}
finally {
if ( oos != null ) {
oos.close();
}
}
return obs;
}
//SJSAS 6406580 START
/**
* Remove the Session with the specified session identifier from
* this Store, if present. If no such Session is present, this method
* takes no action.
*
* @param id Session identifier of the Session to be removed
*
* @exception IOException if an input/output error occurs
*/
public void remove(String id) throws IOException {
if (_debug > 0) {
debug("in remove");
}
if ( id == null ) {
if (_debug > 0) {
debug("In remove, got a null id");
}
return;
}
Manager mgr = this.getManager();
if(mgr instanceof ReplicationManagerBase) {
ReplicationManagerBase pMgr = (ReplicationManagerBase)mgr;
pMgr.doRemove(id);
} else {
this.removeSynchronized(id);
}
}
/**
* Remove the Session with the specified session identifier from
* this Store, if present. If no such Session is present, this method
* takes no action. (This is the non-synchronized version of remove
* called by a store element from the pool, not the singleton store
* which must use removeSynchronized
*
* @param id Session identifier of the Session to be removed
*
* @exception IOException if an input/output error occurs
*/
public void doRemove(String id) throws IOException {
//over-ridden in sub-classes
}
/**
* Remove the Session with the specified session identifier from
* this Store, if present. If no such Session is present, this method
* takes no action.
*
* @param id Session identifier of the Session to be removed
*
* @exception IOException if an input/output error occurs
*/
public synchronized void removeSynchronized(String id) throws IOException {
//over-ridden in sub-classes
}
/**
* return the size of the store cache
* will be over-ridden in subclasses
*/
public int getSize() throws IOException {
//FIXME
return 0;
}
/**
* get the utility class used to call into services from IOUtils
*/
//possible generic methods end
}