2013-01-23 11:41:13 +01:00
|
|
|
/******************************************************************************\
|
2020-01-01 15:41:43 +01:00
|
|
|
* Copyright (c) 2004-2020
|
2013-01-23 11:41:13 +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.,
|
2020-06-08 22:58:11 +02:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
2013-01-23 11:41:13 +01:00
|
|
|
*
|
|
|
|
\******************************************************************************/
|
|
|
|
|
2019-07-09 08:52:38 +02:00
|
|
|
#pragma once
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QHostAddress>
|
|
|
|
#include <QFile>
|
|
|
|
#include <QString>
|
|
|
|
#include <QTimer>
|
|
|
|
#include "global.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2019-05-26 20:00:09 +02:00
|
|
|
#include "historygraph.h"
|
2013-01-23 11:41:13 +01:00
|
|
|
|
|
|
|
/* Classes ********************************************************************/
|
|
|
|
class CServerLogging
|
|
|
|
{
|
|
|
|
public:
|
2020-03-22 20:24:30 +01:00
|
|
|
CServerLogging ( const int iMaxDaysHistory ) :
|
2020-06-03 07:10:50 +02:00
|
|
|
#ifndef HEADLESS
|
2020-03-22 20:24:30 +01:00
|
|
|
JpegHistoryGraph ( iMaxDaysHistory ),
|
2020-06-03 07:10:50 +02:00
|
|
|
#endif
|
2020-03-22 20:24:30 +01:00
|
|
|
SvgHistoryGraph ( iMaxDaysHistory ),
|
|
|
|
bDoLogging ( false ),
|
|
|
|
File ( DEFAULT_LOG_FILE_NAME ) {}
|
2020-03-21 19:57:18 +01:00
|
|
|
|
2013-01-23 11:41:13 +01:00
|
|
|
virtual ~CServerLogging();
|
|
|
|
|
|
|
|
void Start ( const QString& strLoggingFileName );
|
|
|
|
void EnableHistory ( const QString& strHistoryFileName );
|
|
|
|
void AddNewConnection ( const QHostAddress& ClientInetAddr );
|
|
|
|
void AddServerStopped();
|
|
|
|
void ParseLogFile ( const QString& strFileName );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void operator<< ( const QString& sNewStr );
|
|
|
|
QString CurTimeDatetoLogString();
|
|
|
|
|
2020-06-03 07:10:50 +02:00
|
|
|
#ifndef HEADLESS
|
2019-05-20 21:00:09 +02:00
|
|
|
CJpegHistoryGraph JpegHistoryGraph;
|
2020-06-03 07:10:50 +02:00
|
|
|
#endif
|
2019-05-20 21:00:09 +02:00
|
|
|
CSvgHistoryGraph SvgHistoryGraph;
|
|
|
|
bool bDoLogging;
|
|
|
|
QFile File;
|
2013-01-23 11:41:13 +01:00
|
|
|
};
|