View Javadoc
1   /*
2    * Licensed under the GPL License. You may not use this file except in compliance with the License.
3    * You may obtain a copy of the License at
4    *
5    *   https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
6    *
7    * THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
8    * WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
9    * PURPOSE.
10   */
11  package psiprobe.tools.logging.log4j2;
12  
13  import java.lang.reflect.Method;
14  
15  import javax.servlet.ServletContext;
16  
17  import org.apache.commons.lang3.reflect.MethodUtils;
18  import org.slf4j.Logger;
19  import org.slf4j.LoggerFactory;
20  
21  import psiprobe.tools.logging.DefaultAccessor;
22  
23  /**
24   * The Class Log4J2WebLoggerContextUtilsAccessor.
25   */
26  public class Log4J2WebLoggerContextUtilsAccessor extends DefaultAccessor {
27  
28    /** The Constant logger. */
29    private static final Logger logger =
30        LoggerFactory.getLogger(Log4J2WebLoggerContextUtilsAccessor.class);
31  
32    /**
33     * Instantiates a new log4 j 2 web logger context utils accessor.
34     *
35     * @param cl the cl
36     *
37     * @throws ClassNotFoundException the class not found exception
38     */
39    public Log4J2WebLoggerContextUtilsAccessor(ClassLoader cl) throws ClassNotFoundException {
40      logger.debug("Log4J2WebLoggerContextUtilsAccessor(): IN: cl={}", cl);
41      Class<?> clazz = cl.loadClass("org.apache.logging.log4j.web.WebLoggerContextUtils");
42      setTarget(clazz);
43      logger.debug("Log4J2WebLoggerContextUtilsAccessor(): OUT: this={}", this);
44    }
45  
46    /**
47     * Gets the logger context configured for the given ServletContext.
48     *
49     * @param ctx the servlet context
50     *
51     * @return the root logger
52     */
53    public Log4J2LoggerContextAccessor getWebLoggerContext(ServletContext ctx) {
54      logger.debug("getWebLoggerContext(): IN: ctx={}", ctx);
55      Log4J2LoggerContextAccessor result = null;
56  
57      Class<?> clazz = (Class<?>) getTarget();
58      Method getWebLoggerContext;
59      try {
60        getWebLoggerContext =
61            MethodUtils.getAccessibleMethod(clazz, "getWebLoggerContext", ServletContext.class);
62      } catch (Exception e) {
63        logger.error("exception getting accessible method getWebLoggerContext", e);
64        return result;
65      }
66  
67      Object loggerContext;
68      try {
69        loggerContext = getWebLoggerContext.invoke(null, ctx);
70      } catch (Exception e) {
71        logger.error("exception getting logger context in getWebLoggerContext", e);
72        return result;
73      }
74  
75      result = new Log4J2LoggerContextAccessor();
76      result.setTarget(loggerContext);
77      result.setApplication(getApplication());
78  
79      logger.debug("getWebLoggerContext(): OUT: result={}", result);
80      return result;
81    }
82  
83  }