Setup basic strcuture
Welcome to the ride. You may witness me slowly loosing my sanity on this.
This commit is contained in:
parent
01fcb51155
commit
860af5af82
@ -46,7 +46,11 @@ SOURCES += \
|
||||
src/testimony_recorder.cpp \
|
||||
src/ws_client.cpp \
|
||||
src/ws_proxy.cpp \
|
||||
src/http_advertiser.cpp
|
||||
src/http_advertiser.cpp \
|
||||
src/logger/u_logger.cpp \
|
||||
src/logger/writer_modcall.cpp \
|
||||
src/logger/writer_full.cpp \
|
||||
src/logger/writer_sql.cpp
|
||||
|
||||
HEADERS += include/advertiser.h \
|
||||
include/aoclient.h \
|
||||
@ -60,4 +64,9 @@ HEADERS += include/advertiser.h \
|
||||
include/server.h \
|
||||
include/ws_client.h \
|
||||
include/ws_proxy.h \
|
||||
include/http_advertiser.h
|
||||
include/http_advertiser.h \
|
||||
include/logger/u_logger.h \
|
||||
include/logger/u_logger_datatypes.h \
|
||||
include/logger/writer_modcall.h \
|
||||
include/logger/writer_full.h \
|
||||
include/logger/writer_sql.h
|
||||
|
31
core/include/logger/u_logger.h
Normal file
31
core/include/logger/u_logger.h
Normal file
@ -0,0 +1,31 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef U_LOGGER_H
|
||||
#define U_LOGGER_H
|
||||
#include <QObject>
|
||||
|
||||
class ULogger : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ULogger(QObject* parent = nullptr);
|
||||
virtual ~ULogger();
|
||||
|
||||
};
|
||||
|
||||
#endif //U_LOGGER_H
|
52
core/include/logger/u_logger_datatypes.h
Normal file
52
core/include/logger/u_logger_datatypes.h
Normal file
@ -0,0 +1,52 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef U_LOGGER_DATATYPES_H
|
||||
#define U_LOGGER_DATATYPES_H
|
||||
|
||||
#include <QString>
|
||||
#include "include/area_data.h"
|
||||
|
||||
class MessageLog {
|
||||
public:
|
||||
|
||||
explicit MessageLog();
|
||||
struct m_content {
|
||||
QString charname;
|
||||
QString oocname;
|
||||
int charID;
|
||||
QString IPID;
|
||||
QString HDID;
|
||||
QString message;
|
||||
AreaData* area;
|
||||
};
|
||||
};
|
||||
|
||||
class ModerativeLog {
|
||||
public:
|
||||
explicit ModerativeLog();
|
||||
struct m_content {
|
||||
QString moderatorName;
|
||||
QString ipid;
|
||||
QString hdid;
|
||||
QString targetName;
|
||||
QString targetOOCName;
|
||||
AreaData* area;
|
||||
};
|
||||
};
|
||||
|
||||
#endif // U_LOGGER_DATATYPES_H
|
31
core/include/logger/writer_full.h
Normal file
31
core/include/logger/writer_full.h
Normal file
@ -0,0 +1,31 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef WRITER_FULL_H
|
||||
#define WRITER_FULL_H
|
||||
#include <QObject>
|
||||
|
||||
class WriterFull : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
WriterFull(QObject* parent = nullptr);;
|
||||
virtual ~WriterFull() {}
|
||||
|
||||
};
|
||||
|
||||
#endif //WRITER_FULL_H
|
32
core/include/logger/writer_modcall.h
Normal file
32
core/include/logger/writer_modcall.h
Normal file
@ -0,0 +1,32 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef WRITER_MODCALL_H
|
||||
#define WRITER_MODCALL_H
|
||||
#include <QObject>
|
||||
|
||||
class WriterModcall : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
WriterModcall(QObject* parent = nullptr);;
|
||||
virtual ~WriterModcall() {}
|
||||
|
||||
};
|
||||
|
||||
|
||||
#endif //WRITER_MODCALL_H
|
31
core/include/logger/writer_sql.h
Normal file
31
core/include/logger/writer_sql.h
Normal file
@ -0,0 +1,31 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#ifndef WRITER_SQL_H
|
||||
#define WRITER_SQL_H
|
||||
#include <QObject>
|
||||
|
||||
class WriterSQL : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
WriterSQL(QObject* parent = nullptr);;
|
||||
virtual ~WriterSQL() {}
|
||||
|
||||
};
|
||||
|
||||
#endif //WRITER_SQL_H
|
24
core/src/logger/u_logger.cpp
Normal file
24
core/src/logger/u_logger.cpp
Normal file
@ -0,0 +1,24 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#include "include/logger/u_logger.h"
|
||||
|
||||
ULogger::ULogger(QObject* parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
|
||||
}
|
24
core/src/logger/writer_full.cpp
Normal file
24
core/src/logger/writer_full.cpp
Normal file
@ -0,0 +1,24 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#include "include/logger/writer_full.h"
|
||||
|
||||
WriterFull::WriterFull(QObject* parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
|
||||
};
|
24
core/src/logger/writer_modcall.cpp
Normal file
24
core/src/logger/writer_modcall.cpp
Normal file
@ -0,0 +1,24 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#include "include/logger/writer_modcall.h"
|
||||
|
||||
WriterModcall::WriterModcall(QObject* parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
|
||||
};
|
24
core/src/logger/writer_sql.cpp
Normal file
24
core/src/logger/writer_sql.cpp
Normal file
@ -0,0 +1,24 @@
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
// akashi - a server for Attorney Online 2 //
|
||||
// Copyright (C) 2020 scatterflower //
|
||||
// //
|
||||
// This program is free software: you can redistribute it and/or modify //
|
||||
// it under the terms of the GNU Affero General Public License as //
|
||||
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. //
|
||||
// //
|
||||
// You should have received a copy of the GNU Affero General Public License //
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>. //
|
||||
//////////////////////////////////////////////////////////////////////////////////////
|
||||
#include "include/logger/writer_sql.h"
|
||||
|
||||
WriterSQL::WriterSQL(QObject* parent) :
|
||||
QObject(parent)
|
||||
{
|
||||
|
||||
};
|
Loading…
Reference in New Issue
Block a user