1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611
|
/* Copyright (C) 2003 Vladimir Roubtsov. All rights reserved.
*
* This program and the accompanying materials are made available under
* the terms of the Common Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/cpl-v10.html
*
* $Id: Logger.java,v 1.1.1.1.2.2 2004/07/16 23:32:29 vlad_r Exp $
*/
package com.vladium.logging;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.NoSuchElementException;
import java.util.Properties;
import java.util.Set;
import java.util.StringTokenizer;
import com.vladium.emma.AppLoggers;
import com.vladium.emma.IAppConstants;
import com.vladium.util.ClassLoaderResolver;
import com.vladium.util.Property;
import com.vladium.util.Strings;
// ----------------------------------------------------------------------------
/**
* A simple Java version-independent logging framework. Each Logger is also
* an immutable context that encapsulates configuration elements like the
* logging verbosity level etc. In general, a Logger is looked up as an
* inheritable thread-local piece of data. This decouples classes and
* logging configurations in a way that seems difficult with log4j.<P>
*
* Note that a given class is free to cache its context in an instance field
* if the class is instantiated and used only on a single thread (or a set of
* threads that are guaranteed to share the same logging context). [This is
* different from the usual log4j pattern of caching a logger in a class static
* field]. In other cases (e.g., the instrumentation runtime), it makes more
* sense to scope a context to a single method invocation.<P>
*
* Every log message is structured as follows:
* <OL>
* <LI> message is prefixed with the prefix string set in the Logger if that is
* not null;
* <LI> if the calling class could be identified and it supplied the calling
* method name, the calling method is identified with all name components that
* are not null;
* <LI> caller-supplied message is logged, if not null;
* <LI> caller-supplied Throwable is dumped starting with a new line, if not null.
* </OL>
*
* MT-safety: a given Logger instance will not get corrupted by concurrent
* usage from multiple threads and guarantees that data written to the underlying
* PrintWriter in a single log call will be done in one atomic print() step.
*
* @see ILogLevels
*
* @author (C) 2001, Vlad Roubtsov
*/
public
final class Logger implements ILogLevels
{
// public: ................................................................
// TODO: update javadoc for 'logCaller'
// TODO: need isLoggable (Class)
public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask)
{
if ((level < NONE) || (level > ALL))
throw new IllegalArgumentException ("invalid log level: " + level);
if ((out == null) || out.checkError ())
throw new IllegalArgumentException ("null or corrupt input: out");
return new Logger (level, out, prefix, classMask);
}
/**
* This works as a cloning creator of sorts.
*
* @param level
* @param out
* @param prefix
* @param classMask
* @param base
* @return
*/
public static Logger create (final int level, final PrintWriter out, final String prefix, final Set classMask,
final Logger base)
{
if (base == null)
{
return create (level, out, prefix, classMask);
}
else
{
final int _level = level >= NONE
? level
: base.m_level;
final PrintWriter _out = (out != null) && ! out.checkError ()
? out
: base.m_out;
// TODO: do a better job of logger cloning
final String _prefix = prefix;
// final String _prefix = prefix != null
// ? prefix
// : base.m_prefix;
final Set _classMask = classMask != null
? classMask
: base.m_classMask;
return new Logger (_level, _out, _prefix, _classMask);
}
}
/**
* A quick method to determine if logging is enabled at a given level.
* This method acquires no monitors and should be used when calling one of
* log() or convenience logging methods directly incurs significant
* parameter construction overhead.
*
* @see ILogLevels
*/
public final boolean isLoggable (final int level)
{
return (level <= m_level);
}
/**
* A convenience method equivalent to isLoggable(INFO).
*/
public final boolean atINFO ()
{
return (INFO <= m_level);
}
/**
* A convenience method equivalent to isLoggable(VERBOSE).
*/
public final boolean atVERBOSE ()
{
return (VERBOSE <= m_level);
}
/**
* A convenience method equivalent to isLoggable(TRACE1).
*/
public final boolean atTRACE1 ()
{
return (TRACE1 <= m_level);
}
/**
* A convenience method equivalent to isLoggable(TRACE2).
*/
public final boolean atTRACE2 ()
{
return (TRACE2 <= m_level);
}
/**
* A convenience method equivalent to isLoggable(TRACE3).
*/
public final boolean atTRACE3 ()
{
return (TRACE3 <= m_level);
}
/**
* A convenience method to log 'msg' from an anonymous calling method
* at WARNING level.
*
* @param msg log message [ignored if null]
*/
public final void warning (final String msg)
{
_log (WARNING, null, msg, false);
}
/**
* A convenience method to log 'msg' from an anonymous calling method
* at INFO level.
*
* @param msg log message [ignored if null]
*/
public final void info (final String msg)
{
_log (INFO, null, msg, false);
}
/**
* A convenience method to log 'msg' from an anonymous calling method
* at VERBOSE level.
*
* @param msg log message [ignored if null]
*/
public final void verbose (final String msg)
{
_log (VERBOSE, null, msg, false);
}
/**
* A convenience method equivalent to log(TRACE1, method, msg).
*
* @param method calling method name [ignored if null]
* @param msg log message [ignored if null]
*/
public final void trace1 (final String method, final String msg)
{
_log (TRACE1, method, msg, true);
}
/**
* A convenience method equivalent to log(TRACE2, method, msg).
*
* @param method calling method name [ignored if null]
* @param msg log message [ignored if null]
*/
public final void trace2 (final String method, final String msg)
{
_log (TRACE2, method, msg, true);
}
/**
* A convenience method equivalent to log(TRACE3, method, msg).
*
* @param method calling method name [ignored if null]
* @param msg log message [ignored if null]
*/
public final void trace3 (final String method, final String msg)
{
_log (TRACE3, method, msg, true);
}
/**
* Logs 'msg' from an unnamed calling method.
*
* @param level level to log at [the method does nothing if this is less
* than the set level].
* @param msg log message [ignored if null]
*/
public final void log (final int level, final String msg, final boolean logCaller)
{
_log (level, null, msg, logCaller);
}
/**
* Logs 'msg' from a given calling method.
*
* @param level level to log at [the method does nothing if this is less
* than the set level].
* @param method calling method name [ignored if null]
* @param msg log message [ignored if null]
*/
public final void log (final int level, final String method, final String msg, final boolean logCaller)
{
_log (level, method, msg, logCaller);
}
/**
* Logs 'msg' from an unnamed calling method followed by the 'throwable' stack
* trace dump.
*
* @param level level to log at [the method does nothing if this is less
* than the set level].
* @param msg log message [ignored if null]
* @param throwable to dump after message [ignored if null]
*/
public final void log (final int level, final String msg, final Throwable throwable)
{
_log (level, null, msg, throwable);
}
/**
* Logs 'msg' from a given calling method followed by the 'throwable' stack
* trace dump.
*
* @param level level to log at [the method does nothing if this is less
* than the set level].
* @param method calling method name [ignored if null]
* @param msg log message [ignored if null]
* @param throwable to dump after message [ignored if null]
*/
public final void log (final int level, final String method, final String msg, final Throwable throwable)
{
_log (level, method, msg, throwable);
}
/**
* Provides direct access to the PrintWriter used by this Logger.
*
* @return print writer used by this logger [never null]
*/
public PrintWriter getWriter ()
{
return m_out;
}
/**
* Returns the current top of the thread-local logger stack or the static
* Logger instance scoped to Logger.class if the stack is empty.
*
* @return current logger [never null]
*/
public static Logger getLogger ()
{
final LinkedList stack = (LinkedList) THREAD_LOCAL_STACK.get ();
// [assertion: stack != null]
if (stack.isEmpty ())
{
return STATIC_LOGGER;
}
else
{
return (Logger) stack.getLast ();
}
}
/**
*
* @param ctx [may not be null]
*/
public static void push (final Logger ctx)
{
if (ctx == null)
throw new IllegalArgumentException ("null input: ctx");
final LinkedList stack = (LinkedList) THREAD_LOCAL_STACK.get ();
stack.addLast (ctx);
}
/**
* Requiring a context parameter here helps enforce correct push/pop
* nesting in the caller code.
*
* @param ctx [may not be null]
*/
public static void pop (final Logger ctx)
{
// TODO: add guards for making sure only the pushing thread is allowed to
// execute this
final LinkedList stack = (LinkedList) THREAD_LOCAL_STACK.get ();
try
{
final Logger current = (Logger) stack.getLast ();
if (current != ctx)
throw new IllegalStateException ("invalid context being popped: " + ctx);
stack.removeLast ();
current.cleanup ();
}
catch (NoSuchElementException nsee)
{
throw new IllegalStateException ("empty logger context stack on thread [" + Thread.currentThread () + "]: " + nsee);
}
}
public static int stringToLevel (final String level)
{
if (ILogLevels.SEVERE_STRING.equalsIgnoreCase (level) || ILogLevels.SILENT_STRING.equalsIgnoreCase (level))
return ILogLevels.SEVERE;
else if (ILogLevels.WARNING_STRING.equalsIgnoreCase (level) || ILogLevels.QUIET_STRING.equalsIgnoreCase (level))
return ILogLevels.WARNING;
else if (ILogLevels.INFO_STRING.equalsIgnoreCase (level))
return ILogLevels.INFO;
else if (ILogLevels.VERBOSE_STRING.equalsIgnoreCase (level))
return ILogLevels.VERBOSE;
else if (ILogLevels.TRACE1_STRING.equalsIgnoreCase (level))
return ILogLevels.TRACE1;
else if (ILogLevels.TRACE2_STRING.equalsIgnoreCase (level))
return ILogLevels.TRACE2;
else if (ILogLevels.TRACE3_STRING.equalsIgnoreCase (level))
return ILogLevels.TRACE3;
else if (ILogLevels.NONE_STRING.equalsIgnoreCase (level))
return ILogLevels.NONE;
else if (ILogLevels.ALL_STRING.equalsIgnoreCase (level))
return ILogLevels.ALL;
else
{
int _level = Integer.MIN_VALUE;
try
{
_level = Integer.parseInt (level);
}
catch (Exception ignore) {}
if ((_level >= ILogLevels.NONE) && (_level <= ILogLevels.ALL))
return _level;
else
return ILogLevels.INFO; // default to something middle of the ground
}
}
// protected: .............................................................
// package: ...............................................................
// private: ...............................................................
private static final class ThreadLocalStack extends InheritableThreadLocal
{
protected Object initialValue ()
{
return new LinkedList ();
}
} // end of nested class
private Logger (final int level, final PrintWriter out, final String prefix, final Set classMask)
{
m_level = level;
m_out = out;
m_prefix = prefix;
m_classMask = classMask; // no defensive clone
}
private void cleanup ()
{
m_out.flush ();
}
private void _log (final int level, final String method,
final String msg, final boolean logCaller)
{
if ((level <= m_level) && (level >= SEVERE))
{
final Class caller = logCaller ? ClassLoaderResolver.getCallerClass (2) : null;
final StringBuffer buf = new StringBuffer (m_prefix != null ? m_prefix + ": " : "");
if ((caller != null) || (method != null))
{
buf.append ("[");
if (caller != null) // if the caller could not be determined, s_classMask is ignored
{
String callerName = caller.getName ();
if (callerName.startsWith (PREFIX_TO_STRIP))
callerName = callerName.substring (PREFIX_TO_STRIP_LENGTH);
String parentName = callerName;
final int firstDollar = callerName.indexOf ('$');
if (firstDollar > 0) parentName = callerName.substring (0, firstDollar);
if ((m_classMask == null) || m_classMask.contains (parentName))
buf.append (callerName);
else
return;
}
if (method != null)
{
buf.append ("::");
buf.append (method);
}
buf.append ("] ");
}
final PrintWriter out = m_out;
if (msg != null) buf.append (msg);
out.println (buf);
if (FLUSH_LOG) out.flush ();
}
}
private void _log (final int level, final String method,
final String msg, final Throwable throwable)
{
if ((level <= m_level) && (level >= SEVERE))
{
final Class caller = ClassLoaderResolver.getCallerClass (2);
final StringBuffer buf = new StringBuffer (m_prefix != null ? m_prefix + ": " : "");
if ((caller != null) || (method != null))
{
buf.append ("[");
if (caller != null) // if the caller could not be determined, s_classMask is ignored
{
String callerName = caller.getName ();
if (callerName.startsWith (PREFIX_TO_STRIP))
callerName = callerName.substring (PREFIX_TO_STRIP_LENGTH);
String parentName = callerName;
final int firstDollar = callerName.indexOf ('$');
if (firstDollar > 0) parentName = callerName.substring (0, firstDollar);
if ((m_classMask == null) || m_classMask.contains (parentName))
buf.append (callerName);
else
return;
}
if (method != null)
{
buf.append ("::");
buf.append (method);
}
buf.append ("] ");
}
final PrintWriter out = m_out;
if (msg != null) buf.append (msg);
if (throwable != null)
{
final StringWriter sw = new StringWriter ();
final PrintWriter pw = new PrintWriter (sw);
throwable.printStackTrace (pw);
pw.flush ();
buf.append (sw.toString ());
}
out.println (buf);
if (FLUSH_LOG) out.flush ();
}
}
private final int m_level; // always in [NONE, ALL] range
private final PrintWriter m_out; // never null
private final String m_prefix; // null is equivalent to no prefix
private final Set /* String */ m_classMask; // null is equivalent to no class filtering
private static final String PREFIX_TO_STRIP = "com.vladium."; // TODO: can this be set programmatically ?
private static final int PREFIX_TO_STRIP_LENGTH = PREFIX_TO_STRIP.length ();
private static final boolean FLUSH_LOG = true;
private static final String COMMA_DELIMITERS = "," + Strings.WHITE_SPACE;
private static final Logger STATIC_LOGGER; // set in <clinit>
private static final ThreadLocalStack THREAD_LOCAL_STACK; // set in <clinit>
static
{
THREAD_LOCAL_STACK = new ThreadLocalStack ();
// TODO: unfortunately, this init code makes Logger coupled to the app classes
// (via the app namespace string constants)
// I don't quite see an elegant solution to this design problem yet
final Properties properties = Property.getAppProperties (IAppConstants.APP_NAME_LC, Logger.class.getClassLoader ());
// verbosity level:
final int level;
{
final String _level = properties.getProperty (AppLoggers.PROPERTY_VERBOSITY_LEVEL,
AppLoggers.DEFAULT_VERBOSITY_LEVEL);
level = stringToLevel (_level);
}
// verbosity filter:
final Set filter;
{
final String _filter = properties.getProperty (AppLoggers.PROPERTY_VERBOSITY_FILTER);
Set temp = null;
if (_filter != null)
{
final StringTokenizer tokenizer = new StringTokenizer (_filter, COMMA_DELIMITERS);
if (tokenizer.countTokens () > 0)
{
temp = new HashSet (tokenizer.countTokens ());
while (tokenizer.hasMoreTokens ())
{
temp.add (tokenizer.nextToken ());
}
}
}
filter = temp;
}
STATIC_LOGGER = create (level,
new PrintWriter (System.out, false),
IAppConstants.APP_NAME,
filter);
}
} // end of class
// ----------------------------------------------------------------------------
|