Package org.apache.sirona.web.session

Source Code of org.apache.sirona.web.session.SironaSessionListener

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License.  You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sirona.web.session;

import org.apache.sirona.Role;
import org.apache.sirona.counters.Counter;
import org.apache.sirona.counters.Unit;
import org.apache.sirona.repositories.Repository;
import org.apache.sirona.stopwatches.StopWatch;

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicLong;

public class SironaSessionListener implements HttpSessionListener, ServletContextListener {
    private final Map<String, StopWatch> watches = new ConcurrentHashMap<String, StopWatch>();

    private final AtomicLong sessionNumber = new AtomicLong(0);

    private Counter counter;
    private SessionGauge gauge;

    @Override
    public void sessionCreated(final HttpSessionEvent httpSessionEvent) {
        final StopWatch watch = Repository.INSTANCE.start(counter);
        watches.put(httpSessionEvent.getSession().getId(), watch);
        sessionNumber.incrementAndGet();
    }

    @Override
    public void sessionDestroyed(final HttpSessionEvent httpSessionEvent) {
        final StopWatch watch = watches.remove(httpSessionEvent.getSession().getId());
        if (watch != null) {
            watch.stop();
        }
        sessionNumber.decrementAndGet();
    }

    @Override
    public void contextInitialized(final ServletContextEvent sce) {
        String contextPath = sce.getServletContext().getContextPath();
        if (contextPath == null || contextPath.isEmpty()) {
            contextPath = "/";
        }
        counter = Repository.INSTANCE.getCounter(new Counter.Key(new Role("session-durations", Unit.Time.NANOSECOND), "session-durations-" + contextPath));

        gauge = new SessionGauge(contextPath, sessionNumber);
        Repository.INSTANCE.addGauge(gauge);
    }

    @Override
    public void contextDestroyed(final ServletContextEvent sce) {
        Repository.INSTANCE.stopGauge(gauge);
    }
}
TOP

Related Classes of org.apache.sirona.web.session.SironaSessionListener

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.