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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.5 - (hide annotations)
Mon Mar 3 21:57:04 2003 UTC (21 years, 6 months ago) by joko
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +4 -1 lines
FILE REMOVED
refactored to Class::Logger

1 joko 1.1 <?
2     // ---------------------------------------------------------------------------
3 joko 1.5 // $Id: Logger.php,v 1.4 2003/02/13 00:43:41 joko Exp $
4 joko 1.1 // ---------------------------------------------------------------------------
5 joko 1.2 // $Log: Logger.php,v $
6 joko 1.5 // Revision 1.4 2003/02/13 00:43:41 joko
7     // + logfile name now can get passed via defined constant
8     //
9 joko 1.4 // Revision 1.3 2003/02/09 17:14:49 joko
10     // + now able to redirect errors raised by PEAR to logfile
11     //
12 joko 1.3 // Revision 1.2 2003/02/03 14:47:49 joko
13     // + some code from DesignPattern::Bridge
14     //
15 joko 1.2 // Revision 1.1 2003/02/03 03:33:48 joko
16     // + initial commit
17     //
18 joko 1.1 // ---------------------------------------------------------------------------
19    
20    
21     class DesignPattern_Logger {
22    
23 joko 1.2 var $logger;
24     var $logfile;
25     var $enabled;
26    
27 joko 1.3 /*
28     function DesignPattern_Logger() {
29     $this->constructor();
30     }
31     */
32    
33 joko 1.2 function constructor() {
34     // FIXME: this is hardcoded!
35 joko 1.4 $logfile = 'logfile.txt';
36     if (defined('LOGFILE')) {
37     $logfile = LOGFILE;
38     }
39     $this->_init_logger($logfile, 1);
40 joko 1.2 }
41    
42 joko 1.3 // 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 joko 1.2 //print "log: $msg<br>";
46 joko 1.1 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 joko 1.2
54     function _init_logger($logfile, $enable = 0) {
55     $this->logfile = $logfile;
56     $this->enabled = $enable;
57     //print Dumper($this);
58 joko 1.3 $this->_call_PEAR_Log_singleton();
59     $this->_pear_errors_redirect();
60 joko 1.2 }
61    
62 joko 1.3 function _call_PEAR_Log_singleton() {
63    
64 joko 1.2 // $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 joko 1.3 $this->logger = &Log::singleton($outkey, $this->logfile, $log_ident, array( timestampFormat => "%Y-%m-%d %H:%M:%S" ));
75 joko 1.2 //$this->log( get_class($this) . "->_init_logger: ready\t\t--------------------", LOG_DEBUG );
76 joko 1.3 }
77    
78     function _pear_errors_redirect() {
79     // 1. use PEAR::setErrorHandling
80     //PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, "my_function_handler");
81     // ... this doesn't work since the method thinks it's called oo-style,
82     // which is *not* the case here
83    
84     // 2. use $GLOBALS to set global PEAR variables
85     $GLOBALS['_PEAR_default_error_mode'] = PEAR_ERROR_CALLBACK;
86     $GLOBALS['_PEAR_default_error_options'] = array($this, "_pear_error_receive");
87     }
88    
89     function _pear_error_receive($errorObject) {
90     // trace
91     //print Dumper($errorObject);
92     $this->log( "PEAR_Error->message: " . $errorObject->message, PEAR_LOG_ERR);
93 joko 1.2 }
94    
95 joko 1.1 }
96    
97     ?>

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