1
2
3
4
5
6
7
8
9
10
11
12
13
14 package ch.qos.logback.classic.selector;
15
16 import static ch.qos.logback.classic.ClassicConstants.JNDI_CONFIGURATION_RESOURCE;
17 import static ch.qos.logback.classic.ClassicConstants.JNDI_CONTEXT_NAME;
18
19 import java.net.URL;
20 import java.util.ArrayList;
21 import java.util.Collections;
22 import java.util.HashMap;
23 import java.util.List;
24 import java.util.Map;
25
26 import javax.naming.Context;
27 import javax.naming.NamingException;
28
29 import ch.qos.logback.classic.LoggerContext;
30 import ch.qos.logback.classic.joran.JoranConfigurator;
31 import ch.qos.logback.classic.util.ContextInitializer;
32 import ch.qos.logback.classic.util.JNDIUtil;
33 import ch.qos.logback.core.joran.spi.JoranException;
34 import ch.qos.logback.core.status.InfoStatus;
35 import ch.qos.logback.core.status.StatusManager;
36 import ch.qos.logback.core.status.WarnStatus;
37 import ch.qos.logback.core.util.Loader;
38 import ch.qos.logback.core.util.StatusPrinter;
39
40
41
42
43
44
45
46
47
48
49
50
51 public class ContextJNDISelector implements ContextSelector {
52
53 private final Map<String, LoggerContext> synchronizedContextMap;
54 private final LoggerContext defaultContext;
55
56 private static final ThreadLocal<LoggerContext> threadLocal = new ThreadLocal<LoggerContext>();
57
58 public ContextJNDISelector(LoggerContext context) {
59 synchronizedContextMap = Collections
60 .synchronizedMap(new HashMap<String, LoggerContext>());
61 defaultContext = context;
62 }
63
64 public LoggerContext getDefaultLoggerContext() {
65 return defaultContext;
66 }
67
68 public LoggerContext detachLoggerContext(String loggerContextName) {
69 return synchronizedContextMap.remove(loggerContextName);
70 }
71
72 public LoggerContext getLoggerContext() {
73 String contextName = null;
74 Context ctx = null;
75
76
77 LoggerContext lc = threadLocal.get();
78 if (lc != null) {
79 return lc;
80 }
81
82 try {
83
84
85 ctx = JNDIUtil.getInitialContext();
86 contextName = (String) JNDIUtil.lookup(ctx, JNDI_CONTEXT_NAME);
87 } catch (NamingException ne) {
88
89 }
90
91 if (contextName == null) {
92
93 return defaultContext;
94 } else {
95
96 LoggerContext loggerContext = synchronizedContextMap.get(contextName);
97
98 if (loggerContext == null) {
99
100 loggerContext = new LoggerContext();
101 loggerContext.setName(contextName);
102 synchronizedContextMap.put(contextName, loggerContext);
103 URL url = findConfigFileURL(ctx, loggerContext);
104 if (url != null) {
105 configureLoggerContextByURL(loggerContext, url);
106 } else {
107 try {
108 new ContextInitializer(loggerContext).autoConfig();
109 } catch (JoranException je) {
110 }
111 }
112 StatusPrinter.printInCaseOfErrorsOrWarnings(loggerContext);
113 }
114 return loggerContext;
115 }
116 }
117
118 private String conventionalConfigFileName(String contextName) {
119 return "logback-" + contextName + ".xml";
120 }
121
122 private URL findConfigFileURL(Context ctx, LoggerContext loggerContext) {
123 StatusManager sm = loggerContext.getStatusManager();
124
125 String jndiEntryForConfigResource = JNDIUtil.lookup(ctx,
126 JNDI_CONFIGURATION_RESOURCE);
127
128 if (jndiEntryForConfigResource != null) {
129 sm.add(new InfoStatus("Searching for [" + jndiEntryForConfigResource
130 + "]", this));
131 URL url = urlByResourceName(sm, jndiEntryForConfigResource);
132 if (url == null) {
133 String msg = "The jndi resource [" + jndiEntryForConfigResource
134 + "] for context [" + loggerContext.getName()
135 + "] does not lead to a valid file";
136 sm.add(new WarnStatus(msg, this));
137 }
138 return url;
139 } else {
140 String resourceByConvention = conventionalConfigFileName(loggerContext
141 .getName());
142 return urlByResourceName(sm, resourceByConvention);
143 }
144 }
145
146 private URL urlByResourceName(StatusManager sm, String resourceName) {
147 sm.add(new InfoStatus("Searching for [" + resourceName + "]",
148 this));
149 URL url = Loader.getResource(resourceName, Loader.getTCL());
150 if (url != null) {
151 return url;
152 }
153 return Loader.getResourceBySelfClassLoader(resourceName);
154 }
155
156 private void configureLoggerContextByURL(LoggerContext context, URL url) {
157 try {
158 JoranConfigurator configurator = new JoranConfigurator();
159 context.reset();
160 configurator.setContext(context);
161 configurator.doConfigure(url);
162 } catch (JoranException e) {
163 }
164 StatusPrinter.printInCaseOfErrorsOrWarnings(context);
165 }
166
167 public List<String> getContextNames() {
168 List<String> list = new ArrayList<String>();
169 list.addAll(synchronizedContextMap.keySet());
170 return list;
171 }
172
173 public LoggerContext getLoggerContext(String name) {
174 return synchronizedContextMap.get(name);
175 }
176
177
178
179
180
181
182 public int getCount() {
183 return synchronizedContextMap.size();
184 }
185
186
187
188
189
190
191
192
193
194 public void setLocalContext(LoggerContext context) {
195 threadLocal.set(context);
196 }
197
198 public void removeLocalContext() {
199 threadLocal.remove();
200 }
201
202 }