📄 sessionmessage.java
字号:
/*
* $Header: /home/cvs/jakarta-tomcat-catalina/modules/cluster/src/share/org/apache/catalina/cluster/SessionMessage.java,v 1.5 2004/01/12 05:23:10 fhanik Exp $
* $Revision: 1.5 $
* $Date: 2004/01/12 05:23:10 $
*
* ====================================================================
*
* The Apache Software License, Version 1.1
*
* Copyright (c) 1999 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
* any, must include the following acknowlegement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowlegement may appear in the software itself,
* if and wherever such third-party acknowlegements normally appear.
*
* 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
* from this software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache"
* nor may "Apache" appear in their names without prior written
* permission of the Apache Group.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
* [Additional notices, if required by prior licensing conditions]
*
*/
package org.apache.catalina.cluster;
/**
* Title: Tomcat Session Replication for Tomcat 4.0 <BR>
* Description: A very simple straight forward implementation of
* session replication of servers in a cluster.<BR>
* This session replication is implemented "live". By live
* I mean, when a session attribute is added into a session on Node A
* a message is broadcasted to other messages and setAttribute is called on the replicated
* sessions.<BR>
* A full description of this implementation can be found under
* <href="http://www.filip.net/tomcat/">Filip's Tomcat Page</a><BR>
*
* Copyright: See apache license
* Company: www.filip.net
* @author <a href="mailto:mail@filip.net">Filip Hanik</a>
* @version 1.0 for 4.0
*
* <B>Class Description:</B><BR>
* The SessionMessage class is a class that is used when a session has been
* created, modified, expired in a Tomcat cluster node.<BR>
*
* The following events are currently available:
* <ul>
* <li><pre>public static final int EVT_SESSION_CREATED</pre><li>
* <li><pre>public static final int EVT_SESSION_ACCESSED</pre><li>
* <li><pre>public static final int EVT_ATTRIBUTE_ADDED</pre><li>
* <li><pre>public static final int EVT_ATTRIBUTE_REMOVED</pre><li>
* <li><pre>public static final int EVT_SESSION_EXPIRED_WONOTIFY</pre><li>
* <li><pre>public static final int EVT_SESSION_EXPIRED_WNOTIFY</pre><li>
* <li><pre>public static final int EVT_GET_ALL_SESSIONS</pre><li>
* <li><pre>public static final int EVT_SET_USER_PRINCIPAL</pre><li>
* <li><pre>public static final int EVT_SET_SESSION_NOTE</pre><li>
* <li><pre>public static final int EVT_REMOVE_SESSION_NOTE</pre><li>
* </ul>
*
* These message are being sent and received from and to the
* InMemoryReplicationManager
*
* @see InMemoryReplicationManager
*/
import java.security.Principal;
import org.apache.catalina.cluster.Member;
public class SessionMessage
//implements serializable,
implements java.io.Serializable
{
/**
* Event type used when a session has been created on a node
*/
public static final int EVT_SESSION_CREATED = 1;
/**
* Event type used when a session has expired
*/
public static final int EVT_SESSION_EXPIRED = 2;
/**
* Event type used when a session has been accessed (ie, last access time
* has been updated. This is used so that the replicated sessions will not expire
* on the network
*/
public static final int EVT_SESSION_ACCESSED = 3;
/**
* Event type used when a server comes online for the first time.
* The first thing the newly started server wants to do is to grab the
* all the sessions from one of the nodes and keep the same state in there
*/
public static final int EVT_GET_ALL_SESSIONS = 4;
/**
* Event type used when an attribute has been added to a session,
* the attribute will be sent to all the other nodes in the cluster
*/
public static final int EVT_SESSION_DELTA = 13;
/**
* When a session state is transferred, this is the event.
*/
public static final int EVT_ALL_SESSION_DATA = 12;
/*
* Private serializable variables to keep the messages state
*/
private int mEvtType = -1;
private byte[] mSession;
private String mSessionID;
private Member mSrc;
private String mContextName;
private long serializationTimestamp;
/**
* Creates a session message. Depending on what event type you want this
* message to represent, you populate the different parameters in the constructor<BR>
* The following rules apply dependent on what event type argument you use:<BR>
* <B>EVT_SESSION_CREATED</B><BR>
* The parameters: session, sessionID must be set.<BR>
* <B>EVT_SESSION_EXPIRED</B><BR>
* The parameters: sessionID must be set.<BR>
* <B>EVT_SESSION_ACCESSED</B><BR>
* The parameters: sessionID must be set.<BR>
* <B>EVT_SESSION_EXPIRED_XXXX</B><BR>
* The parameters: sessionID must be set.<BR>
* <B>EVT_ATTRIBUTE_ADDED</B><BR>
* The parameters: sessionID, attrName, attrValue must be set.<BR>
* <B>EVT_ATTRIBUTE_REMOVED</B><BR>
* The parameters: sessionID, attrName must be set.<BR>
* <B>EVT_SET_USER_PRINCIPAL</B><BR>
* The parameters: sessionID, principal<BR>
* <B>EVT_REMOVE_SESSION_NOTE</B><BR>
* The parameters: sessionID, attrName<
* <B>EVT_SET_SESSION_NOTE</B><BR>
* The parameters: sessionID, attrName, attrValue
* @param eventtype - one of the 8 event type defined in this class
* @param session - the serialized byte array of the session itself
* @param sessionID - the id that identifies this session
* @param attrName - the name of the attribute added/removed
* @param attrValue - the value of the attribute added
*/
public SessionMessage( String contextName,
int eventtype,
byte[] session,
String sessionID)
{
mEvtType = eventtype;
mSession = session;
mSessionID = sessionID;
mContextName = contextName;
}
/**
* returns the event type
* @return one of the event types EVT_XXXX
*/
public int getEventType() { return mEvtType; }
/**
* @return the serialized data for the session
*/
public byte[] getSession() { return mSession;}
/**
* @return the session ID for the session
*/
public String getSessionID(){ return mSessionID; }
/**
* @return the name of the attribute
*/
// public String getAttributeName() { return mAttributeName; }
/**
* the value of the attribute
*/
// public Object getAttributeValue() {return mAttributeValue; }
// public SerializablePrincipal getPrincipal() { return mPrincipal;}
public void setTimestamp(long time) {serializationTimestamp=time;}
public long getTimestamp() { return serializationTimestamp;}
/**
* @return the event type in a string representating, useful for debugging
*/
public String getEventTypeString()
{
switch (mEvtType)
{
case EVT_SESSION_CREATED : return "SESSION-MODIFIED";
case EVT_SESSION_EXPIRED : return "SESSION-EXPIRED";
case EVT_SESSION_ACCESSED : return "SESSION-ACCESSED";
case EVT_GET_ALL_SESSIONS : return "SESSION-GET-ALL";
case EVT_SESSION_DELTA : return "SESSION-DELTA";
case EVT_ALL_SESSION_DATA : return "ALL-SESSION-DATA";
default : return "UNKNOWN-EVENT-TYPE";
}
}
/**
* Get the address that this message originated from. This would be set
* if the message was being relayed from a host other than the one
* that originally sent it.
*/
public Member getAddress()
{
return this.mSrc;
}
/**
* Use this method to set the address that this message originated from.
* This can be used when re-sending the EVT_GET_ALL_SESSIONS message to
* another machine in the group.
*/
public void setAddress(Member src)
{
this.mSrc = src;
}
public String getContextName() {
return mContextName;
}
}//SessionMessage
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -