jai removed from license part 1
[mir.git] / source / mir / log / log4j / LoggerImpl.java
1 /*
2  * Copyright (C) 2005 The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with  any library licensed under the Apache Software License.
22  * You must obey the GNU General Public License in all respects for all of the code used
23  * other than the above mentioned libraries.  If you modify this file, you may extend this
24  * exception to your version of the file, but you are not obligated to do so.
25  * If you do not wish to do so, delete this exception statement from your version.
26  */
27 package mir.log.log4j;
28
29 import java.util.HashMap;
30 import java.util.Map;
31
32 import mir.config.MirPropertiesConfiguration;
33 import mir.log.LoggerExc;
34 import mir.log.LoggerFailure;
35
36 import org.apache.log4j.Logger;
37 import org.apache.log4j.PropertyConfigurator;
38
39
40 public class LoggerImpl implements mir.log.Logger {
41   private static final Map loggers = new HashMap();
42
43   public LoggerImpl() throws LoggerExc {
44     reload();
45   }
46
47   /** {@inheritDoc} */
48   public void debug(Object o, String s) {
49     this.getLogger(o).debug(s);
50   }
51
52   /** {@inheritDoc} */
53   public void info(Object o, String s) {
54     this.getLogger(o).info(s);
55   }
56
57   /** {@inheritDoc} */
58   public void warn(Object o, String s) {
59     this.getLogger(o).warn(s);
60   }
61
62   /** {@inheritDoc} */
63   public void warn(Object o, String s, Throwable anException) {
64     this.getLogger(o).warn(s, anException);
65   }
66
67   /** {@inheritDoc} */
68   public void error(Object o, String s) {
69     this.getLogger(o).error(s);
70   }
71
72   /** {@inheritDoc} */
73   public void error(Object o, String s, Throwable anException) {
74     this.getLogger(o).error(s, anException);
75   }
76
77   /** {@inheritDoc} */
78   public void fatal(Object o, String s) {
79     this.getLogger(o).fatal(s);
80   }
81
82   /** {@inheritDoc} */
83   public void reload() throws LoggerExc, LoggerFailure {
84     try {
85       synchronized (loggers) {
86         System.setProperty("log.home",
87             MirPropertiesConfiguration.instance().getFile("Log.Home").getAbsolutePath());
88
89         PropertyConfigurator.configure(
90             MirPropertiesConfiguration.instance().getFile("Log.log4j.ConfigurationFile").getAbsolutePath());
91
92         loggers.clear();
93       }
94     }
95     catch (Throwable t) {
96       throw new LoggerFailure(t);
97     }
98   }
99
100   private Logger getLogger(Object o) {
101     String name;
102     Logger l;
103
104     if (o instanceof String) {
105       name = (String) o;
106     }
107     else if (o instanceof Class) {
108       name = ( (Class) o).getName();
109     }
110     else if (o != null) {
111       name = o.getClass().getName();
112     }
113     else {
114       name = "generic";
115     }
116
117     synchronized (loggers) {
118       l = (Logger) loggers.get(name);
119       if (l == null) {
120         if (!loggers.containsKey(name)) {
121           l = Logger.getLogger(name);
122           loggers.put(name, l);
123         }
124         l = (Logger) loggers.get(name);
125       }
126     }
127
128     return l;
129   }
130 }