All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wings.comet.DefaultCometConnectionManager Maven / Gradle / Ivy

The newest version!
package org.wings.comet;

import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;

/**
 * Manages the number of open HangingGet requests per browser via a shared object in JNDI.
 */
class DefaultCometConnectionManager extends CometConnectionManager {

    private Context jndiContext;
    
    public DefaultCometConnectionManager() {
        try {
            jndiContext = new InitialContext();
        } catch (NamingException e) {
            e.printStackTrace();
        }
    }

    @Override
    public boolean canAddHangingGet() {
		int hGetCount = readHGetCount();
		log.debug("canAddHangingGet: hGetCount=" + hGetCount);
		return hGetCount < getMaxHangingGetCount();
	}

	@Override
    public boolean addHangingGet() {
		int hGetCount = readHGetCount();
		log.debug("addHangingGet: hGetCount before=" + hGetCount);
		return hGetCount < getMaxHangingGetCount() && saveHGetCount(++hGetCount);
	}

	@Override
    public void removeHangingGet() {
		int hGetCount = readHGetCount();
		log.debug("removeHangingGet: hGetCount before=" + hGetCount);
		if (hGetCount > 0)
			saveHGetCount(--hGetCount);
	}

   int readHGetCount() {
        try {
            return (Integer) jndiContext.lookup(NAME + getBrowserId());
        } catch (NamingException e) {
        	return 0;
        }
    }
   
   private boolean saveHGetCount(int count) {
		try {
			jndiContext.rebind(NAME + getBrowserId(), count);
			return true;
		} catch (NamingException e) {
			return false;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy