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

org.glowroot.agent.plugin.servlet.HttpSessions Maven / Gradle / Ivy

There is a newer version: 0.14.0-beta.3
Show newest version
/*
 * Copyright 2012-2018 the original author or authors.
 *
 * Licensed 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.glowroot.agent.plugin.servlet;

import java.util.Collections;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.glowroot.agent.plugin.api.checker.Nullable;
import org.glowroot.agent.plugin.api.util.Beans;
import org.glowroot.agent.plugin.api.util.ImmutableMap;
import org.glowroot.agent.plugin.servlet.ServletAspect.HttpSession;
import org.glowroot.agent.plugin.servlet.ServletPluginProperties.SessionAttributePath;

class HttpSessions {

    private HttpSessions() {}

    static Map getSessionAttributes(HttpSession session) {
        List attributePaths =
                ServletPluginProperties.captureSessionAttributePaths();
        if (attributePaths.isEmpty()) {
            return Collections.emptyMap();
        }
        Map captureMap = new HashMap();
        // dump only http session attributes in list
        for (SessionAttributePath attributePath : attributePaths) {
            if (attributePath.isAttributeNameWildcard()) {
                captureAllSessionAttributes(session, captureMap);
            } else if (attributePath.isWildcard()) {
                captureWildcardPath(session, captureMap, attributePath);
            } else {
                captureNonWildcardPath(session, captureMap, attributePath);
            }
        }
        return ImmutableMap.copyOf(captureMap);
    }

    static @Nullable Object getSessionAttribute(HttpSession session,
            SessionAttributePath attributePath) {
        if (attributePath.isSessionId()) {
            return session.getId();
        }
        Object attributeValue = session.getAttribute(attributePath.getAttributeName());
        return getSessionAttribute(attributeValue, attributePath);
    }

    static @Nullable Object getSessionAttribute(@Nullable Object attributeValue,
            SessionAttributePath attributePath) {
        List nestedPath = attributePath.getNestedPath();
        if (nestedPath.isEmpty()) {
            return attributeValue;
        } else {
            try {
                return Beans.value(attributeValue, nestedPath);
            } catch (Exception e) {
                return "";
            }
        }
    }

    private static void captureAllSessionAttributes(HttpSession session,
            Map captureMap) {
        Enumeration e = session.getAttributeNames();
        if (e == null) {
            return;
        }
        while (e.hasMoreElements()) {
            String attributeName = (String) e.nextElement();
            if (attributeName == null) {
                continue;
            }
            if (attributeName.equals(ServletPluginProperties.HTTP_SESSION_ID_ATTR)) {
                captureMap.put(attributeName, Strings.nullToEmpty(session.getId()));
                continue;
            }
            Object value = session.getAttribute(attributeName);
            if (value == null) {
                // value shouldn't be null, but its (remotely) possible that a concurrent
                // request for the same session just removed the attribute
                continue;
            }
            captureMap.put(attributeName, Strings.nullToEmpty(value.toString()));
        }
    }

    private static void captureWildcardPath(HttpSession session, Map captureMap,
            SessionAttributePath attributePath) {
        Object value = getSessionAttribute(session, attributePath);
        if (value instanceof Map) {
            String fullPath = attributePath.getFullPath();
            for (Map.Entry entry : ((Map) value).entrySet()) {
                Object val = entry.getValue();
                captureMap.put(fullPath + "." + entry.getKey(),
                        val == null ? "" : Strings.nullToEmpty(val.toString()));
            }
        } else if (value != null) {
            String fullPath = attributePath.getFullPath();
            for (Map.Entry entry : Beans.propertiesAsText(value).entrySet()) {
                captureMap.put(fullPath + "." + entry.getKey(), entry.getValue());
            }
        }
    }

    private static void captureNonWildcardPath(HttpSession session, Map captureMap,
            SessionAttributePath attributePath) {
        Object value = getSessionAttribute(session, attributePath);
        if (value != null) {
            captureMap.put(attributePath.getFullPath(), Strings.nullToEmpty(value.toString()));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy