metrics.py
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:4k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. """
  2. @file metrics.py
  3. @author Phoenix
  4. @date 2007-11-27
  5. @brief simple interface for logging metrics
  6. $LicenseInfo:firstyear=2007&license=mit$
  7. Copyright (c) 2007-2010, Linden Research, Inc.
  8. Permission is hereby granted, free of charge, to any person obtaining a copy
  9. of this software and associated documentation files (the "Software"), to deal
  10. in the Software without restriction, including without limitation the rights
  11. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. copies of the Software, and to permit persons to whom the Software is
  13. furnished to do so, subject to the following conditions:
  14. The above copyright notice and this permission notice shall be included in
  15. all copies or substantial portions of the Software.
  16. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. THE SOFTWARE.
  23. $/LicenseInfo$
  24. """
  25. import sys
  26. try:
  27.     import syslog
  28. except ImportError:
  29.     # Windows
  30.     import sys
  31.     class syslog(object):
  32.         # wrap to a lame syslog for windows
  33.         _logfp = sys.stderr
  34.         def syslog(msg):
  35.             _logfp.write(msg)
  36.             if not msg.endswith('n'):
  37.                 _logfp.write('n')
  38.         syslog = staticmethod(syslog)
  39. from indra.base.llsd import format_notation
  40. def record_metrics(table, stats):
  41.     "Write a standard metrics log"
  42.     _log("LLMETRICS", table, stats)
  43. def record_event(table, data):
  44.     "Write a standard logmessage log"
  45.     _log("LLLOGMESSAGE", table, data)
  46. def set_destination(dest):
  47.     """Set the destination of metrics logs for this process.
  48.     If you do not call this function prior to calling a logging
  49.     method, that function will open sys.stdout as a destination.
  50.     Attempts to set dest to None will throw a RuntimeError.
  51.     @param dest a file-like object which will be the destination for logs."""
  52.     if dest is None:
  53.         raise RuntimeError("Attempt to unset metrics destination.")
  54.     global _destination
  55.     _destination = dest
  56. def destination():
  57.     """Get the destination of the metrics logs for this process.
  58.     Returns None if no destination is set"""
  59.     global _destination
  60.     return _destination
  61. class SysLogger(object):
  62.     "A file-like object which writes to syslog."
  63.     def __init__(self, ident='indra', logopt = None, facility = None):
  64.         try:
  65.             if logopt is None:
  66.                 logopt = syslog.LOG_CONS | syslog.LOG_PID
  67.             if facility is None:
  68.                 facility = syslog.LOG_LOCAL0
  69.             syslog.openlog(ident, logopt, facility)
  70.             import atexit
  71.             atexit.register(syslog.closelog)
  72.         except AttributeError:
  73.             # No syslog module on Windows
  74.             pass
  75.     def write(str):
  76.         syslog.syslog(str)
  77.     write = staticmethod(write)
  78.     def flush():
  79.         pass
  80.     flush = staticmethod(flush)
  81. #
  82. # internal API
  83. #
  84. _sequence_id = 0
  85. _destination = None
  86. def _next_id():
  87.     global _sequence_id
  88.     next = _sequence_id
  89.     _sequence_id += 1
  90.     return next
  91. def _dest():
  92.     global _destination
  93.     if _destination is None:
  94.         # this default behavior is documented in the metrics functions above.
  95.         _destination = sys.stdout
  96.     return _destination
  97.     
  98. def _log(header, table, data):
  99.     log_line = "%s (%d) %s %s" 
  100.                % (header, _next_id(), table, format_notation(data))
  101.     dest = _dest()
  102.     dest.write(log_line)
  103.     dest.flush()