summaryrefslogtreecommitdiff
path: root/0.8/src/logd.cpp
diff options
context:
space:
mode:
Diffstat (limited to '0.8/src/logd.cpp')
-rw-r--r--0.8/src/logd.cpp190
1 files changed, 0 insertions, 190 deletions
diff --git a/0.8/src/logd.cpp b/0.8/src/logd.cpp
deleted file mode 100644
index a595aef..0000000
--- a/0.8/src/logd.cpp
+++ /dev/null
@@ -1,190 +0,0 @@
-/*:*
- *: File: ./src/logd.cpp
- *:
- *: yChat; Homepage: ychat.buetow.org; Version 0.9.0-CURRENT
- *:
- *: Copyright (C) 2003 Paul C. Buetow, Volker Richter
- *: Copyright (C) 2004 Paul C. Buetow
- *: Copyright (C) 2005 EXA Digital Solutions GbR
- *: Copyright (C) 2006, 2007 Paul C. Buetow
- *:
- *: This program is free software; you can redistribute it and/or
- *: modify it under the terms of the GNU General Public License
- *: as published by the Free Software Foundation; either version 2
- *: of the License, or (at your option) any later version.
- *:
- *: This program is distributed in the hope that it will be useful,
- *: but WITHOUT ANY WARRANTY; without even the implied warranty of
- *: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- *: GNU General Public License for more details.
- *:
- *: You should have received a copy of the GNU General Public License
- *: along with this program; if not, write to the Free Software
- *: Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *:*/
-
-
-#ifndef LOGD_CPP
-#define LOGD_CPP
-
-#include "logd.h"
-
-#ifdef LOGGING
-
-#include <fstream>
-
-logd::logd( string s_filename, string s_log_lines )
-{
- initialize( s_filename, tool::string2int(s_log_lines) );
-}
-
-logd::logd( string s_filename, int i_log_lines )
-{
- initialize( s_filename, i_log_lines );
-}
-
-logd::~logd()
-{
- flush_logs();
-}
-
-void
-logd::initialize( string s_filename, int i_log_lines )
-{
-
- if ( s_filename.empty() )
- {
- wrap::system_message( LOGERR2 );
- exit(1);
- }
-
- //if (wrap::NCUR->is_ready())
- // wrap::system_message(LOGGINI+s_filename);
-
- s_logfile = s_filename;
- i_lines = i_log_lines;
-}
-
-string
-logd::get_time_string()
-{
- struct tm *t_m;
- time_t t_cur = time(NULL);
- t_m = gmtime(&t_cur);
-
- char c_buf[100];
- c_buf[99] = '\0';
- strftime(c_buf, 100, "[%d/%b/%Y:%H:%M:%S %z]", t_m);
-
- return string(c_buf);
-}
-
-void
-logd::flush()
-{
- ofstream of_output;
- of_output.open(s_logfile.c_str(), ios::app);
-
- if ( of_output == NULL )
- {
- wrap::system_message( LOGERR1 + s_logfile );
- exit(1);
- }
-
- while ( ! s_queue.empty() )
- {
- string s_l=s_queue.front();
- s_queue.pop();
- of_output.write( s_l.c_str(), s_l.size() );
- }
-
- of_output.close();
-}
-
-void
-logd::log_access( map<string,string> &map_request )
-{
- //static int i_access_lines = wrap::CONF->get_elem("httpd.logging.access_lines");
-
- string s_time = get_time_string();
- string s_logstr = map_request["REMOTE_ADDR"] + " - - "+s_time+" \"" + map_request["QUERY_STRING"]+"\" 200 0 \""+map_request["request"]+"\" \""+map_request["User-Agent"]+"\"\n";
-
- s_queue.push(s_logstr);
-
- if ( s_queue.size() > i_lines )
- flush();
-
-}
-
-void
-logd::log_simple_line( string s_line )
-{
- // Dont log empty lines!
- if (s_line.empty())
- return;
-
- string s_time = get_time_string();
- string s_logstr = s_time + " " + s_line;
-
- s_queue.push(s_logstr);
-
- if ( s_queue.size() > i_lines )
- flush();
-
-}
-
-void
-logd::set_logfile( string s_path, string s_filename )
-{
- // Remove "/" from filename!
- unsigned long ul_pos = s_filename.find( "/" );
- while ( ul_pos != string::npos )
- {
- s_filename.replace( ul_pos, 1, "SLASH" );
- ul_pos = s_filename.find( "/" );
- }
-
- // Remove "\" from filename (for non unix systems)!
- ul_pos = s_filename.find( "\\" );
- while ( ul_pos != string::npos )
- {
- s_filename.replace( ul_pos, 1, "BACKSLASH" );
- ul_pos = s_filename.find( "\\" );
- }
-
- this->s_logfile = s_path + s_filename;
-}
-
-void
-logd::flush_logs()
-{
- flush();
-}
-
-string
-logd::remove_html_tags( string s_logs )
-{
- unsigned long pos[2];
-
- while ( (pos[0] = s_logs.find("<")) != string::npos )
- {
- if ( (pos[1] = s_logs.find(">", pos[0])) != string::npos )
- s_logs.replace( pos[0], pos[1]-pos[0]+1, "");
- else
- break;
- }
-
- if ( s_logs == "\n" )
- return "";
-
- return s_logs;
-}
-
-void
-logd::set_lines( const int i_lines )
-{
- this->i_lines = i_lines;
-}
-
-#endif
-#endif