Search in sources :

Example 1 with CacheManager

use of com.sun.appserv.web.cache.CacheManager in project Payara by payara.

the class CacheModule method configureResponseCache.

/**
 * configure ias-web response cache
 * @param app WebModule containing the cache
 * @param bean ias-web app config bean
 * @throws Exception
 *
 * read the configuration and setup the runtime support for caching in a
 * application.
 */
public static CacheManager configureResponseCache(WebModule app, SunWebApp bean) throws Exception {
    Cache cacheConfig = ((SunWebAppImpl) bean).getCache();
    // is cache configured?
    if (cacheConfig == null) {
        return null;
    }
    if (logger.isLoggable(Level.FINE)) {
        logger.log(Level.FINE, LogFacade.CONFIGURE_CACHE, app.getPath());
    }
    // create the CacheManager object for this app
    CacheManager manager = new CacheManager();
    String name, value;
    value = cacheConfig.getAttributeValue(Cache.ENABLED);
    if (value != null) {
        boolean enabled = ConfigBeansUtilities.toBoolean(value);
        manager.setEnabled(enabled);
    }
    // set cache element's attributes and properties
    value = cacheConfig.getAttributeValue(Cache.MAX_ENTRIES);
    if (value != null) {
        try {
            int maxEntries = Integer.parseInt(value.trim());
            manager.setMaxEntries(maxEntries);
        } catch (NumberFormatException e) {
            // XXX need error message
            throw new Exception("invalid max-entries", e);
        }
    }
    value = cacheConfig.getAttributeValue(Cache.TIMEOUT_IN_SECONDS);
    if (value != null) {
        try {
            int defaultTimeout = Integer.parseInt(value.trim());
            manager.setDefaultTimeout(defaultTimeout);
        } catch (NumberFormatException e) {
            // XXX need error message
            throw new Exception("invalid timeout", e);
        }
    }
    WebProperty[] props = cacheConfig.getWebProperty();
    for (int i = 0; i < props.length; i++) {
        name = props[i].getAttributeValue(WebProperty.NAME);
        value = props[i].getAttributeValue(WebProperty.VALUE);
        manager.addProperty(name, value);
    }
    // configure the default cache-helper
    DefaultHelper defHelperConfig = cacheConfig.getDefaultHelper();
    HashMap<String, String> map = new HashMap<String, String>();
    if (defHelperConfig != null) {
        props = defHelperConfig.getWebProperty();
        for (int i = 0; i < props.length; i++) {
            name = props[i].getAttributeValue(WebProperty.NAME);
            value = props[i].getAttributeValue(WebProperty.VALUE);
            map.put(name, value);
        }
    }
    manager.setDefaultHelperProps(map);
    // configure custom cache-helper classes
    for (int i = 0; i < cacheConfig.sizeCacheHelper(); i++) {
        CacheHelper helperConfig = cacheConfig.getCacheHelper(i);
        String helperName = helperConfig.getAttributeValue(CacheHelper.NAME);
        HashMap<String, String> helperProps = new HashMap<String, String>();
        props = helperConfig.getWebProperty();
        for (int j = 0; j < props.length; j++) {
            name = props[i].getAttributeValue(WebProperty.NAME);
            value = props[i].getAttributeValue(WebProperty.VALUE);
            helperProps.put(name, value);
        }
        helperProps.put("class-name", helperConfig.getAttributeValue(CacheHelper.CLASS_NAME));
        manager.addCacheHelperDef(helperName, helperProps);
    }
    // for each cache-mapping, create CacheMapping, setup the filter
    for (int i = 0; i < cacheConfig.sizeCacheMapping(); i++) {
        org.glassfish.web.deployment.runtime.CacheMapping mapConfig = cacheConfig.getCacheMapping(i);
        CacheMapping mapping = new CacheMapping();
        configureCacheMapping(mapConfig, mapping, logger);
        // use filter's name to refer to setup the filter
        String filterName = CACHING_FILTER_CLASSNAME + i;
        /**
         * all cache-mapings are indexed by the unique filter-name;
         * DefaultCacheHelper uses this name to access the mapping.
         */
        manager.addCacheMapping(filterName, mapping);
        // setup the ias CachingFilter definition with the context
        FilterDef filterDef = new FilterDef();
        filterDef.setFilterName(filterName);
        filterDef.setFilterClassName(CACHING_FILTER_CLASSNAME);
        if (mapping.getServletName() != null) {
            filterDef.addInitParameter("servletName", mapping.getServletName());
        }
        if (mapping.getURLPattern() != null) {
            filterDef.addInitParameter("URLPattern", mapping.getURLPattern());
        }
        app.addFilterDef(filterDef);
        // setup the mapping for the specified servlet-name or url-pattern
        FilterMap filterMap = new FilterMap();
        filterMap.setServletName(mapping.getServletName());
        filterMap.setURLPattern(mapping.getURLPattern());
        String[] dispatchers = mapConfig.getDispatcher();
        if (dispatchers != null) {
            EnumSet<DispatcherType> dispatcherTypes = null;
            for (String dispatcher : dispatchers) {
                // calls to FilterMap.setDispatcher are cumulative
                if (dispatcherTypes == null) {
                    dispatcherTypes = EnumSet.of(Enum.valueOf(DispatcherType.class, dispatcher));
                } else {
                    dispatcherTypes.add(Enum.valueOf(DispatcherType.class, dispatcher));
                }
            }
            filterMap.setDispatcherTypes(dispatcherTypes);
        }
        filterMap.setFilterName(filterName);
        app.addFilterMap(filterMap);
        if (logger.isLoggable(Level.FINE)) {
            logger.log(Level.FINE, LogFacade.CACHING_FILTER_ADDED, new Object[] { mapping.getServletName(), mapping.getURLPattern() });
        }
    }
    manager.setServletContext(app.getServletContext());
    return manager;
}
Also used : FilterDef(org.apache.catalina.deploy.FilterDef) HashMap(java.util.HashMap) org.glassfish.web.deployment.runtime(org.glassfish.web.deployment.runtime) FilterMap(org.apache.catalina.deploy.FilterMap) ValueConstraint(com.sun.appserv.web.cache.mapping.ValueConstraint) CacheManager(com.sun.appserv.web.cache.CacheManager) CacheMapping(com.sun.appserv.web.cache.mapping.CacheMapping) DispatcherType(javax.servlet.DispatcherType)

