2013-01-23 11:41:13 +01:00
|
|
|
/******************************************************************************\
|
2019-03-24 09:30:30 +01:00
|
|
|
* Copyright (c) 2004-2019
|
2014-01-05 17:52:38 +01:00
|
|
|
*
|
|
|
|
* Author(s):
|
|
|
|
* Volker Fischer
|
|
|
|
*
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
2013-01-23 11:41:13 +01:00
|
|
|
\******************************************************************************/
|
|
|
|
|
|
|
|
#include "serverlogging.h"
|
|
|
|
|
|
|
|
// Server logging --------------------------------------------------------------
|
|
|
|
CServerLogging::~CServerLogging()
|
|
|
|
{
|
|
|
|
// close logging file of open
|
|
|
|
if ( File.isOpen() )
|
|
|
|
{
|
|
|
|
File.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerLogging::Start ( const QString& strLoggingFileName )
|
|
|
|
{
|
|
|
|
// open file
|
|
|
|
File.setFileName ( strLoggingFileName );
|
|
|
|
if ( File.open ( QIODevice::Append | QIODevice::Text ) )
|
|
|
|
{
|
|
|
|
bDoLogging = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerLogging::EnableHistory ( const QString& strHistoryFileName )
|
|
|
|
{
|
2019-05-19 09:30:49 +02:00
|
|
|
if ( strHistoryFileName.right(4).compare(".svg", Qt::CaseInsensitive) == 0 )
|
|
|
|
{
|
|
|
|
SvgHistoryGraph.Start ( strHistoryFileName );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-05-20 21:00:09 +02:00
|
|
|
JpegHistoryGraph.Start ( strHistoryFileName );
|
2019-05-19 09:30:49 +02:00
|
|
|
}
|
2013-01-23 11:41:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CServerLogging::AddNewConnection ( const QHostAddress& ClientInetAddr )
|
|
|
|
{
|
|
|
|
// logging of new connected channel
|
|
|
|
const QString strLogStr = CurTimeDatetoLogString() + ", " +
|
|
|
|
ClientInetAddr.toString() + ", connected";
|
|
|
|
|
2019-05-19 09:30:49 +02:00
|
|
|
QTextStream& tsConsoleStream = *( ( new ConsoleWriterFactory() )->get() );
|
2013-01-23 11:41:13 +01:00
|
|
|
tsConsoleStream << strLogStr << endl; // on console
|
|
|
|
*this << strLogStr; // in log file
|
|
|
|
|
|
|
|
// add element to history
|
2019-05-20 21:00:09 +02:00
|
|
|
JpegHistoryGraph.Add ( QDateTime::currentDateTime(), ClientInetAddr );
|
2019-05-19 09:30:49 +02:00
|
|
|
SvgHistoryGraph.Add ( QDateTime::currentDateTime(), ClientInetAddr );
|
2013-01-23 11:41:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CServerLogging::AddServerStopped()
|
|
|
|
{
|
|
|
|
const QString strLogStr = CurTimeDatetoLogString() + ",, server stopped "
|
|
|
|
"-------------------------------------";
|
|
|
|
|
2019-05-19 09:30:49 +02:00
|
|
|
QTextStream& tsConsoleStream = *( ( new ConsoleWriterFactory() )->get() );
|
2013-01-23 11:41:13 +01:00
|
|
|
tsConsoleStream << strLogStr << endl; // on console
|
|
|
|
*this << strLogStr; // in log file
|
|
|
|
|
|
|
|
// add element to history and update on server stop
|
2019-05-20 21:00:09 +02:00
|
|
|
JpegHistoryGraph.Add ( QDateTime::currentDateTime(), CJpegHistoryGraph::HIT_SERVER_STOP );
|
|
|
|
SvgHistoryGraph.Add ( QDateTime::currentDateTime(), CJpegHistoryGraph::HIT_SERVER_STOP );
|
2013-01-23 11:41:13 +01:00
|
|
|
|
2019-05-20 21:00:09 +02:00
|
|
|
JpegHistoryGraph.Update();
|
2019-05-19 09:30:49 +02:00
|
|
|
SvgHistoryGraph.Update();
|
2013-01-23 11:41:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CServerLogging::operator<< ( const QString& sNewStr )
|
|
|
|
{
|
|
|
|
if ( bDoLogging )
|
|
|
|
{
|
|
|
|
// append new line in logging file
|
|
|
|
QTextStream out ( &File );
|
|
|
|
out << sNewStr << endl;
|
|
|
|
File.flush();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CServerLogging::ParseLogFile ( const QString& strFileName )
|
|
|
|
{
|
|
|
|
// open file for reading
|
|
|
|
QFile LogFile ( strFileName );
|
|
|
|
LogFile.open ( QIODevice::ReadOnly | QIODevice::Text );
|
|
|
|
|
|
|
|
QTextStream inStream ( &LogFile );
|
|
|
|
|
|
|
|
// read all content from file
|
|
|
|
while ( !inStream.atEnd() )
|
|
|
|
{
|
|
|
|
// get a new line from log file
|
|
|
|
QString strCurLine = inStream.readLine();
|
|
|
|
|
|
|
|
// parse log file line
|
|
|
|
QStringList strlistCurLine = strCurLine.split( "," );
|
|
|
|
|
|
|
|
// check number of separated strings condition
|
|
|
|
if ( strlistCurLine.size() == 4 )
|
|
|
|
{
|
|
|
|
// first entry
|
|
|
|
QDate curDate =
|
|
|
|
QDate::fromString ( strlistCurLine.at ( 0 ).trimmed(),
|
|
|
|
"d.M.yyyy" );
|
|
|
|
|
|
|
|
// second entry
|
|
|
|
QTime curTime =
|
|
|
|
QTime::fromString ( strlistCurLine.at ( 1 ).trimmed(),
|
|
|
|
"hh:mm:ss" );
|
|
|
|
|
|
|
|
if ( curDate.isValid() && curTime.isValid() )
|
|
|
|
{
|
|
|
|
QDateTime curDateTime ( curDate, curTime );
|
|
|
|
|
|
|
|
// check if server stop or new client connection
|
|
|
|
QString strAddress = strlistCurLine.at ( 2 ).trimmed();
|
|
|
|
if ( strAddress.isEmpty() )
|
|
|
|
{
|
|
|
|
// server stop
|
2019-05-20 21:00:09 +02:00
|
|
|
JpegHistoryGraph.Add ( curDateTime, CJpegHistoryGraph::HIT_SERVER_STOP );
|
|
|
|
SvgHistoryGraph.Add ( curDateTime, CJpegHistoryGraph::HIT_SERVER_STOP );
|
2013-01-23 11:41:13 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QHostAddress curAddress;
|
|
|
|
|
|
|
|
// third entry is IP address
|
|
|
|
if ( curAddress.setAddress ( strlistCurLine.at ( 2 ).trimmed() ) )
|
|
|
|
{
|
|
|
|
// new client connection
|
2019-05-20 21:00:09 +02:00
|
|
|
JpegHistoryGraph.Add ( curDateTime, curAddress );
|
2019-05-19 09:30:49 +02:00
|
|
|
SvgHistoryGraph.Add ( curDateTime, curAddress );
|
2013-01-23 11:41:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-20 21:00:09 +02:00
|
|
|
JpegHistoryGraph.Update();
|
2019-05-19 09:30:49 +02:00
|
|
|
SvgHistoryGraph.Update();
|
2013-01-23 11:41:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString CServerLogging::CurTimeDatetoLogString()
|
|
|
|
{
|
|
|
|
// time and date to string conversion
|
|
|
|
const QDateTime curDateTime = QDateTime::currentDateTime();
|
|
|
|
|
|
|
|
// format date and time output according to "3.9.2006, 11:38:08"
|
|
|
|
return QString().setNum ( curDateTime.date().day() ) + "." +
|
|
|
|
QString().setNum ( curDateTime.date().month() ) + "." +
|
|
|
|
QString().setNum ( curDateTime.date().year() ) + ", " +
|
|
|
|
curDateTime.time().toString();
|
|
|
|
}
|