|
Glassfish example source code file (ReplicationWebEventPersistentManager.java)
The Glassfish ReplicationWebEventPersistentManager.java source code
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2011 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.
*/
/*
* ReplicationWebEventPersistentManager.java
*
* Created on November 18, 2005, 3:38 PM
*
*/
package org.glassfish.web.ha.session.management;
import com.sun.enterprise.config.serverbeans.Config;
import com.sun.enterprise.config.serverbeans.WebContainer;
import com.sun.logging.LogDomains;
import org.apache.catalina.Context;
import org.apache.catalina.LifecycleException;
import org.apache.catalina.Session;
import org.glassfish.gms.bootstrap.GMSAdapterService;
import org.glassfish.ha.common.GlassFishHAReplicaPredictor;
import org.glassfish.ha.common.HACookieInfo;
import org.glassfish.ha.common.HACookieManager;
import org.glassfish.ha.common.NoopHAReplicaPredictor;
import org.glassfish.ha.store.api.BackingStoreConfiguration;
import org.glassfish.ha.store.api.BackingStoreException;
import org.glassfish.ha.store.api.BackingStoreFactory;
import org.jvnet.hk2.annotations.Inject;
import org.jvnet.hk2.annotations.Scoped;
import org.jvnet.hk2.annotations.Service;
import org.jvnet.hk2.component.Habitat;
import org.jvnet.hk2.component.PerLookup;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import java.io.File;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author Rajiv Mordani
*/
@Service
@Scoped(PerLookup.class)
public class ReplicationWebEventPersistentManager extends ReplicationManagerBase
implements WebEventPersistentManager {
@Inject
private Habitat habitat;
@Inject
private GMSAdapterService gmsAdapterService;
private GlassFishHAReplicaPredictor predictor;
private String clusterName = "";
private String instanceName = "";
/**
* The logger to use for logging ALL web container related messages.
*/
private static final Logger _logger
= LogDomains.getLogger(ReplicationWebEventPersistentManager.class, LogDomains.WEB_LOGGER);
/**
* The descriptive information about this implementation.
*/
private static final String info = "ReplicationWebEventPersistentManager/1.0";
/**
* The descriptive name of this Manager implementation (for logging).
*/
private static final String name = "ReplicationWebEventPersistentManager";
// ------------------------------------------------------------- Properties
/**
* Return descriptive information about this Manager implementation and
* the corresponding version number, in the format
* <code><description>/<version>.
*/
public String getInfo() {
return (this.info);
}
/** Creates a new instance of ReplicationWebEventPersistentManager */
public ReplicationWebEventPersistentManager() {
super();
if (_logger.isLoggable(Level.FINE)) {
_logger.fine("ReplicationWebEventPersistentManager created");
}
}
/**
* called from valve; does the save of session
*
* @param session
* The session to store
*/
public void doValveSave(Session session) {
if (_logger.isLoggable(Level.FINE)) {
_logger.fine("in doValveSave");
}
try {
ReplicationStore replicationStore = (ReplicationStore) this.getStore();
replicationStore.doValveSave(session);
if (_logger.isLoggable(Level.FINE)) {
_logger.fine("FINISHED repStore.valveSave");
}
} catch (Exception ex) {
ex.printStackTrace();
_logger.log(Level.FINE, "exception occurred in doValveSave id=" + session.getIdInternal(),
ex);
}
}
//START OF 6364900
public void postRequestDispatcherProcess(ServletRequest request, ServletResponse response) {
Context context = (Context)this.getContainer();
Session sess = this.getSession(request);
if(sess != null) {
doValveSave(sess);
}
return;
}
private Session getSession(ServletRequest request) {
javax.servlet.http.HttpServletRequest httpReq =
(javax.servlet.http.HttpServletRequest) request;
javax.servlet.http.HttpSession httpSess = httpReq.getSession(false);
if(httpSess == null) {
return null;
}
String id = httpSess.getId();
Session sess = null;
try {
sess = this.findSession(id);
} catch (java.io.IOException ex) {}
return sess;
}
//END OF 6364900
//new code start
private static int NUMBER_OF_REQUESTS_BEFORE_FLUSH = 1000;
volatile Map<String, String> removedKeysMap = new ConcurrentHashMap
Other Glassfish examples (source code examples)Here is a short list of links related to this Glassfish ReplicationWebEventPersistentManager.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.