Example 2 with CacheManager

use of com.sun.appserv.web.cache.CacheManager in project Payara by payara.

the class CacheContextListener method contextInitialized.

/**
 * This is called when the context is created.
 */
public void contextInitialized(ServletContextEvent sce) {
    ServletContext context = sce.getServletContext();
    // see if a cache manager is already created and set in the context
    CacheManager cm = (CacheManager) context.getAttribute(CacheManager.CACHE_MANAGER_ATTR_NAME);
    // to create a new cache
    if (cm == null)
        cm = new CacheManager();
    Cache cache = null;
    try {
        cache = cm.createCache();
    } catch (Exception ex) {
    }
    // set the cache as a context attribute
    if (cache != null)
        context.setAttribute(Constants.JSPTAG_CACHE_KEY, cache);
}
Also used : ServletContext(javax.servlet.ServletContext) CacheManager(com.sun.appserv.web.cache.CacheManager) Cache(com.sun.appserv.util.cache.Cache)

Example 3 with CacheManager

use of com.sun.appserv.web.cache.CacheManager in project Payara by payara.

the class CacheRequestListener method requestInitialized.

/**
 * Receives notification that the request is about to enter the scope
 * of the web application, and adds newly created cache for JSP tag
 * body invocations as a request attribute.
 *
 * @param sre the notification event
 */
