Doc: add LTTNG_UST_CLOCK_PLUGIN to man page
[lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-log4j / org / lttng / ust / agent / log4j / LTTngLog4j.java
CommitLineData
501f6777
CB
1/*
2 * Copyright (C) 2014 - Christian Babeux <christian.babeux@efficios.com>
3 *
4 *
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License, version 2.1 only,
7 * as published by the Free Software Foundation.
8 *
9 * This library is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this library; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19package org.lttng.ust.agent.log4j;
20
21import java.util.Enumeration;
22import java.util.Iterator;
23import java.util.Vector;
24
25import org.apache.log4j.LogManager;
26import org.apache.log4j.Logger;
501f6777
CB
27import org.lttng.ust.agent.LogFrameworkSkeleton;
28
5bfeaeca
AM
29/**
30 * log4j logging framework
31 *
32 * @author Christian Babeux
33 */
501f6777
CB
34public class LTTngLog4j extends LogFrameworkSkeleton {
35
36 private LTTngLogAppender appender;
37 private Boolean attached;
38
5bfeaeca
AM
39 /**
40 * Constructor
41 *
42 * @param isRoot
43 * If this logger is a root logger or not.
44 */
501f6777
CB
45 public LTTngLog4j(Boolean isRoot) {
46 super();
47 this.appender = new LTTngLogAppender(isRoot);
48 this.attached = false;
49 }
50
51 @Override
52 public Boolean enableLogger(String name) {
53 if(!super.enableLogger(name)) {
54 return false;
55 }
56
57 /* The first enable of any event triggers the attachment to the root logger */
58 if (getEventCount() == 1 && !this.attached) {
59 attachToRootLogger();
60 }
61
62 return true;
63 }
64
65 @Override
66 public Boolean disableLogger(String name) {
67 if(!super.disableLogger(name)) {
68 return false;
69 }
70
71 /* Detach from the root logger when the event counts reach zero */
72 if (getEventCount() == 0 && this.attached) {
73 detachFromRootLogger();
74 }
75
76 return true;
77 }
78
79 @Override
80 public Iterator<String> listLoggers() {
81 Vector<String> logs = new Vector<String>();
bc7de6d9 82 for (Enumeration<?> loggers = LogManager.getCurrentLoggers(); loggers.hasMoreElements(); ) {
501f6777
CB
83 Logger logger = (Logger) loggers.nextElement();
84 String name = logger.getName();
85 logs.add(name);
86 }
87
88 return logs.iterator();
89 }
90
91 @Override
92 public Boolean isRoot() {
93 return appender.isRoot();
94 }
95
96 @Override
97 public void reset() {
98 super.reset();
99 detachFromRootLogger();
100 }
101
102 private void attachToRootLogger() {
103 if (this.attached) {
104 return;
105 }
106
107 Logger logger = Logger.getRootLogger();
108 logger.addAppender(this.appender);
109 this.attached = true;
110 }
111
112 private void detachFromRootLogger() {
113 if (!this.attached) {
114 return;
115 }
116
117 Logger logger = Logger.getRootLogger();
118 logger.removeAppender(this.appender);
119 this.attached = false;
120 }
121}
This page took 0.030736 seconds and 4 git commands to generate.