LoggerMDC.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. <?php
  2. /**
  3. * log4php is a PHP port of the log4j java logging package.
  4. *
  5. * <p>This framework is based on log4j (see {@link http://jakarta.apache.org/log4j log4j} for details).</p>
  6. * <p>Design, strategies and part of the methods documentation are developed by log4j team
  7. * (Ceki Gülcü as log4j project founder and
  8. * {@link http://jakarta.apache.org/log4j/docs/contributors.html contributors}).</p>
  9. *
  10. * <p>PHP port, extensions and modifications by VxR. All rights reserved.<br>
  11. * For more information, please see {@link http://www.vxr.it/log4php/}.</p>
  12. *
  13. * <p>This software is published under the terms of the LGPL License
  14. * a copy of which has been included with this distribution in the LICENSE file.</p>
  15. *
  16. * @package log4php
  17. */
  18. /**
  19. * @ignore
  20. */
  21. if (!defined('LOG4PHP_DIR')) define('LOG4PHP_DIR', dirname(__FILE__));
  22. /**
  23. */
  24. require_once(LOG4PHP_DIR . '/LoggerLog.php');
  25. define('LOGGER_MDC_HT_SIZE', 7);
  26. /**
  27. * This is the global repository of user mappings
  28. */
  29. $GLOBALS['log4php.LoggerMDC.ht'] = array();
  30. /**
  31. * The LoggerMDC class is similar to the {@link LoggerNDC} class except that it is
  32. * based on a map instead of a stack. It provides <i>mapped diagnostic contexts</i>.
  33. *
  34. * A <i>Mapped Diagnostic Context</i>, or
  35. * MDC in short, is an instrument for distinguishing interleaved log
  36. * output from different sources. Log output is typically interleaved
  37. * when a server handles multiple clients near-simultaneously.
  38. *
  39. * <p><b><i>The MDC is managed on a per thread basis</i></b>.
  40. *
  41. * @author VxR <vxr@vxr.it>
  42. * @version $Revision: 1.1 $
  43. * @since 0.3
  44. * @package log4php
  45. */
  46. class LoggerMDC {
  47. /**
  48. * Put a context value as identified with the key parameter into the current thread's
  49. * context map.
  50. *
  51. * <p>If the current thread does not have a context map it is
  52. * created as a side effect.</p>
  53. *
  54. * <p>Note that you cannot put more than {@link LOGGER_MDC_HT_SIZE} keys.</p>
  55. *
  56. * @param string $key the key
  57. * @param string $value the value
  58. * @static
  59. */
  60. function put($key, $value)
  61. {
  62. if ( sizeof($GLOBALS['log4php.LoggerMDC.ht']) < LOGGER_MDC_HT_SIZE )
  63. $GLOBALS['log4php.LoggerMDC.ht'][$key] = $value;
  64. }
  65. /**
  66. * Get the context identified by the key parameter.
  67. *
  68. * <p>You can use special key identifiers to map values in
  69. * PHP $_SERVER and $_ENV vars. Just put a 'server.' or 'env.'
  70. * followed by the var name you want to refer.</p>
  71. *
  72. * <p>This method has no side effects.</p>
  73. *
  74. * @param string $key
  75. * @return string
  76. * @static
  77. */
  78. function get($key)
  79. {
  80. LoggerLog::debug("LoggerMDC::get() key='$key'");
  81. if (!empty($key)) {
  82. if (strpos($key, 'server.') === 0) {
  83. $varName = substr($key, 7);
  84. LoggerLog::debug("LoggerMDC::get() a _SERVER[$varName] is requested.");
  85. return $_SERVER[$varName];
  86. } elseif (strpos($key, 'env.') === 0) {
  87. $varName = substr($key, 4);
  88. LoggerLog::debug("LoggerMDC::get() a _ENV[$varName] is requested.");
  89. return $_ENV[$varName];
  90. } elseif (isset($GLOBALS['log4php.LoggerMDC.ht'][$key])) {
  91. LoggerLog::debug("LoggerMDC::get() a user key is requested.");
  92. return $GLOBALS['log4php.LoggerMDC.ht'][$key];
  93. }
  94. }
  95. return '';
  96. }
  97. /**
  98. * Remove the the context identified by the key parameter.
  99. *
  100. * It only affects user mappings.
  101. *
  102. * @param string $key
  103. * @return string
  104. * @static
  105. */
  106. function remove($key)
  107. {
  108. unset($GLOBALS['log4php.LoggerMDC.ht'][$key]);
  109. }
  110. }
  111. ?>