public void requestInitialized(ServletRequestEvent sre) {
    ServletContext context = sre.getServletContext();
    // Check if a cache manager has already been created and set in the
    // context
    CacheManager cm = (CacheManager) context.getAttribute(CacheManager.CACHE_MANAGER_ATTR_NAME);
    // to create a new cache
    if (cm == null) {
        cm = new CacheManager();
    }
    Cache cache = null;
    try {
        cache = cm.createCache();
    } catch (Exception ex) {
    }
    // Set the cache as a request attribute
    if (cache != null) {
        ServletRequest req = sre.getServletRequest();
        req.setAttribute(Constants.JSPTAG_CACHE_KEY, cache);
    }
}
Also used : ServletRequest(javax.servlet.ServletRequest) ServletContext(javax.servlet.ServletContext) CacheManager(com.sun.appserv.web.cache.CacheManager) Cache(com.sun.appserv.util.cache.Cache)

Example 4 with CacheManager

use of com.sun.appserv.web.cache.CacheManager in project Payara by payara.

the class WebModuleListener method stopCacheManager.

private void stopCacheManager(WebModule webModule) {
    ServletContext ctxt = webModule.getServletContext();
    CacheManager cm = (CacheManager) ctxt.getAttribute(CacheManager.CACHE_MANAGER_ATTR_NAME);
    if (cm != null) {
        try {
            cm.stop();
            if (_logger.isLoggable(Level.FINE)) {
                _logger.log(Level.FINE, LogFacade.CACHE_MANAGER_STOPPED);
            }
            ctxt.removeAttribute(CacheManager.CACHE_MANAGER_ATTR_NAME);
        } catch (LifecycleException ee) {
            _logger.log(Level.WARNING, ee.getMessage(), ee.getCause());
        }
    }
}
Also used : ServletContext(javax.servlet.ServletContext) CacheManager(com.sun.appserv.web.cache.CacheManager)

Example 5 with CacheManager

use of com.sun.appserv.web.cache.CacheManager in project Payara by payara.

the class CacheSessionListener method sessionCreated.

/**
 * Receives notification that a session was created, and adds newly
 * created cache for JSP tag body invocations as a session attribute.
 *
 * @param hse the notification event
 */
public void sessionCreated(HttpSessionEvent hse) {
    HttpSession session = hse.getSession();
    ServletContext context = session.getServletContext();
    // Check if a cache manager has already been created and set in the
    // context
    CacheManager cm = (CacheManager) context.getAttribute(CacheManager.CACHE_MANAGER_ATTR_NAME);
    // to create a new cache
    if (cm == null) {
        cm = new CacheManager();
    }
    Cache cache = null;
    try {
        cache = cm.createCache();
    } catch (Exception ex) {
    }
    // Set the cache as a session attribute
    if (cache != null) {
        session.setAttribute(Constants.JSPTAG_CACHE_KEY, cache);
    }
}
Also used : HttpSession(javax.servlet.http.HttpSession) ServletContext(javax.servlet.ServletContext) CacheManager(com.sun.appserv.web.cache.CacheManager) Cache(com.sun.appserv.util.cache.Cache)

Aggregations

CacheManager (com.sun.appserv.web.cache.CacheManager)6 ServletContext (javax.servlet.ServletContext)5 Cache (com.sun.appserv.util.cache.Cache)3 CacheMapping (com.sun.appserv.web.cache.mapping.CacheMapping)1 ValueConstraint (com.sun.appserv.web.cache.mapping.ValueConstraint)1 SunWebApp (com.sun.enterprise.deployment.runtime.web.SunWebApp)1 HashMap (java.util.HashMap)1 NamingException (javax.naming.NamingException)1 DispatcherType (javax.servlet.DispatcherType)1 ServletRequest (javax.servlet.ServletRequest)1 HttpSession (javax.servlet.http.HttpSession)1 FilterDef (org.apache.catalina.deploy.FilterDef)1 FilterMap (org.apache.catalina.deploy.FilterMap)1 org.glassfish.web.deployment.runtime (org.glassfish.web.deployment.runtime)1