/[cvs]/nfo/php/libs/org.netfrag.glib/Class/Logger.php
ViewVC logotype

Annotation of /nfo/php/libs/org.netfrag.glib/Class/Logger.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (hide annotations)
Mon Mar 3 21:26:43 2003 UTC (21 years, 4 months ago) by joko
Branch: MAIN
refactored from DesignPattern::Logger

1 joko 1.1 <?
2     // ---------------------------------------------------------------------------
3     // $Id: Logger.php,v 1.4 2003/02/13 00:43:41 joko Exp $
4     // ---------------------------------------------------------------------------
5     // $Log: Logger.php,v $
6     // Revision 1.4 2003/02/13 00:43:41 joko
7     // + logfile name now can get passed via defined constant
8     //
9     // Revision 1.3 2003/02/09 17:14:49 joko
10     // + now able to redirect errors raised by PEAR to logfile
11     //
12     // Revision 1.2 2003/02/03 14:47:49 joko
13     // + some code from DesignPattern::Bridge
14     //
15     // Revision 1.1 2003/02/03 03:33:48 joko
16     // + initial commit
17     //
18     // ---------------------------------------------------------------------------
19    
20    
21    
22     php::loadModule('Class::Abstract');
23     class Class_Logger extends Class_Abstract {
24    
25     var $logger;
26     var $logfile;
27     var $enabled;
28    
29     function Class_Logger() {
30     $this->constructor();
31     }
32    
33     function constructor() {
34     // FIXME: this is hardcoded!
35     $logfile = 'logfile.txt';
36     if (defined('LOGFILE')) {
37     $logfile = LOGFILE;
38     }
39     $this->_init_logger($logfile, 1);
40     }
41    
42     // TODO: split by loglevel here to make seperated logfiles possible (debug, normal, errors)
43     // TODO: optional: transmit logging messages via tcp - don't write them to disk (a handler for PEAR::Log)
44     function log($msg, $level = PEAR_LOG_DEBUG) {
45     //print "log: $msg<br>";
46     if ($this->logger) {
47     $this->logger->log($msg, $level);
48     } else {
49     // TODO: how are these type of errors handled?
50     //print "error-message: $msg<br>";
51     }
52     }
53    
54     function _init_logger($logfile, $enable = 0) {
55     $this->logfile = $logfile;
56     $this->enabled = $enable;
57     //print Dumper($this);
58     $this->_call_PEAR_Log_singleton();
59     $this->_pear_errors_redirect();
60     }
61    
62     function _call_PEAR_Log_singleton() {
63    
64     // $logfile = 'log.txt';
65     // $logfile = $this->config[path][base] . "core/var/log/logfile.txt";
66    
67     // TODO: maybe include userid here?
68     //$log_ident = substr(session_id(), 10, 6);
69     $log_ident = session_id();
70     $outkey = 'dummy';
71     if ($this->enabled) {
72     $outkey = 'file';
73     }
74    
75     if (class_exists('Log')) {
76     $this->logger = &Log::singleton($outkey, $this->logfile, $log_ident, array( timestampFormat => "%Y-%m-%d %H:%M:%S" ));
77     }
78     //$this->log( get_class($this) . "->_init_logger: ready\t\t--------------------", LOG_DEBUG );
79    
80     }
81    
82     function _pear_errors_redirect() {
83     // 1. use PEAR::setErrorHandling
84     //PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, "my_function_handler");
85     // ... this doesn't work since the method thinks it's called oo-style,
86     // which is *not* the case here
87    
88     // 2. use $GLOBALS to set global PEAR variables
89     $GLOBALS['_PEAR_default_error_mode'] = PEAR_ERROR_CALLBACK;
90     $GLOBALS['_PEAR_default_error_options'] = array($this, "_pear_error_receive");
91     }
92    
93     function _pear_error_receive($errorObject) {
94     // trace
95     //print Dumper($errorObject);
96     $this->log( "PEAR_Error->message: " . $errorObject->message, PEAR_LOG_ERR);
97     }
98    
99     }
100    
101     ?>

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed