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: 
<?php
class icms_core_Logger {
    public $queries = array();
    public $blocks = array();
    public $extra = array();
    public $logstart = array();
    public $logend = array();
    public $errors = array();
    public $deprecated = array();
    public $filters = array();
    public $usePopup = false;
    public $activated = true;
    private $renderingEnabled = false;
    
    private function __construct() {  }
    
    static public function &instance() {
        static $instance;
        if (!isset( $instance )) {
            $instance = new icms_core_Logger();
            
            set_error_handler( array( $instance, "handleError" ) );
            set_exception_handler(array($instance, 'handleException'));
        }
        return $instance;
    }
    
    public function activate($showErrors = false) {
        icms_core_Debug::setDeprecated('$this->activated = ', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
        $this->activated = $showErrors;
    }
    
    public function enableRendering() {
        if (!$this->renderingEnabled) {
            ob_start(array(&$this, 'render'));
            $this->renderingEnabled = true;
        }
    }
    
    public function disableRendering() {
        if ($this->renderingEnabled) {
            $this->renderingEnabled = false;
        }
    }
    
    public function disableLogger() {
        $this->activated = false;
    }
    
    private function microtime() {
        $now = explode(' ', microtime());
        return (float) $now[0] + (float) $now[1];
    }
    
    public function startTime($name = 'ICMS') {
        $this->logstart[$name] = $this->microtime();
    }
    
    public function stopTime($name = 'ICMS') {
        $this->logend[$name] = $this->microtime();
    }
    
    public function addQuery($sql, $error=null, $errno=null) {
        if ($this->activated )      $this->queries[] = array('sql' => $sql, 'error' => $error, 'errno' => $errno);
        if (defined('ICMS_LOGGING_HOOK') and ICMS_LOGGING_HOOK != '') {
            include ICMS_LOGGING_HOOK;
        }
    }
    
    public function addBlock($name, $cached = false, $cachetime = 0) {
        if ($this->activated )
        $this->blocks[] = array('name' => $name, 'cached' => $cached, 'cachetime' => $cachetime);
    }
    
    public function addExtra($name, $msg) {
        if ($this->activated) {
            $this->extra[] = array('name' => $name, 'msg' => $msg);
        }
    }
    public function addDeprecated($msg) {
        if ($this->activated) {
            $this->deprecated[] = $msg;
        }
    }
    
    public function addFilter($name, $filter_message) {
        if ($this->activated )
        $this->filters[] = array('name' => $name, 'filtermsg' => (int) $filter_message);
    }
    
    public function handleException($exception) {
        icms_loadLanguageFile('core', 'core');
        $errstr = $exception->getMessage();
        $trace = true;
        if (substr($errstr, 0, '8') == 'notrace:') {
            $trace = false;
            $errstr = substr($errstr, 8);
        }
        echo sprintf(_CORE_PAGENOTDISPLAYED, $errstr);
        if ($trace) {
            echo '<br /><div>File: ' . $exception->getFile() . '</div>';
            echo '<div>Line: ' . $exception->getLine() . '</div>';
            echo "<div>Backtrace:<br />";
            $trace = $exception->getTrace();
            array_shift( $trace );
            foreach ( $trace as $step) {
                if (isset($step['file'])) {
                    echo $this->sanitizePath($step['file']);
                    echo ' (' . $step['line'] . ")\n<br />";
                }
            }
            echo '</div>';
        }
        exit();
    }
    
    public function handleError($errno, $errstr, $errfile, $errline) {
        $errstr = $this->sanitizePath($errstr);
        $errfile = $this->sanitizePath($errfile);
        if ($this->activated && ( $errno & error_reporting() )) {
            
            $this->errors[] = compact('errno', 'errstr', 'errfile', 'errline');
        }
        if ($errno == E_USER_ERROR) {
            $trace = true;
            if (substr($errstr, 0, '8') == 'notrace:') {
                $trace = false;
                $errstr = substr($errstr, 8);
            }
            icms_loadLanguageFile('core', 'core');
            $errortext = sprintf(_CORE_PAGENOTDISPLAYED, $errstr);
            echo $errortext;
            if ($trace && function_exists('debug_backtrace')) {
                echo "<div>Backtrace:<br />";
                $trace = debug_backtrace();
                array_shift( $trace );
                foreach ( $trace as $step) {
                    if (isset($step['file'])) {
                        echo $this->sanitizePath($step['file']);
                        echo ' (' . $step['line'] . ")\n<br />";
                    }
                }
                echo '</div>';
            }
            exit();
        }
    }
    
    function sanitizePath( $path) {
        $path = str_replace(
            array('\\', ICMS_ROOT_PATH, ICMS_TRUST_PATH, str_replace( '\\', '/', realpath(ICMS_ROOT_PATH))),
            array('/', '', 'TRUSTPATH', ''),
            $path
        );
        return $path;
    }
    
    public function render($output) {
        global $icmsModule;
        $this->addExtra('Included files', count(get_included_files()) . ' files');
        $this->addExtra(_CORE_MEMORYUSAGE, icms_conv_nr2local(icms_convert_size(memory_get_usage())) );
        $groups   = (is_object(icms::$user)) ? icms::$user->getGroups() : XOOPS_GROUP_ANONYMOUS;
        $moduleid = (isset($icmsModule) && is_object($icmsModule)) ? $icmsModule->getVar('mid') : 1;
        $gperm_handler = icms::handler('icms_member_groupperm');
        if (!$this->renderingEnabled || !$this->activated || !$gperm_handler->checkRight('enable_debug', $moduleid, $groups)) {
            return $output;
        }
        $this->renderingEnabled = $this->activated = false;
        $log = $this->dump( $this->usePopup ? 'popup' : '' );
        $pattern = '<!--{xo-logger-output}-->';
        $pos = strpos( $output, $pattern );
        if ($pos !== false) {
            return substr($output, 0, $pos) . $log . substr($output, $pos + strlen($pattern));
        } else {
            return $output . $log;
        }
    }
    
    public function dump($mode = '') {
        include ICMS_LIBRARIES_PATH . '/icms/core/Logger_render.php';
        return $ret;
    }
    
    public function dumpTime($name = 'ICMS') {
        if (!isset($this->logstart[$name])) {
            return 0;
        }
        $stop = isset($this->logend[$name]) ? $this->logend[$name] : $this->microtime();
        return $stop - $this->logstart[$name];
    }
    
    public function dumpAll() {
        icms_core_Debug::setDeprecated('$this->dump("")', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
        return $this->dump( '' );
    }
    
    public function dumpBlocks() {
        icms_core_Debug::setDeprecated('$this->dump("blocks")', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
        return $this->dump('blocks');
    }
    
    public function dumpExtra() {
        icms_core_Debug::setDeprecated('$this->dump("extra")', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
        return $this->dump('extra');
    }
    
    public function dumpQueries() {
        icms_core_Debug::setDeprecated('$this->dump("queries")', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
        return $this->dump('queries');
    }
    
    public function dumpFilters() {
        icms_core_Debug::setDeprecated('$this->dump("filters")', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
        return $this->dump('filters');
    }
    
    public function renderErrors() {
        icms_core_Debug::setDeprecated('$this->dump("errors")', sprintf(_CORE_REMOVE_IN_VERSION, '1.4'));
        return $this->dump( 'errors' );
    }
}