first ever received and cached client data!
This commit is contained in:
parent
037dabbe06
commit
c50cd1140e
11 changed files with 297 additions and 60 deletions
142
shared/identity.cpp
Normal file
142
shared/identity.cpp
Normal file
|
@ -0,0 +1,142 @@
|
|||
/*
|
||||
* Squawk messenger.
|
||||
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
||||
*
|
||||
* 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 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 General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "identity.h"
|
||||
|
||||
Shared::Identity::Identity():
|
||||
category(),
|
||||
type(),
|
||||
language(),
|
||||
name() {}
|
||||
|
||||
bool Shared::Identity::operator==(const Shared::Identity& other) const {
|
||||
return category == other.category && type == other.type && language == other.language && name == other.name;
|
||||
}
|
||||
|
||||
bool Shared::Identity::operator!=(const Shared::Identity& other) const {
|
||||
return category != other.category || type != other.type || language != other.language || name != other.name;
|
||||
}
|
||||
|
||||
bool Shared::Identity::operator > (const Shared::Identity& other) const {
|
||||
if (category > other.category) {
|
||||
return true;
|
||||
} else if (category < other.category) {
|
||||
return false;
|
||||
} else if (type > other.type) {
|
||||
return true;
|
||||
} else if (type < other.type) {
|
||||
return false;
|
||||
} else if (language > other.language) {
|
||||
return true;
|
||||
} else if (language < other.language) {
|
||||
return false;
|
||||
} else if (name > other.name) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool Shared::Identity::operator < (const Shared::Identity& other) const {
|
||||
if (category < other.category) {
|
||||
return true;
|
||||
} else if (category > other.category) {
|
||||
return false;
|
||||
} else if (type < other.type) {
|
||||
return true;
|
||||
} else if (type > other.type) {
|
||||
return false;
|
||||
} else if (language < other.language) {
|
||||
return true;
|
||||
} else if (language > other.language) {
|
||||
return false;
|
||||
} else if (name < other.name) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
bool Shared::Identity::operator >= (const Shared::Identity& other) const {
|
||||
if (category > other.category) {
|
||||
return true;
|
||||
} else if (category < other.category) {
|
||||
return false;
|
||||
} else if (type > other.type) {
|
||||
return true;
|
||||
} else if (type < other.type) {
|
||||
return false;
|
||||
} else if (language > other.language) {
|
||||
return true;
|
||||
} else if (language < other.language) {
|
||||
return false;
|
||||
} else if (name > other.name) {
|
||||
return true;
|
||||
} else if (name < other.name) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
bool Shared::Identity::operator <= (const Shared::Identity& other) const {
|
||||
if (category < other.category) {
|
||||
return true;
|
||||
} else if (category > other.category) {
|
||||
return false;
|
||||
} else if (type < other.type) {
|
||||
return true;
|
||||
} else if (type > other.type) {
|
||||
return false;
|
||||
} else if (language < other.language) {
|
||||
return true;
|
||||
} else if (language > other.language) {
|
||||
return false;
|
||||
} else if (name < other.name) {
|
||||
return true;
|
||||
} else if (name > other.name) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
QDataStream & Shared::Identity::operator >> (QDataStream& stream) const {
|
||||
stream << category;
|
||||
stream << type;
|
||||
stream << language;
|
||||
stream << name;
|
||||
}
|
||||
|
||||
QDataStream & Shared::Identity::operator << (QDataStream& stream) {
|
||||
stream >> category;
|
||||
stream >> type;
|
||||
stream >> language;
|
||||
stream >> name;
|
||||
}
|
||||
|
||||
QDataStream & operator >> (QDataStream& stream, Shared::Identity& identity) {
|
||||
identity << stream;
|
||||
return stream;
|
||||
}
|
||||
|
||||
QDataStream & operator << (QDataStream& stream, const Shared::Identity& identity) {
|
||||
identity >> stream;
|
||||
return stream;
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue