Add liblttng-ust-agent.jar to the .gitignore
[lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-log4j / org / lttng / ust / agent / log4j / LttngLog4jAgent.java
CommitLineData
5b5ffa03 1/*
d60dfbe4 2 * Copyright (C) 2015 - EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
5b5ffa03
DG
3 *
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
7 *
8 * This library is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
11 * for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
d60dfbe4
AM
18package org.lttng.ust.agent.log4j;
19
68a1ef73
AM
20import java.util.Collection;
21import java.util.Collections;
22import java.util.List;
46070114
AM
23import java.util.Set;
24import java.util.TreeSet;
68a1ef73
AM
25
26import org.apache.log4j.Appender;
46070114 27import org.apache.log4j.Category;
68a1ef73
AM
28import org.apache.log4j.LogManager;
29import org.apache.log4j.Logger;
d60dfbe4
AM
30import org.lttng.ust.agent.AbstractLttngAgent;
31
32/**
33 * Agent implementation for using the Log4j logger, connecting to a root session
34 * daemon.
35 *
36 * @author Alexandre Montplaisir
37 */
38class LttngLog4jAgent extends AbstractLttngAgent<LttngLogAppender> {
39
40 private static LttngLog4jAgent instance = null;
41
42 private LttngLog4jAgent() {
43 super(Domain.LOG4J);
44 }
5b5ffa03 45
d60dfbe4
AM
46 public static synchronized LttngLog4jAgent getInstance() {
47 if (instance == null) {
48 instance = new LttngLog4jAgent();
49 }
50 return instance;
51 }
5b5ffa03 52
68a1ef73
AM
53 @Override
54 public Collection<String> listAvailableEvents() {
46070114 55 Set<String> ret = new TreeSet<String>();
68a1ef73
AM
56
57 @SuppressWarnings("unchecked")
58 List<Logger> loggers = Collections.list(LogManager.getCurrentLoggers());
59 for (Logger logger : loggers) {
2b218c9a
AM
60 if (logger == null) {
61 continue;
62 }
63
68a1ef73
AM
64 /*
65 * Check if that logger has at least one LTTng log4j appender
66 * attached.
67 */
68 if (hasLttngAppenderAttached(logger)) {
69 ret.add(logger.getName());
70 }
71 }
72
73 return ret;
74 }
75
46070114 76 private static boolean hasLttngAppenderAttached(Category logger) {
68a1ef73
AM
77 @SuppressWarnings("unchecked")
78 List<Appender> appenders = Collections.list(logger.getAllAppenders());
79 for (Appender appender : appenders) {
80 if (appender instanceof LttngLogAppender) {
81 return true;
82 }
83 }
46070114
AM
84
85 /*
86 * A parent logger, if any, may be connected to an LTTng handler. In
87 * this case, we will want to include this child logger in the output,
88 * since it will be accessible by LTTng.
89 */
90 Category parent = logger.getParent();
91 if (parent != null) {
92 return hasLttngAppenderAttached(parent);
93 }
94
95 /*
96 * We have reached the root logger and have not found any LTTng handler,
97 * this event will not be accessible.
98 */
68a1ef73
AM
99 return false;
100 }
46070114 101
5b5ffa03 102}
This page took 0.028927 seconds and 4 git commands to generate.