From bcb704366cb5e333a626c18c308c7e0448a8e69f Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- ksirc/logfile.cpp | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 ksirc/logfile.cpp (limited to 'ksirc/logfile.cpp') diff --git a/ksirc/logfile.cpp b/ksirc/logfile.cpp new file mode 100644 index 00000000..6a15e51e --- /dev/null +++ b/ksirc/logfile.cpp @@ -0,0 +1,93 @@ +/* This file is part of the KDE project + Copyright (C) 2001 Simon Hausmann + + This program is free software; you can redistribute it and/or + modify it under the terms of the Artistic License. +*/ + +#include "logfile.h" + +#include + +#include + +#include + +LogFile::LogFile( const QString &channel, const QString &server ) + : m_channel( channel ), m_server( server ), m_file( new QFile() ), + m_flushTimerId( -1 ) +{ +} + +LogFile::~LogFile() +{ + closeLog(); + delete m_file; +} + +void LogFile::open() +{ + int suffix = 1; + + m_file->setName( makeLogFileName( m_channel, m_server ) ); + + while ( !m_file->open( IO_WriteOnly | IO_Append ) && suffix < 16000 ) // arbitrary limit ;) + { + m_file->setName( makeLogFileName( m_channel, m_server, suffix ) ); + suffix++; + } + + assert( m_file->isOpen() == true ); + + log( QString::fromLatin1( "### Log session started at " ) + + QDateTime::currentDateTime().toString() + + QString::fromLatin1( "###\n" ) ); +} + +void LogFile::closeLog() +{ + log( QString::fromLatin1( "### Log session terminated at " ) + + QDateTime::currentDateTime().toString() + + QString::fromLatin1( "###\n" ) ); + + if ( m_flushTimerId != -1 ) + killTimer( m_flushTimerId ); + + m_file->close(); +} + +void LogFile::log( const QString &message ) +{ + m_file->writeBlock( message.local8Bit(), message.length() ); + + if ( m_flushTimerId == -1 ) + m_flushTimerId = startTimer( 60000 ); // flush each minute +} + +void LogFile::timerEvent( QTimerEvent * ) +{ + if ( m_file ) + m_file->flush(); + + killTimer( m_flushTimerId ); + m_flushTimerId = -1; +} + +QString LogFile::makeLogFileName( const QString &channel, const QString &server, int suffix ) +{ + QString res = channel + '_'; + + QDate dt = QDate::currentDate(); + QString dateStr; + dateStr.sprintf( "%.4d_%.2d_%.2d_", dt.year(), dt.month(), dt.day() ); + res += dateStr; + + res += server; + + res += ".log"; + + if ( suffix > -1 ) + res += '.' + QString::number( suffix ); + + return locateLocal( "appdata", "logs/" + res ); +} -- cgit v1.2.1