mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-27 19:45:43 +03:00
147 lines
2.3 KiB
C++
147 lines
2.3 KiB
C++
#ifndef TYPESDATASERVERCLIENT_H
|
||
#define TYPESDATASERVERCLIENT_H
|
||
|
||
#include <QList>
|
||
#include <QString>
|
||
#include "typeQueryToDB.h"
|
||
|
||
#define NOTIFY_SERVER_END "END"
|
||
#define NOTIFY_SERVER_BLOCKED "BLOCKED"
|
||
#define SERVER_HELLO "NewConnection. I am server LMS!"
|
||
|
||
enum EStateServer{started, stoped};
|
||
enum EStateBlockAutorization{blocked, unblocked};
|
||
|
||
struct FileData
|
||
{
|
||
QString path;
|
||
QString hash;
|
||
|
||
bool operator==(const FileData& other)const
|
||
{
|
||
if (this->path== other.path && this->hash == other.hash) return true;
|
||
return false;
|
||
}
|
||
|
||
bool operator<(const FileData& data2) const
|
||
{
|
||
return this->hash == "FOLDER" && data2.hash !="FOLDER";
|
||
}
|
||
|
||
};
|
||
|
||
struct SAttribute
|
||
{
|
||
QString name;
|
||
QString value;
|
||
|
||
};
|
||
|
||
struct SXmlAnswerTag
|
||
{
|
||
QString elementName;
|
||
QList<SAttribute> attr;
|
||
};
|
||
|
||
enum TypeClientAutorization{
|
||
TYPE_SIMPLE = 0,
|
||
TYPE_GUI = 10
|
||
};
|
||
|
||
enum UserType
|
||
{
|
||
INSTRUCTOR,
|
||
TRAINEE
|
||
};
|
||
|
||
class ClientAutorization
|
||
{
|
||
public:
|
||
QString Login;
|
||
QString Password;
|
||
int NumberOfScreen;
|
||
TypeClientAutorization TypeClient;
|
||
};
|
||
class ClientDeAutorization
|
||
{
|
||
public:
|
||
QString Login;
|
||
};
|
||
/*
|
||
enum TypeQueryToDB{
|
||
TYPE_QUERY_GET_ALL_LISTS,
|
||
TYPE_QUERY_NEW_INSTRUCTOR,
|
||
TYPE_QUERY_DEL_INSTRUCTOR,
|
||
TYPE_QUERY_EDIT_INSTRUCTOR,
|
||
TYPE_QUERY_NEW_GROUP,
|
||
TYPE_QUERY_DEL_GROUP,
|
||
TYPE_QUERY_EDIT_GROUP,
|
||
TYPE_QUERY_NEW_TRAINEE,
|
||
TYPE_QUERY_DEL_TRAINEE,
|
||
TYPE_QUERY_EDIT_TRAINEE,
|
||
TYPE_QUERY_ASSIGN_TASK_AMM_TO_TRAINEE,
|
||
TYPE_QUERY_ASSIGN_TASK_FIM_TO_TRAINEE
|
||
};
|
||
*/
|
||
|
||
class ClientQueryToDB{
|
||
public:
|
||
TypeQueryToDB typeQuery;
|
||
};
|
||
|
||
class ClientQueryTasksXML
|
||
{
|
||
public:
|
||
QString Type;
|
||
};
|
||
|
||
class ServerMessage
|
||
{
|
||
public:
|
||
QString Text;
|
||
};
|
||
|
||
class ClientMessage
|
||
{
|
||
public:
|
||
QString From;
|
||
QString To;
|
||
QString Text;
|
||
QString Type; //ТИП ЮЗЕРА К КОТОРОМУ ПРИХОДИТ СООБЩЕНИЕ
|
||
|
||
ClientMessage(){}
|
||
ClientMessage(QString from,QString to,QString text,QString userType)
|
||
{
|
||
From = from;
|
||
To = to;
|
||
Text = text;
|
||
Type = userType;
|
||
}
|
||
};
|
||
|
||
class ServerTask
|
||
{
|
||
public:
|
||
QString Text;
|
||
};
|
||
|
||
class ServerNotify
|
||
{
|
||
public:
|
||
QString Code;
|
||
};
|
||
|
||
class ClientNotify
|
||
{
|
||
public:
|
||
QString Code;
|
||
};
|
||
|
||
class DataInfo{
|
||
public:
|
||
QString path;
|
||
quint64 size;
|
||
};
|
||
|
||
#endif // TYPESDATASERVERCLIENT_H
|