From 4e1958e50a18bfa9a7cd2d41400a753c99fedbf9 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Mon, 20 Dec 2004 11:44:19 +0000 Subject: add syslog and bump version --- diff --git a/noncore/settings/sysinfo/sysinfo.cpp b/noncore/settings/sysinfo/sysinfo.cpp index 4c58999..7000175 100644 --- a/noncore/settings/sysinfo/sysinfo.cpp +++ b/noncore/settings/sysinfo/sysinfo.cpp @@ -28,17 +28,19 @@ #include "processinfo.h" #include "modulesinfo.h" #include "benchmarkinfo.h" +#include "sysloginfo.h" #include "versioninfo.h" #include "sysinfo.h" +/* OPIE */ #include - +using namespace Opie::Ui; #include #include +/* QT */ #include -using namespace Opie::Ui; SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags ) : QWidget( parent, name, WStyle_ContextHelp ) { @@ -62,13 +64,12 @@ SystemInfo::SystemInfo( QWidget *parent, const char *name, WFlags ) tab->addTab( new LoadInfo( tab ), "sysinfo/cputabicon", tr("CPU") ); if ( advanced ) { - tab->addTab( new ProcessInfo( tab ), "sysinfo/processtabicon", tr("Process") ); - tab->addTab( new ModulesInfo( tab ), "sysinfo/moduletabicon", tr("Modules") ); + tab->addTab( new ProcessInfo( tab ), "sysinfo/processtabicon", tr( "Process" ) ); + tab->addTab( new ModulesInfo( tab ), "sysinfo/moduletabicon", tr( "Modules" ) ); } + tab->addTab( new SyslogInfo( tab ), "sysinfo/syslogtabicon", tr( "Syslog" ) ); tab->addTab( new BenchmarkInfo( tab ), "sysinfo/benchmarktabicon", tr( "Benchmark" ) ); tab->addTab( new VersionInfo( tab ), "sysinfo/versiontabicon", tr("Version") ); tab->setCurrentTab( tr( "Memory" ) ); } - - diff --git a/noncore/settings/sysinfo/sysinfo.pro b/noncore/settings/sysinfo/sysinfo.pro index dd35563..e92d725 100644 --- a/noncore/settings/sysinfo/sysinfo.pro +++ b/noncore/settings/sysinfo/sysinfo.pro @@ -9,6 +9,7 @@ HEADERS = \ detail.h \ contrib/dhry.h \ benchmarkinfo.h \ + sysloginfo.h \ versioninfo.h \ sysinfo.h SOURCES = main.cpp \ @@ -21,6 +22,7 @@ SOURCES = main.cpp \ detail.cpp \ contrib/dhry.c contrib/fft.c \ benchmarkinfo.cpp \ + sysloginfo.cpp \ versioninfo.cpp \ sysinfo.cpp @@ -29,6 +31,6 @@ DEPENDPATH += $(OPIEDIR)/include LIBS += -lqpe -lopiecore2 -lopieui2 DEFINES += UNIX TARGET = sysinfo -VERSION = 1.1.1 +VERSION = 1.2.0 include ( $(OPIEDIR)/include.pro ) diff --git a/noncore/settings/sysinfo/sysloginfo.cpp b/noncore/settings/sysinfo/sysloginfo.cpp new file mode 100644 index 0000000..89c04e0 --- a/dev/null +++ b/noncore/settings/sysinfo/sysloginfo.cpp @@ -0,0 +1,116 @@ +/********************************************************************** +** SyslogInfo +** +** Display Syslog information +** +** Copyright (C) 2004, Michael Lauer +** mickey@tm.informatik.uni-frankfurt.de +** http://www.Vanille.de +** +** This file may be distributed and/or modified under the terms of the +** GNU General Public License version 2 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. +** +** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +**********************************************************************/ + +#include "sysloginfo.h" +#include "detail.h" + +/* OPIE */ +#include +#include +using namespace Opie::Ui; + +/* QT */ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* STD */ +#include +#include +#include +#include +#include +#include +#include +#include + +#define SYSLOG_READ 2 +#define SYSLOG_READ_ALL 3 +#define SYSLOG_READ_ALL_CLEAR 4 +#define SYSLOG_UNREAD 9 + +#undef APPEND + +const unsigned int bufsize = 16384; +char buf[bufsize]; + +SyslogInfo::SyslogInfo( QWidget* parent, const char* name, WFlags fl ) + : QWidget( parent, name, fl ) +{ + QGridLayout *layout = new QGridLayout( this ); + layout->setSpacing( 4 ); + layout->setMargin( 4 ); + + syslogview = new QTextView( this ); + syslogview->setTextFormat( PlainText ); + syslogview->setFont( QFont( "Fixed" ) ); + layout->addWidget( syslogview, 0, 0 ); + syslogview->setText( "..." ); + + memset( buf, 0, bufsize ); + ::klogctl( SYSLOG_READ_ALL, buf, bufsize ); + syslogview->setText( buf ); + +#ifdef APPEND + fd = ::open( "/proc/kmsg", O_RDONLY|O_SYNC ); + if ( fd == -1 ) + { + syslogview->setText( "Couldn't open /proc/kmsg: " + QString( strerror( errno ) ) ); + return; + } + QSocketNotifier *sn = new QSocketNotifier( fd, QSocketNotifier::Read, this ); + QObject::connect( sn, SIGNAL(activated(int)), this, SLOT(updateData()) ); +#else + QPushButton* pb = new QPushButton( "&Refresh", this ); + layout->addWidget( pb, 1, 0 ); + QObject::connect( pb, SIGNAL(clicked()), this, SLOT(updateData()) ); +#endif +} + +SyslogInfo::~SyslogInfo() +{ + if ( fd != -1 ) ::close( fd ); +} + +void SyslogInfo::updateData() +{ + qDebug( "SyslogInfo: updateData" ); +#ifdef APPEND + memset( buf, 0, bufsize ); + int num = ::read( fd, buf, bufsize ); + if ( num ) // -1 = error (permission denied) + { + syslogview->append( "\n" ); + syslogview->append( buf ); + qDebug( "SyslogInfo: adding '%s'", buf ); + } +#else + memset( buf, 0, bufsize ); + ::klogctl( SYSLOG_READ_ALL, buf, bufsize ); + syslogview->setText( buf ); + syslogview->ensureVisible( 0, syslogview->contentsHeight() ); +#endif +} diff --git a/noncore/settings/sysinfo/sysloginfo.h b/noncore/settings/sysinfo/sysloginfo.h new file mode 100644 index 0000000..7bf8d17 --- a/dev/null +++ b/noncore/settings/sysinfo/sysloginfo.h @@ -0,0 +1,42 @@ +/********************************************************************** +** SyslogInfo +** +** Display Syslog information +** +** Copyright (C) 2004, Michael Lauer +** mickey@tm.informatik.uni-frankfurt.de +** http://www.Vanille.de +** +** This file may be distributed and/or modified under the terms of the +** GNU General Public License version 2 as published by the Free Software +** Foundation and appearing in the file LICENSE.GPL included in the +** packaging of this file. +** +** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE +** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. +** +**********************************************************************/ + +#ifndef SYSLOGINFO_H +#define SYSLOGINFO_H + +#include + +class QTextView; + +class SyslogInfo : public QWidget +{ + Q_OBJECT +public: + SyslogInfo( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); + ~SyslogInfo(); + +private: + QTextView* syslogview; + int fd; + +private slots: + void updateData(); +}; + +#endif -- cgit v0.9.0.2