mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 11:22:52 +00:00
309 lines
9.6 KiB
C++
309 lines
9.6 KiB
C++
/*
|
|
* kcmsambastatistics.cpp
|
|
*
|
|
* Copyright (c) 2000 Alexander Neundorf <alexander.neundorf@rz.tu-ilmenau.de>
|
|
*
|
|
* Requires the Qt widget libraries, available at no cost at
|
|
* http://www.troll.no/
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
#include "kcmsambastatistics.h"
|
|
#include "moc_kcmsambastatistics.cpp"
|
|
|
|
#include <QApplication>
|
|
#include <QLayout>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QCheckBox>
|
|
#include <QComboBox>
|
|
#include <QPushButton>
|
|
#include <QRegExp>
|
|
#include <QTreeWidget>
|
|
|
|
#include <KDebug>
|
|
#include <KDialog>
|
|
#include <KGlobal>
|
|
#include <KLocale>
|
|
|
|
StatisticsView::StatisticsView(QWidget *parent, KConfig *config) :
|
|
QWidget(parent), configFile(config), dataList(0), connectionsCount(0), filesCount(0), calcCount(0) {
|
|
viewStatistics = new QTreeWidget( this );
|
|
connectionsL = new QLabel( i18n( "Connections: 0" ), this );
|
|
connectionsL->setTextInteractionFlags(Qt::TextSelectableByMouse);
|
|
filesL = new QLabel( i18n( "File accesses: 0" ), this );
|
|
filesL->setTextInteractionFlags(Qt::TextSelectableByMouse);
|
|
eventCb = new QComboBox( this );
|
|
eventL = new QLabel( i18n( "Event: " ), this );
|
|
eventL->setTextInteractionFlags(Qt::TextSelectableByMouse);
|
|
eventL->setBuddy(eventCb);
|
|
serviceLe = new QLineEdit( this );
|
|
serviceL = new QLabel( i18n( "Service/File:" ), this );
|
|
serviceL->setTextInteractionFlags(Qt::TextSelectableByMouse);
|
|
serviceL->setBuddy(serviceLe);
|
|
hostLe = new QLineEdit( this );
|
|
hostL = new QLabel( i18n( "Host/User:" ), this );
|
|
hostL->setTextInteractionFlags(Qt::TextSelectableByMouse);
|
|
hostL->setBuddy(hostLe);
|
|
calcButton = new QPushButton( i18n( "&Search" ), this );
|
|
clearButton = new QPushButton( i18n( "Clear Results" ), this );
|
|
expandedInfoCb = new QCheckBox( i18n( "Show expanded service info" ), this );
|
|
expandedUserCb = new QCheckBox( i18n( "Show expanded host info" ), this );
|
|
|
|
viewStatistics->setAllColumnsShowFocus(true);
|
|
viewStatistics->setFocusPolicy(Qt::ClickFocus);
|
|
|
|
QStringList headers;
|
|
headers << i18n("Nr") << i18n("Event") << i18n("Service/File") << i18n("Host/User") << i18n("Hits"); //i18n("Percentage"),100);
|
|
viewStatistics->setHeaderLabels(headers);
|
|
|
|
eventCb->setEditable(false);
|
|
eventCb->addItem(i18n("Connection"));
|
|
eventCb->addItem(i18n("File Access"));
|
|
|
|
expandedInfoCb->setChecked(false);
|
|
expandedUserCb->setChecked(false);
|
|
clearStatistics();
|
|
serviceLe->setText("*");
|
|
hostLe->setText("*");
|
|
|
|
viewStatistics->setMinimumSize(375, 200);
|
|
connectionsL->setMinimumSize(connectionsL->sizeHint());
|
|
filesL->setMinimumSize(filesL->sizeHint());
|
|
eventL->setMinimumSize(eventL->sizeHint());
|
|
eventCb->setMinimumSize(eventCb->sizeHint());
|
|
hostL->setMinimumSize(hostL->sizeHint());
|
|
hostLe->setMinimumSize(120, hostLe->sizeHint().height());
|
|
serviceL->setMinimumSize(serviceL->sizeHint());
|
|
serviceLe->setMinimumSize(120, serviceLe->sizeHint().height());
|
|
calcButton->setMinimumSize(calcButton->sizeHint());
|
|
clearButton->setMinimumSize(clearButton->sizeHint());
|
|
expandedInfoCb->setMinimumSize(expandedInfoCb->sizeHint());
|
|
expandedUserCb->setMinimumSize(expandedUserCb->sizeHint());
|
|
|
|
QVBoxLayout *topLayout=new QVBoxLayout(this);
|
|
topLayout->setMargin(KDialog::marginHint());
|
|
topLayout->setSpacing(KDialog::spacingHint());
|
|
topLayout->addWidget(viewStatistics, 1);
|
|
QGridLayout *subLayout=new QGridLayout();
|
|
topLayout->addItem(subLayout);
|
|
subLayout->setColumnStretch(1, 1);
|
|
subLayout->setColumnStretch(2, 1);
|
|
|
|
QHBoxLayout *twoButtonsLayout=new QHBoxLayout;
|
|
twoButtonsLayout->addWidget(calcButton, 1);
|
|
twoButtonsLayout->addWidget(clearButton, 1);
|
|
|
|
subLayout->addWidget(connectionsL, 0, 0);
|
|
subLayout->addWidget(filesL, 0, 1);
|
|
subLayout->addWidget(eventL, 1, 0);
|
|
subLayout->addWidget(serviceL, 1, 1);
|
|
subLayout->addWidget(hostL, 1, 2);
|
|
subLayout->addWidget(eventCb, 2, 0);
|
|
subLayout->addWidget(serviceLe, 2, 1);
|
|
subLayout->addWidget(hostLe, 2, 2);
|
|
subLayout->addLayout(twoButtonsLayout, 3, 0);
|
|
subLayout->addWidget(expandedInfoCb, 3, 1);
|
|
subLayout->addWidget(expandedUserCb, 3, 2);
|
|
|
|
connect(clearButton, SIGNAL(clicked()), this, SLOT(clearStatistics()));
|
|
connect(calcButton, SIGNAL(clicked()), this, SLOT(calculate()));
|
|
setListInfo(0, 0, 0);
|
|
}
|
|
|
|
void StatisticsView::setListInfo(QTreeWidget *list, int nrOfFiles, int nrOfConnections) {
|
|
dataList=list;
|
|
filesCount=nrOfFiles;
|
|
connectionsCount=nrOfConnections;
|
|
connectionsL->setText(i18n("Connections: %1", KGlobal::locale()->formatNumber(connectionsCount, 0)));
|
|
filesL->setText(i18n("File accesses: %1", KGlobal::locale()->formatNumber(filesCount, 0)));
|
|
clearStatistics();
|
|
}
|
|
|
|
void StatisticsView::calculate() {
|
|
if (dataList==0)
|
|
return;
|
|
QApplication::setOverrideCursor(Qt::WaitCursor);
|
|
int connCount(0);
|
|
if (eventCb->currentText()==i18n("Connection"))
|
|
connCount=1;
|
|
//something has to be counted exactly
|
|
if ((expandedInfoCb->isChecked()) || (expandedUserCb->isChecked())) {
|
|
SambaLog sLog;
|
|
QRegExp rService(serviceLe->text(), Qt::CaseInsensitive, QRegExp::Wildcard);
|
|
QRegExp rHost(hostLe->text(), Qt::CaseInsensitive, QRegExp::Wildcard);
|
|
QString item2, item3;
|
|
for (int i = 0; i < dataList->topLevelItemCount(); ++i)
|
|
{
|
|
QTreeWidgetItem *item = dataList->topLevelItem(i);
|
|
if (connCount) {
|
|
if ((QString(item->text(1)).contains(i18n("CONNECTION OPENED"))) && (QString(item->text(2)).contains(rService)) && (QString(item->text(3)).contains(rHost))) {
|
|
if (expandedInfoCb->isChecked())
|
|
item2=item->text(2);
|
|
else
|
|
item2=serviceLe->text();
|
|
if (expandedUserCb->isChecked())
|
|
item3=item->text(3);
|
|
else
|
|
item3=hostLe->text();
|
|
sLog.addItem(item2, item3);
|
|
//count++;
|
|
}
|
|
} else {
|
|
if ((QString(item->text(1)).contains(i18n("FILE OPENED"))) && (QString(item->text(2)).contains(rService)) && (QString(item->text(3)).contains(rHost))) {
|
|
if (expandedInfoCb->isChecked())
|
|
item2=item->text(2);
|
|
else
|
|
item2=serviceLe->text();
|
|
if (expandedUserCb->isChecked())
|
|
item3=item->text(3);
|
|
else
|
|
item3=hostLe->text();
|
|
sLog.addItem(item2, item3);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
foreach (const LogItem *tmpItem, sLog.items)
|
|
{
|
|
if (!tmpItem)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
foreach (const SmallLogItem *tmpStr, tmpItem->accessed) {
|
|
if (!tmpStr)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
calcCount++;
|
|
QString number("");
|
|
number.sprintf("%6d", calcCount);
|
|
QString hits("");
|
|
hits.sprintf("%7d", tmpStr->count);
|
|
QTreeWidgetItem *item = new QTreeWidgetItem(viewStatistics);
|
|
item->setText(0, number);
|
|
item->setText(1, eventCb->currentText());
|
|
item->setText(2, tmpItem->name);
|
|
item->setText(3, tmpStr->name);
|
|
item->setText(4, hits);
|
|
}
|
|
}
|
|
}
|
|
//no expanded info needed
|
|
else {
|
|
calcCount++;
|
|
int count(0);
|
|
QRegExp rService(serviceLe->text(), Qt::CaseInsensitive, QRegExp::Wildcard);
|
|
QRegExp rHost(hostLe->text(), Qt::CaseInsensitive, QRegExp::Wildcard);
|
|
for (int i = 0; i < dataList->topLevelItemCount(); ++i)
|
|
{
|
|
QTreeWidgetItem *item = dataList->topLevelItem(i);
|
|
if (connCount) {
|
|
if ((QString(item->text(1)).contains(i18n("CONNECTION OPENED"))) && (QString(item->text(2)).contains(rService)) && (QString(item->text(3)).contains(rHost)))
|
|
count++;
|
|
} else {
|
|
if ((QString(item->text(1)).contains(i18n("FILE OPENED"))) && (QString(item->text(2)).contains(rService)) && (QString(item->text(3)).contains(rHost)))
|
|
count++;
|
|
}
|
|
}
|
|
QString number("");
|
|
number.sprintf("%6d", calcCount);
|
|
QString hits("");
|
|
hits.sprintf("%7d", count);
|
|
QTreeWidgetItem *item = new QTreeWidgetItem(viewStatistics);
|
|
item->setText(0, number);
|
|
item->setText(1, eventCb->currentText());
|
|
item->setText(2, serviceLe->text());
|
|
item->setText(3, hostLe->text());
|
|
item->setText(4, hits);
|
|
};
|
|
QApplication::restoreOverrideCursor();
|
|
}
|
|
|
|
void StatisticsView::clearStatistics() {
|
|
viewStatistics->clear();
|
|
calcCount=0;
|
|
}
|
|
|
|
void SambaLog::printItems() {
|
|
kDebug() << "****** printing items: ******";
|
|
foreach (const LogItem *tmpItem, items)
|
|
{
|
|
if (!tmpItem)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
kDebug() << "SERVICE: " << tmpItem->name;
|
|
foreach (const SmallLogItem *tmpLog, tmpItem->accessed) {
|
|
if (!tmpLog)
|
|
{
|
|
continue;
|
|
}
|
|
kDebug() << " accessed by: " << tmpLog->name << " " << tmpLog->count;
|
|
}
|
|
}
|
|
|
|
kDebug() << "------ end of printing ------";
|
|
}
|
|
|
|
LogItem* SambaLog::itemInList(const QString &name) {
|
|
foreach (LogItem *tmpItem, items)
|
|
{
|
|
if (!tmpItem)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (tmpItem->name==name)
|
|
{
|
|
return tmpItem;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void SambaLog::addItem(const QString &share, const QString &user) {
|
|
//cout<<" adding connection: -"<<share<<"- -"<<user<<"-"<<endl;
|
|
LogItem* tmp(itemInList(share));
|
|
if (tmp!=0) {
|
|
tmp->count++;
|
|
tmp->addItem(user);
|
|
} else {
|
|
items.append(new LogItem(share,user));
|
|
};
|
|
}
|
|
|
|
SmallLogItem* LogItem::itemInList(const QString &name) {
|
|
foreach (SmallLogItem *tmpLog, accessed) {
|
|
if (tmpLog && tmpLog->name==name) {
|
|
return tmpLog;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void LogItem::addItem(const QString &host) {
|
|
SmallLogItem* tmp(itemInList(host));
|
|
if (tmp!=0)
|
|
tmp->count++;
|
|
else
|
|
accessed.append(new SmallLogItem(host));
|
|
}
|
|
|