KNotify
notifybylogfile.cpp
Go to the documentation of this file.00001 /* 00002 Copyright (C) 2005-2006 by Olivier Goffart <ogoffart at kde.org> 00003 00004 00005 This program is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation; either version 2, or (at your option) 00008 any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00018 00019 */ 00020 00021 00022 #include "notifybylogfile.h" 00023 #include "knotifyconfig.h" 00024 00025 #include <kdebug.h> 00026 #include <KUrl> 00027 #include <QDateTime> 00028 #include <QFile> 00029 #include <QTextStream> 00030 00031 NotifyByLogfile::NotifyByLogfile(QObject *parent) : KNotifyPlugin(parent) 00032 { 00033 } 00034 00035 00036 NotifyByLogfile::~NotifyByLogfile() 00037 { 00038 } 00039 00040 00041 00042 void NotifyByLogfile::notify( int id, KNotifyConfig * config ) 00043 { 00044 QString file=config->readEntry( "Logfile" ); 00045 00046 // kDebug(300) << file << KUrl(file).path(); 00047 00048 // ignore empty messages 00049 if ( config->text.isEmpty() || file.isEmpty() ) 00050 { 00051 finish( id ); 00052 return; 00053 } 00054 00055 // open file in append mode 00056 QFile logFile(KUrl(file).path()); 00057 if ( !logFile.open(QIODevice::WriteOnly | QIODevice::Append) ) 00058 { 00059 finish( id ); 00060 return; 00061 } 00062 00063 // append msg 00064 QTextStream strm( &logFile ); 00065 strm << "- KNotify " << QDateTime::currentDateTime().toString() << ": "; 00066 strm << config->text << endl; 00067 00068 // close file 00069 logFile.close(); 00070 00071 finish( id ); 00072 } 00073 00074 #include "notifybylogfile.moc"