forked from blue/squawk
stanzaId based muc archive request, account object refactoring
This commit is contained in:
parent
9ca4aa29d4
commit
6b65910ded
142
core/account.cpp
142
core/account.cpp
@ -19,7 +19,6 @@
|
|||||||
#include "account.h"
|
#include "account.h"
|
||||||
#include <QXmppMessage.h>
|
#include <QXmppMessage.h>
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
#include <QTimer>
|
|
||||||
|
|
||||||
using namespace Core;
|
using namespace Core;
|
||||||
|
|
||||||
@ -43,8 +42,8 @@ Account::Account(const QString& p_login, const QString& p_server, const QString&
|
|||||||
rcpm(new QXmppMessageReceiptManager()),
|
rcpm(new QXmppMessageReceiptManager()),
|
||||||
contacts(),
|
contacts(),
|
||||||
conferences(),
|
conferences(),
|
||||||
maxReconnectTimes(0),
|
reconnectScheduled(false),
|
||||||
reconnectTimes(0),
|
reconnectTimer(new QTimer),
|
||||||
queuedContacts(),
|
queuedContacts(),
|
||||||
outOfRosterContacts(),
|
outOfRosterContacts(),
|
||||||
pendingMessages(),
|
pendingMessages(),
|
||||||
@ -62,8 +61,7 @@ Account::Account(const QString& p_login, const QString& p_server, const QString&
|
|||||||
config.setAutoAcceptSubscriptions(true);
|
config.setAutoAcceptSubscriptions(true);
|
||||||
//config.setAutoReconnectionEnabled(false);
|
//config.setAutoReconnectionEnabled(false);
|
||||||
|
|
||||||
QObject::connect(&client, &QXmppClient::connected, this, &Account::onClientConnected);
|
QObject::connect(&client, &QXmppClient::stateChanged, this, &Account::onClientStateChange);
|
||||||
QObject::connect(&client, &QXmppClient::disconnected, this, &Account::onClientDisconnected);
|
|
||||||
QObject::connect(&client, &QXmppClient::presenceReceived, this, &Account::onPresenceReceived);
|
QObject::connect(&client, &QXmppClient::presenceReceived, this, &Account::onPresenceReceived);
|
||||||
QObject::connect(&client, &QXmppClient::messageReceived, mh, &MessageHandler::onMessageReceived);
|
QObject::connect(&client, &QXmppClient::messageReceived, mh, &MessageHandler::onMessageReceived);
|
||||||
QObject::connect(&client, &QXmppClient::error, this, &Account::onClientError);
|
QObject::connect(&client, &QXmppClient::error, this, &Account::onClientError);
|
||||||
@ -152,10 +150,26 @@ Account::Account(const QString& p_login, const QString& p_server, const QString&
|
|||||||
} else {
|
} else {
|
||||||
presence.setVCardUpdateType(QXmppPresence::VCardUpdateNotReady);
|
presence.setVCardUpdateType(QXmppPresence::VCardUpdateNotReady);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
reconnectTimer->setSingleShot(true);
|
||||||
|
QObject::connect(reconnectTimer, &QTimer::timeout, this, &Account::connect);
|
||||||
|
|
||||||
|
// QXmppLogger* logger = new QXmppLogger(this);
|
||||||
|
// logger->setLoggingType(QXmppLogger::SignalLogging);
|
||||||
|
// client.setLogger(logger);
|
||||||
|
//
|
||||||
|
// QObject::connect(logger, &QXmppLogger::message, this, [](QXmppLogger::MessageType type, const QString& text){
|
||||||
|
// qDebug() << text;
|
||||||
|
// });
|
||||||
}
|
}
|
||||||
|
|
||||||
Account::~Account()
|
Account::~Account()
|
||||||
{
|
{
|
||||||
|
if (reconnectScheduled) {
|
||||||
|
reconnectScheduled = false;
|
||||||
|
reconnectTimer->stop();
|
||||||
|
}
|
||||||
|
|
||||||
QObject::disconnect(network, &NetworkAccess::uploadFileComplete, mh, &MessageHandler::onFileUploaded);
|
QObject::disconnect(network, &NetworkAccess::uploadFileComplete, mh, &MessageHandler::onFileUploaded);
|
||||||
QObject::disconnect(network, &NetworkAccess::uploadFileError, mh, &MessageHandler::onFileUploadError);
|
QObject::disconnect(network, &NetworkAccess::uploadFileError, mh, &MessageHandler::onFileUploadError);
|
||||||
|
|
||||||
@ -167,6 +181,7 @@ Account::~Account()
|
|||||||
delete itr->second;
|
delete itr->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
delete reconnectTimer;
|
||||||
delete rcpm;
|
delete rcpm;
|
||||||
delete dm;
|
delete dm;
|
||||||
delete um;
|
delete um;
|
||||||
@ -184,10 +199,8 @@ Shared::ConnectionState Core::Account::getState() const
|
|||||||
void Core::Account::connect()
|
void Core::Account::connect()
|
||||||
{
|
{
|
||||||
if (state == Shared::ConnectionState::disconnected) {
|
if (state == Shared::ConnectionState::disconnected) {
|
||||||
reconnectTimes = maxReconnectTimes;
|
qDebug() << presence.availableStatusType();
|
||||||
state = Shared::ConnectionState::connecting;
|
|
||||||
client.connectToServer(config, presence);
|
client.connectToServer(config, presence);
|
||||||
emit connectionStateChanged(state);
|
|
||||||
} else {
|
} else {
|
||||||
qDebug("An attempt to connect an account which is already connected, skipping");
|
qDebug("An attempt to connect an account which is already connected, skipping");
|
||||||
}
|
}
|
||||||
@ -195,54 +208,63 @@ void Core::Account::connect()
|
|||||||
|
|
||||||
void Core::Account::disconnect()
|
void Core::Account::disconnect()
|
||||||
{
|
{
|
||||||
reconnectTimes = 0;
|
if (reconnectScheduled) {
|
||||||
|
reconnectScheduled = false;
|
||||||
|
reconnectTimer->stop();
|
||||||
|
}
|
||||||
if (state != Shared::ConnectionState::disconnected) {
|
if (state != Shared::ConnectionState::disconnected) {
|
||||||
clearConferences();
|
clearConferences();
|
||||||
client.disconnectFromServer();
|
client.disconnectFromServer();
|
||||||
state = Shared::ConnectionState::disconnected;
|
|
||||||
emit connectionStateChanged(state);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Core::Account::onClientConnected()
|
void Core::Account::onClientStateChange(QXmppClient::State st)
|
||||||
{
|
{
|
||||||
if (state == Shared::ConnectionState::connecting) {
|
switch (st) {
|
||||||
reconnectTimes = maxReconnectTimes;
|
case QXmppClient::ConnectedState: {
|
||||||
|
if (state != Shared::ConnectionState::connected) {
|
||||||
|
if (client.isActive()) {
|
||||||
|
Shared::ConnectionState os = state;
|
||||||
state = Shared::ConnectionState::connected;
|
state = Shared::ConnectionState::connected;
|
||||||
|
if (os == Shared::ConnectionState::connecting) {
|
||||||
dm->requestItems(getServer());
|
dm->requestItems(getServer());
|
||||||
dm->requestInfo(getServer());
|
dm->requestInfo(getServer());
|
||||||
emit connectionStateChanged(state);
|
|
||||||
} else {
|
|
||||||
qDebug() << "Something weird had happened - xmpp client reported about successful connection but account wasn't in" << state << "state";
|
|
||||||
}
|
}
|
||||||
}
|
emit connectionStateChanged(state);
|
||||||
|
}
|
||||||
void Core::Account::onClientDisconnected()
|
} else {
|
||||||
{
|
qDebug() << "Something weird happened - xmpp client of account" << name
|
||||||
|
<< "reported about successful connection but account was in" << state << "state";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case QXmppClient::ConnectingState: {
|
||||||
|
if (state != Shared::ConnectionState::connecting) {
|
||||||
|
state = Shared::ConnectionState::connecting;
|
||||||
|
emit connectionStateChanged(state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case QXmppClient::DisconnectedState: {
|
||||||
cancelHistoryRequests();
|
cancelHistoryRequests();
|
||||||
pendingVCardRequests.clear();
|
pendingVCardRequests.clear();
|
||||||
clearConferences();
|
|
||||||
if (state != Shared::ConnectionState::disconnected) {
|
if (state != Shared::ConnectionState::disconnected) {
|
||||||
if (reconnectTimes > 0) {
|
|
||||||
qDebug() << "Account" << name << "is reconnecting for" << reconnectTimes << "more times";
|
|
||||||
--reconnectTimes;
|
|
||||||
state = Shared::ConnectionState::connecting;
|
|
||||||
client.connectToServer(config, presence);
|
|
||||||
emit connectionStateChanged(state);
|
|
||||||
} else {
|
|
||||||
qDebug() << "Account" << name << "has been disconnected";
|
|
||||||
state = Shared::ConnectionState::disconnected;
|
state = Shared::ConnectionState::disconnected;
|
||||||
emit connectionStateChanged(state);
|
emit connectionStateChanged(state);
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
//qDebug("Something weird had happened - xmpp client reported about being disconnection but account was already in disconnected state");
|
qDebug() << "Something weird happened - xmpp client of account" << name
|
||||||
|
<< "reported about disconnection but account was in" << state << "state";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Core::Account::reconnect()
|
void Core::Account::reconnect()
|
||||||
{
|
{
|
||||||
if (state == Shared::ConnectionState::connected) {
|
if (state == Shared::ConnectionState::connected && !reconnectScheduled) {
|
||||||
++reconnectTimes;
|
reconnectScheduled = true;
|
||||||
|
reconnectTimer->start(500);
|
||||||
client.disconnectFromServer();
|
client.disconnectFromServer();
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "An attempt to reconnect account" << getName() << "which was not connected";
|
qDebug() << "An attempt to reconnect account" << getName() << "which was not connected";
|
||||||
@ -286,14 +308,6 @@ void Core::Account::onRosterReceived()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Core::Account::setReconnectTimes(unsigned int times)
|
|
||||||
{
|
|
||||||
maxReconnectTimes = times;
|
|
||||||
if (state == Shared::ConnectionState::connected) {
|
|
||||||
reconnectTimes = times;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void Core::Account::onRosterItemAdded(const QString& bareJid)
|
void Core::Account::onRosterItemAdded(const QString& bareJid)
|
||||||
{
|
{
|
||||||
addedAccount(bareJid);
|
addedAccount(bareJid);
|
||||||
@ -589,14 +603,6 @@ void Core::Account::onMamMessageReceived(const QString& queryId, const QXmppMess
|
|||||||
QString jid = itr->second;
|
QString jid = itr->second;
|
||||||
RosterItem* item = getRosterItem(jid);
|
RosterItem* item = getRosterItem(jid);
|
||||||
|
|
||||||
qDebug() << "archive for" << jid;
|
|
||||||
qDebug() << "id:" << msg.id();
|
|
||||||
qDebug() << "oid:" << msg.originId();
|
|
||||||
qDebug() << "sid:" << msg.stanzaId();
|
|
||||||
qDebug() << "rid:" << msg.replaceId();
|
|
||||||
qDebug() << "============================";
|
|
||||||
|
|
||||||
|
|
||||||
Shared::Message sMsg(static_cast<Shared::Message::Type>(msg.type()));
|
Shared::Message sMsg(static_cast<Shared::Message::Type>(msg.type()));
|
||||||
mh->initializeMessage(sMsg, msg, false, true, true);
|
mh->initializeMessage(sMsg, msg, false, true, true);
|
||||||
sMsg.setState(Shared::Message::State::sent);
|
sMsg.setState(Shared::Message::State::sent);
|
||||||
@ -645,40 +651,25 @@ void Core::Account::requestArchive(const QString& jid, int count, const QString&
|
|||||||
emit responseArchive(contact->jid, std::list<Shared::Message>());
|
emit responseArchive(contact->jid, std::list<Shared::Message>());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (contact->getArchiveState() == RosterItem::empty && before.size() == 0) {
|
|
||||||
QXmppMessage msg(getFullJid(), jid, "", "");
|
|
||||||
QString last = Shared::generateUUID();
|
|
||||||
msg.setId(last);
|
|
||||||
if (contact->isMuc()) {
|
|
||||||
msg.setType(QXmppMessage::GroupChat);
|
|
||||||
} else {
|
|
||||||
msg.setType(QXmppMessage::Chat);
|
|
||||||
}
|
|
||||||
msg.setState(QXmppMessage::Active);
|
|
||||||
client.sendPacket(msg);
|
|
||||||
QTimer* timer = new QTimer;
|
|
||||||
QObject::connect(timer, &QTimer::timeout, [timer, contact, count, last](){
|
|
||||||
contact->requestFromEmpty(count, last);
|
|
||||||
timer->deleteLater();
|
|
||||||
});
|
|
||||||
|
|
||||||
timer->setSingleShot(true);
|
|
||||||
timer->start(1000);
|
|
||||||
} else {
|
|
||||||
contact->requestHistory(count, before);
|
contact->requestHistory(count, before);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Core::Account::onContactNeedHistory(const QString& before, const QString& after, const QDateTime& at)
|
void Core::Account::onContactNeedHistory(const QString& before, const QString& after, const QDateTime& at)
|
||||||
{
|
{
|
||||||
RosterItem* contact = static_cast<RosterItem*>(sender());
|
RosterItem* contact = static_cast<RosterItem*>(sender());
|
||||||
QString to = "";
|
|
||||||
|
QString to = contact->jid;
|
||||||
QXmppResultSetQuery query;
|
QXmppResultSetQuery query;
|
||||||
|
QDateTime start;
|
||||||
query.setMax(100);
|
query.setMax(100);
|
||||||
|
|
||||||
|
if (contact->getArchiveState() == RosterItem::empty) {
|
||||||
|
query.setBefore(before);
|
||||||
|
qDebug() << "Requesting remote history from empty for" << contact->jid;
|
||||||
|
} else {
|
||||||
if (before.size() > 0) {
|
if (before.size() > 0) {
|
||||||
query.setBefore(before);
|
query.setBefore(before);
|
||||||
}
|
}
|
||||||
QDateTime start;
|
|
||||||
if (after.size() > 0) { //there is some strange behavior of ejabberd server returning empty result set
|
if (after.size() > 0) { //there is some strange behavior of ejabberd server returning empty result set
|
||||||
if (at.isValid()) { //there can be some useful information about it here https://github.com/processone/ejabberd/issues/2924
|
if (at.isValid()) { //there can be some useful information about it here https://github.com/processone/ejabberd/issues/2924
|
||||||
start = at;
|
start = at;
|
||||||
@ -686,8 +677,9 @@ void Core::Account::onContactNeedHistory(const QString& before, const QString& a
|
|||||||
query.setAfter(after);
|
query.setAfter(after);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
qDebug() << "Remote query for" << contact->jid << "from" << after << ", to" << before;
|
||||||
|
}
|
||||||
|
|
||||||
qDebug() << "Remote query from" << after << ", to" << before;
|
|
||||||
|
|
||||||
QString q = am->retrieveArchivedMessages(to, "", contact->jid, start, QDateTime(), query);
|
QString q = am->retrieveArchivedMessages(to, "", contact->jid, start, QDateTime(), query);
|
||||||
achiveQueries.insert(std::make_pair(q, contact->jid));
|
achiveQueries.insert(std::make_pair(q, contact->jid));
|
||||||
@ -704,7 +696,7 @@ void Core::Account::onMamResultsReceived(const QString& queryId, const QXmppResu
|
|||||||
RosterItem* ri = getRosterItem(jid);
|
RosterItem* ri = getRosterItem(jid);
|
||||||
|
|
||||||
if (ri != 0) {
|
if (ri != 0) {
|
||||||
qDebug() << "Flushing messages for" << jid;
|
qDebug() << "Flushing messages for" << jid << ", complete:" << complete;
|
||||||
ri->flushMessagesToArchive(complete, resultSetReply.first(), resultSetReply.last());
|
ri->flushMessagesToArchive(complete, resultSetReply.first(), resultSetReply.last());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include <QMimeDatabase>
|
#include <QMimeDatabase>
|
||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
|
#include <QTimer>
|
||||||
|
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <set>
|
#include <set>
|
||||||
@ -66,10 +67,6 @@ public:
|
|||||||
QObject* parent = 0);
|
QObject* parent = 0);
|
||||||
~Account();
|
~Account();
|
||||||
|
|
||||||
void connect();
|
|
||||||
void disconnect();
|
|
||||||
void reconnect();
|
|
||||||
|
|
||||||
Shared::ConnectionState getState() const;
|
Shared::ConnectionState getState() const;
|
||||||
QString getName() const;
|
QString getName() const;
|
||||||
QString getLogin() const;
|
QString getLogin() const;
|
||||||
@ -91,7 +88,6 @@ public:
|
|||||||
void sendMessage(const Shared::Message& data);
|
void sendMessage(const Shared::Message& data);
|
||||||
void sendMessage(const Shared::Message& data, const QString& path);
|
void sendMessage(const Shared::Message& data, const QString& path);
|
||||||
void requestArchive(const QString& jid, int count, const QString& before);
|
void requestArchive(const QString& jid, int count, const QString& before);
|
||||||
void setReconnectTimes(unsigned int times);
|
|
||||||
void subscribeToContact(const QString& jid, const QString& reason);
|
void subscribeToContact(const QString& jid, const QString& reason);
|
||||||
void unsubscribeFromContact(const QString& jid, const QString& reason);
|
void unsubscribeFromContact(const QString& jid, const QString& reason);
|
||||||
void removeContactRequest(const QString& jid);
|
void removeContactRequest(const QString& jid);
|
||||||
@ -107,6 +103,9 @@ public:
|
|||||||
void uploadVCard(const Shared::VCard& card);
|
void uploadVCard(const Shared::VCard& card);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
|
void connect();
|
||||||
|
void disconnect();
|
||||||
|
void reconnect();
|
||||||
void requestVCard(const QString& jid);
|
void requestVCard(const QString& jid);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
@ -154,8 +153,8 @@ private:
|
|||||||
QXmppMessageReceiptManager* rcpm;
|
QXmppMessageReceiptManager* rcpm;
|
||||||
std::map<QString, Contact*> contacts;
|
std::map<QString, Contact*> contacts;
|
||||||
std::map<QString, Conference*> conferences;
|
std::map<QString, Conference*> conferences;
|
||||||
unsigned int maxReconnectTimes;
|
bool reconnectScheduled;
|
||||||
unsigned int reconnectTimes;
|
QTimer* reconnectTimer;
|
||||||
|
|
||||||
std::map<QString, QString> queuedContacts;
|
std::map<QString, QString> queuedContacts;
|
||||||
std::set<QString> outOfRosterContacts;
|
std::set<QString> outOfRosterContacts;
|
||||||
@ -172,8 +171,7 @@ private:
|
|||||||
MessageHandler* mh;
|
MessageHandler* mh;
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void onClientConnected();
|
void onClientStateChange(QXmppClient::State state);
|
||||||
void onClientDisconnected();
|
|
||||||
void onClientError(QXmppClient::Error err);
|
void onClientError(QXmppClient::Error err);
|
||||||
|
|
||||||
void onRosterReceived();
|
void onRosterReceived();
|
||||||
@ -219,8 +217,6 @@ private:
|
|||||||
void handleNewContact(Contact* contact);
|
void handleNewContact(Contact* contact);
|
||||||
void handleNewRosterItem(RosterItem* contact);
|
void handleNewRosterItem(RosterItem* contact);
|
||||||
void handleNewConference(Conference* contact);
|
void handleNewConference(Conference* contact);
|
||||||
bool handleChatMessage(const QXmppMessage& msg, bool outgoing = false, bool forwarded = false, bool guessing = false);
|
|
||||||
bool handleGroupMessage(const QXmppMessage& msg, bool outgoing = false, bool forwarded = false, bool guessing = false);
|
|
||||||
void addNewRoom(const QString& jid, const QString& nick, const QString& roomName, bool autoJoin);
|
void addNewRoom(const QString& jid, const QString& nick, const QString& roomName, bool autoJoin);
|
||||||
void addToGroup(const QString& jid, const QString& group);
|
void addToGroup(const QString& jid, const QString& group);
|
||||||
void removeFromGroup(const QString& jid, const QString& group);
|
void removeFromGroup(const QString& jid, const QString& group);
|
||||||
|
101
core/archive.cpp
101
core/archive.cpp
@ -67,6 +67,7 @@ void Core::Archive::open(const QString& account)
|
|||||||
mdb_dbi_open(txn, "order", MDB_CREATE | MDB_INTEGERKEY, &order);
|
mdb_dbi_open(txn, "order", MDB_CREATE | MDB_INTEGERKEY, &order);
|
||||||
mdb_dbi_open(txn, "stats", MDB_CREATE, &stats);
|
mdb_dbi_open(txn, "stats", MDB_CREATE, &stats);
|
||||||
mdb_dbi_open(txn, "avatars", MDB_CREATE, &avatars);
|
mdb_dbi_open(txn, "avatars", MDB_CREATE, &avatars);
|
||||||
|
mdb_dbi_open(txn, "sid", MDB_CREATE, &sid);
|
||||||
mdb_txn_commit(txn);
|
mdb_txn_commit(txn);
|
||||||
|
|
||||||
mdb_txn_begin(environment, NULL, MDB_RDONLY, &txn);
|
mdb_txn_begin(environment, NULL, MDB_RDONLY, &txn);
|
||||||
@ -99,6 +100,7 @@ void Core::Archive::open(const QString& account)
|
|||||||
void Core::Archive::close()
|
void Core::Archive::close()
|
||||||
{
|
{
|
||||||
if (opened) {
|
if (opened) {
|
||||||
|
mdb_dbi_close(environment, sid);
|
||||||
mdb_dbi_close(environment, avatars);
|
mdb_dbi_close(environment, avatars);
|
||||||
mdb_dbi_close(environment, stats);
|
mdb_dbi_close(environment, stats);
|
||||||
mdb_dbi_close(environment, order);
|
mdb_dbi_close(environment, order);
|
||||||
@ -138,6 +140,20 @@ bool Core::Archive::addElement(const Shared::Message& message)
|
|||||||
qDebug() << "An element couldn't be inserted into the index" << mdb_strerror(rc);
|
qDebug() << "An element couldn't be inserted into the index" << mdb_strerror(rc);
|
||||||
mdb_txn_abort(txn);
|
mdb_txn_abort(txn);
|
||||||
return false;
|
return false;
|
||||||
|
} else {
|
||||||
|
if (message.getStanzaId().size() > 0) {
|
||||||
|
const std::string& szid = message.getStanzaId().toStdString();
|
||||||
|
|
||||||
|
lmdbKey.mv_size = szid.size();
|
||||||
|
lmdbKey.mv_data = (char*)szid.c_str();
|
||||||
|
lmdbData.mv_size = id.size();
|
||||||
|
lmdbData.mv_data = (uint8_t*)id.data();
|
||||||
|
rc = mdb_put(txn, sid, &lmdbKey, &lmdbData, MDB_NOOVERWRITE);
|
||||||
|
|
||||||
|
if (rc) {
|
||||||
|
qDebug() << "An element stanzaId to id pair couldn't be inserted into the archive" << mdb_strerror(rc);
|
||||||
|
mdb_txn_abort(txn);
|
||||||
|
return false;
|
||||||
} else {
|
} else {
|
||||||
rc = mdb_txn_commit(txn);
|
rc = mdb_txn_commit(txn);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
@ -146,6 +162,16 @@ bool Core::Archive::addElement(const Shared::Message& message)
|
|||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
rc = mdb_txn_commit(txn);
|
||||||
|
if (rc) {
|
||||||
|
qDebug() << "A transaction error: " << mdb_strerror(rc);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "An element couldn't been added to the archive, skipping" << mdb_strerror(rc);
|
qDebug() << "An element couldn't been added to the archive, skipping" << mdb_strerror(rc);
|
||||||
mdb_txn_abort(txn);
|
mdb_txn_abort(txn);
|
||||||
@ -164,10 +190,12 @@ void Core::Archive::clear()
|
|||||||
mdb_drop(txn, main, 0);
|
mdb_drop(txn, main, 0);
|
||||||
mdb_drop(txn, order, 0);
|
mdb_drop(txn, order, 0);
|
||||||
mdb_drop(txn, stats, 0);
|
mdb_drop(txn, stats, 0);
|
||||||
|
mdb_drop(txn, avatars, 0);
|
||||||
|
mdb_drop(txn, sid, 0);
|
||||||
mdb_txn_commit(txn);
|
mdb_txn_commit(txn);
|
||||||
}
|
}
|
||||||
|
|
||||||
Shared::Message Core::Archive::getElement(const QString& id)
|
Shared::Message Core::Archive::getElement(const QString& id) const
|
||||||
{
|
{
|
||||||
if (!opened) {
|
if (!opened) {
|
||||||
throw Closed("getElement", jid.toStdString());
|
throw Closed("getElement", jid.toStdString());
|
||||||
@ -186,7 +214,7 @@ Shared::Message Core::Archive::getElement(const QString& id)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Shared::Message Core::Archive::getMessage(const std::string& id, MDB_txn* txn)
|
Shared::Message Core::Archive::getMessage(const std::string& id, MDB_txn* txn) const
|
||||||
{
|
{
|
||||||
MDB_val lmdbKey, lmdbData;
|
MDB_val lmdbKey, lmdbData;
|
||||||
lmdbKey.mv_size = id.size();
|
lmdbKey.mv_size = id.size();
|
||||||
@ -220,6 +248,7 @@ void Core::Archive::changeMessage(const QString& id, const QMap<QString, QVarian
|
|||||||
std::string strId(id.toStdString());
|
std::string strId(id.toStdString());
|
||||||
try {
|
try {
|
||||||
Shared::Message msg = getMessage(strId, txn);
|
Shared::Message msg = getMessage(strId, txn);
|
||||||
|
bool hadStanzaId = msg.getStanzaId().size() > 0;
|
||||||
QDateTime oTime = msg.getTime();
|
QDateTime oTime = msg.getTime();
|
||||||
bool idChange = msg.change(data);
|
bool idChange = msg.change(data);
|
||||||
|
|
||||||
@ -250,6 +279,19 @@ void Core::Archive::changeMessage(const QString& id, const QMap<QString, QVarian
|
|||||||
throw Unknown(jid.toStdString(), mdb_strerror(rc));
|
throw Unknown(jid.toStdString(), mdb_strerror(rc));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (msg.getStanzaId().size() > 0 && (idChange || !hadStanzaId)) {
|
||||||
|
const std::string& szid = msg.getStanzaId().toStdString();
|
||||||
|
|
||||||
|
lmdbData.mv_size = szid.size();
|
||||||
|
lmdbData.mv_data = (char*)szid.c_str();
|
||||||
|
rc = mdb_put(txn, sid, &lmdbData, &lmdbKey, 0);
|
||||||
|
|
||||||
|
if (rc != 0) {
|
||||||
|
throw Unknown(jid.toStdString(), mdb_strerror(rc));
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
lmdbData.mv_size = ba.size();
|
lmdbData.mv_size = ba.size();
|
||||||
lmdbData.mv_data = (uint8_t*)ba.data();
|
lmdbData.mv_data = (uint8_t*)ba.data();
|
||||||
rc = mdb_put(txn, main, &lmdbKey, &lmdbData, 0);
|
rc = mdb_put(txn, main, &lmdbKey, &lmdbData, 0);
|
||||||
@ -395,7 +437,20 @@ unsigned int Core::Archive::addElements(const std::list<Shared::Message>& messag
|
|||||||
if (rc) {
|
if (rc) {
|
||||||
qDebug() << "An element couldn't be inserted into the index, aborting the transaction" << mdb_strerror(rc);
|
qDebug() << "An element couldn't be inserted into the index, aborting the transaction" << mdb_strerror(rc);
|
||||||
} else {
|
} else {
|
||||||
//qDebug() << "element added with id" << message.getId() << "stamp" << message.getTime();
|
if (message.getStanzaId().size() > 0) {
|
||||||
|
const std::string& szid = message.getStanzaId().toStdString();
|
||||||
|
|
||||||
|
lmdbKey.mv_size = szid.size();
|
||||||
|
lmdbKey.mv_data = (char*)szid.c_str();
|
||||||
|
lmdbData.mv_size = id.size();
|
||||||
|
lmdbData.mv_data = (uint8_t*)id.data();
|
||||||
|
rc = mdb_put(txn, sid, &lmdbKey, &lmdbData, MDB_NOOVERWRITE);
|
||||||
|
|
||||||
|
if (rc) {
|
||||||
|
qDebug() << "During bulk add an element stanzaId to id pair couldn't be inserted into the archive, continuing without stanzaId" << mdb_strerror(rc);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
success++;
|
success++;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -536,6 +591,46 @@ void Core::Archive::setFromTheBeginning(bool is)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString Core::Archive::idByStanzaId(const QString& stanzaId) const
|
||||||
|
{
|
||||||
|
if (!opened) {
|
||||||
|
throw Closed("idByStanzaId", jid.toStdString());
|
||||||
|
}
|
||||||
|
QString id;
|
||||||
|
std::string ssid = stanzaId.toStdString();
|
||||||
|
|
||||||
|
MDB_txn *txn;
|
||||||
|
MDB_val lmdbKey, lmdbData;
|
||||||
|
lmdbKey.mv_size = ssid.size();
|
||||||
|
lmdbKey.mv_data = (char*)ssid.c_str();
|
||||||
|
mdb_txn_begin(environment, NULL, MDB_RDONLY, &txn);
|
||||||
|
int rc = mdb_get(txn, sid, &lmdbKey, &lmdbData);
|
||||||
|
if (rc == 0) {
|
||||||
|
id = QString::fromStdString(std::string((char*)lmdbData.mv_data, lmdbData.mv_size));
|
||||||
|
}
|
||||||
|
mdb_txn_abort(txn);
|
||||||
|
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString Core::Archive::stanzaIdById(const QString& id) const
|
||||||
|
{
|
||||||
|
if (!opened) {
|
||||||
|
throw Closed("stanzaIdById", jid.toStdString());
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
Shared::Message msg = getElement(id);
|
||||||
|
return msg.getStanzaId();
|
||||||
|
} catch (const NotFound& e) {
|
||||||
|
return QString();
|
||||||
|
} catch (const Empty& e) {
|
||||||
|
return QString();
|
||||||
|
} catch (...) {
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void Core::Archive::printOrder()
|
void Core::Archive::printOrder()
|
||||||
{
|
{
|
||||||
qDebug() << "Printing order";
|
qDebug() << "Printing order";
|
||||||
|
@ -45,7 +45,7 @@ public:
|
|||||||
|
|
||||||
bool addElement(const Shared::Message& message);
|
bool addElement(const Shared::Message& message);
|
||||||
unsigned int addElements(const std::list<Shared::Message>& messages);
|
unsigned int addElements(const std::list<Shared::Message>& messages);
|
||||||
Shared::Message getElement(const QString& id);
|
Shared::Message getElement(const QString& id) const;
|
||||||
void changeMessage(const QString& id, const QMap<QString, QVariant>& data);
|
void changeMessage(const QString& id, const QMap<QString, QVariant>& data);
|
||||||
Shared::Message oldest();
|
Shared::Message oldest();
|
||||||
QString oldestId();
|
QString oldestId();
|
||||||
@ -60,6 +60,8 @@ public:
|
|||||||
AvatarInfo getAvatarInfo(const QString& resource = "") const;
|
AvatarInfo getAvatarInfo(const QString& resource = "") const;
|
||||||
bool readAvatarInfo(AvatarInfo& target, const QString& resource = "") const;
|
bool readAvatarInfo(AvatarInfo& target, const QString& resource = "") const;
|
||||||
void readAllResourcesAvatars(std::map<QString, AvatarInfo>& data) const;
|
void readAllResourcesAvatars(std::map<QString, AvatarInfo>& data) const;
|
||||||
|
QString idByStanzaId(const QString& stanzaId) const;
|
||||||
|
QString stanzaIdById(const QString& id) const;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
const QString jid;
|
const QString jid;
|
||||||
@ -169,10 +171,11 @@ private:
|
|||||||
bool opened;
|
bool opened;
|
||||||
bool fromTheBeginning;
|
bool fromTheBeginning;
|
||||||
MDB_env* environment;
|
MDB_env* environment;
|
||||||
MDB_dbi main;
|
MDB_dbi main; //id to message
|
||||||
MDB_dbi order;
|
MDB_dbi order; //time to id
|
||||||
MDB_dbi stats;
|
MDB_dbi stats;
|
||||||
MDB_dbi avatars;
|
MDB_dbi avatars;
|
||||||
|
MDB_dbi sid; //stanzaId to id
|
||||||
|
|
||||||
bool getStatBoolValue(const std::string& id, MDB_txn* txn);
|
bool getStatBoolValue(const std::string& id, MDB_txn* txn);
|
||||||
std::string getStatStringValue(const std::string& id, MDB_txn* txn);
|
std::string getStatStringValue(const std::string& id, MDB_txn* txn);
|
||||||
@ -183,7 +186,7 @@ private:
|
|||||||
void printOrder();
|
void printOrder();
|
||||||
void printKeys();
|
void printKeys();
|
||||||
bool dropAvatar(const std::string& resource);
|
bool dropAvatar(const std::string& resource);
|
||||||
Shared::Message getMessage(const std::string& id, MDB_txn* txn);
|
Shared::Message getMessage(const std::string& id, MDB_txn* txn) const;
|
||||||
Shared::Message getStoredMessage(MDB_txn *txn, MDB_cursor* cursor, MDB_cursor_op op, MDB_val* key, MDB_val* value, int& rc);
|
Shared::Message getStoredMessage(MDB_txn *txn, MDB_cursor* cursor, MDB_cursor_op op, MDB_val* key, MDB_val* value, int& rc);
|
||||||
Shared::Message edge(bool end);
|
Shared::Message edge(bool end);
|
||||||
};
|
};
|
||||||
|
@ -176,16 +176,13 @@ void Core::MessageHandler::initializeMessage(Shared::Message& target, const QXmp
|
|||||||
if (id.size() == 0) {
|
if (id.size() == 0) {
|
||||||
id = source.id();
|
id = source.id();
|
||||||
}
|
}
|
||||||
if (id.size() == 0) {
|
target.setStanzaId(source.stanzaId());
|
||||||
id = source.stanzaId();
|
|
||||||
}
|
|
||||||
#else
|
#else
|
||||||
id = source.id();
|
id = source.id();
|
||||||
#endif
|
#endif
|
||||||
if (id.size() == 0) {
|
|
||||||
target.generateRandomId();
|
|
||||||
} else {
|
|
||||||
target.setId(id);
|
target.setId(id);
|
||||||
|
if (target.getId().size() == 0) {
|
||||||
|
target.generateRandomId(); //TODO out of desperation, I need at least a random ID
|
||||||
}
|
}
|
||||||
target.setFrom(source.from());
|
target.setFrom(source.from());
|
||||||
target.setTo(source.to());
|
target.setTo(source.to());
|
||||||
@ -217,13 +214,10 @@ void Core::MessageHandler::logMessage(const QXmppMessage& msg, const QString& re
|
|||||||
qDebug() << "- state: " << msg.state();
|
qDebug() << "- state: " << msg.state();
|
||||||
qDebug() << "- stamp: " << msg.stamp();
|
qDebug() << "- stamp: " << msg.stamp();
|
||||||
qDebug() << "- id: " << msg.id();
|
qDebug() << "- id: " << msg.id();
|
||||||
|
#if (QXMPP_VERSION) >= QT_VERSION_CHECK(1, 3, 0)
|
||||||
|
qDebug() << "- stanzaId: " << msg.stanzaId();
|
||||||
|
#endif
|
||||||
qDebug() << "- outOfBandUrl: " << msg.outOfBandUrl();
|
qDebug() << "- outOfBandUrl: " << msg.outOfBandUrl();
|
||||||
qDebug() << "- isAttentionRequested: " << msg.isAttentionRequested();
|
|
||||||
qDebug() << "- isReceiptRequested: " << msg.isReceiptRequested();
|
|
||||||
qDebug() << "- receiptId: " << msg.receiptId();
|
|
||||||
qDebug() << "- subject: " << msg.subject();
|
|
||||||
qDebug() << "- thread: " << msg.thread();
|
|
||||||
qDebug() << "- isMarkable: " << msg.isMarkable();
|
|
||||||
qDebug() << "==============================";
|
qDebug() << "==============================";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ void Core::RosterItem::performRequest(int count, const QString& before)
|
|||||||
requestedCount = -1;
|
requestedCount = -1;
|
||||||
}
|
}
|
||||||
Shared::Message msg = archive->newest();
|
Shared::Message msg = archive->newest();
|
||||||
emit needHistory("", msg.getId(), msg.getTime());
|
emit needHistory("", getId(msg), msg.getTime());
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case end:
|
case end:
|
||||||
@ -176,27 +176,37 @@ void Core::RosterItem::performRequest(int count, const QString& before)
|
|||||||
} catch (const Archive::NotFound& e) {
|
} catch (const Archive::NotFound& e) {
|
||||||
requestCache.emplace_back(requestedCount, before);
|
requestCache.emplace_back(requestedCount, before);
|
||||||
requestedCount = -1;
|
requestedCount = -1;
|
||||||
emit needHistory(archive->oldestId(), "");
|
emit needHistory(getId(archive->oldest()), "");
|
||||||
} catch (const Archive::Empty& e) {
|
} catch (const Archive::Empty& e) {
|
||||||
requestCache.emplace_back(requestedCount, before);
|
requestCache.emplace_back(requestedCount, before);
|
||||||
requestedCount = -1;
|
requestedCount = -1;
|
||||||
emit needHistory(archive->oldestId(), "");
|
emit needHistory(getId(archive->oldest()), "");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (found) {
|
if (found) {
|
||||||
int rSize = responseCache.size();
|
int rSize = responseCache.size();
|
||||||
if (rSize < count) {
|
if (rSize < count) {
|
||||||
if (rSize != 0) {
|
if (rSize != 0) {
|
||||||
emit needHistory(responseCache.front().getId(), "");
|
emit needHistory(getId(responseCache.front()), "");
|
||||||
} else {
|
} else {
|
||||||
emit needHistory(before, "");
|
QString bf;
|
||||||
|
if (muc) {
|
||||||
|
bf = archive->stanzaIdById(before);
|
||||||
|
if (bf.size() < 0) {
|
||||||
|
qDebug() << "Didn't find stanzaId for id requesting history for" << jid << ", falling back to requesting by id";
|
||||||
|
bf = before;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
bf = before;
|
||||||
|
}
|
||||||
|
emit needHistory(bf, "");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
nextRequest();
|
nextRequest();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
emit needHistory(archive->oldestId(), "");
|
emit needHistory(getId(archive->oldest()), "");
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case complete:
|
case complete:
|
||||||
@ -213,10 +223,20 @@ void Core::RosterItem::performRequest(int count, const QString& before)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString Core::RosterItem::getId(const Shared::Message& msg)
|
||||||
|
{
|
||||||
|
QString id;
|
||||||
|
if (muc) {
|
||||||
|
id = msg.getStanzaId();
|
||||||
|
} else {
|
||||||
|
id = msg.getId();
|
||||||
|
}
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
void Core::RosterItem::appendMessageToArchive(const Shared::Message& msg)
|
void Core::RosterItem::appendMessageToArchive(const Shared::Message& msg)
|
||||||
{
|
{
|
||||||
const QString& id = msg.getId();
|
if (msg.getId().size() > 0) {
|
||||||
if (id.size() > 0) {
|
|
||||||
if (msg.storable()) {
|
if (msg.storable()) {
|
||||||
switch (archiveState) {
|
switch (archiveState) {
|
||||||
case empty:
|
case empty:
|
||||||
@ -224,13 +244,13 @@ void Core::RosterItem::appendMessageToArchive(const Shared::Message& msg)
|
|||||||
archiveState = end;
|
archiveState = end;
|
||||||
}
|
}
|
||||||
if (!syncronizing) {
|
if (!syncronizing) {
|
||||||
requestHistory(-1, id);
|
requestHistory(-1, getId(msg));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case beginning:
|
case beginning:
|
||||||
appendCache.push_back(msg);
|
appendCache.push_back(msg);
|
||||||
if (!syncronizing) {
|
if (!syncronizing) {
|
||||||
requestHistory(-1, id);
|
requestHistory(-1, getId(msg));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case end:
|
case end:
|
||||||
@ -239,7 +259,7 @@ void Core::RosterItem::appendMessageToArchive(const Shared::Message& msg)
|
|||||||
case chunk:
|
case chunk:
|
||||||
appendCache.push_back(msg);
|
appendCache.push_back(msg);
|
||||||
if (!syncronizing) {
|
if (!syncronizing) {
|
||||||
requestHistory(-1, id);
|
requestHistory(-1, getId(msg));
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case complete:
|
case complete:
|
||||||
@ -247,7 +267,7 @@ void Core::RosterItem::appendMessageToArchive(const Shared::Message& msg)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} else if (!syncronizing && archiveState == empty) {
|
} else if (!syncronizing && archiveState == empty) {
|
||||||
requestHistory(-1, id);
|
requestHistory(-1, getId(msg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -377,26 +397,6 @@ void Core::RosterItem::flushMessagesToArchive(bool finished, const QString& firs
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Core::RosterItem::requestFromEmpty(int count, const QString& before)
|
|
||||||
{
|
|
||||||
if (syncronizing) {
|
|
||||||
qDebug("perform from empty didn't work, another request queued");
|
|
||||||
} else {
|
|
||||||
if (archiveState != empty) {
|
|
||||||
qDebug("perform from empty didn't work, the state is not empty");
|
|
||||||
requestHistory(count, before);
|
|
||||||
} else {
|
|
||||||
syncronizing = true;
|
|
||||||
requestedCount = count;
|
|
||||||
requestedBefore = "";
|
|
||||||
hisoryCache.clear();
|
|
||||||
responseCache.clear();
|
|
||||||
|
|
||||||
emit needHistory(before, "");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
QString Core::RosterItem::getServer() const
|
QString Core::RosterItem::getServer() const
|
||||||
{
|
{
|
||||||
QStringList lst = jid.split("@");
|
QStringList lst = jid.split("@");
|
||||||
|
@ -67,7 +67,6 @@ public:
|
|||||||
void appendMessageToArchive(const Shared::Message& msg);
|
void appendMessageToArchive(const Shared::Message& msg);
|
||||||
void flushMessagesToArchive(bool finished, const QString& firstId, const QString& lastId);
|
void flushMessagesToArchive(bool finished, const QString& firstId, const QString& lastId);
|
||||||
void requestHistory(int count, const QString& before);
|
void requestHistory(int count, const QString& before);
|
||||||
void requestFromEmpty(int count, const QString& before);
|
|
||||||
QString avatarPath(const QString& resource = "") const;
|
QString avatarPath(const QString& resource = "") const;
|
||||||
QString folderPath() const;
|
QString folderPath() const;
|
||||||
bool readAvatarInfo(Archive::AvatarInfo& target, const QString& resource = "") const;
|
bool readAvatarInfo(Archive::AvatarInfo& target, const QString& resource = "") const;
|
||||||
@ -112,6 +111,7 @@ protected:
|
|||||||
private:
|
private:
|
||||||
void nextRequest();
|
void nextRequest();
|
||||||
void performRequest(int count, const QString& before);
|
void performRequest(int count, const QString& before);
|
||||||
|
QString getId(const Shared::Message& msg);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -133,11 +133,9 @@ void Core::Squawk::addAccount(
|
|||||||
)
|
)
|
||||||
{
|
{
|
||||||
QSettings settings;
|
QSettings settings;
|
||||||
unsigned int reconnects = settings.value("reconnects", 2).toUInt();
|
|
||||||
|
|
||||||
Account* acc = new Account(login, server, password, name, &network);
|
Account* acc = new Account(login, server, password, name, &network);
|
||||||
acc->setResource(resource);
|
acc->setResource(resource);
|
||||||
acc->setReconnectTimes(reconnects);
|
|
||||||
acc->setPasswordType(passwordType);
|
acc->setPasswordType(passwordType);
|
||||||
accounts.push_back(acc);
|
accounts.push_back(acc);
|
||||||
amap.insert(std::make_pair(name, acc));
|
amap.insert(std::make_pair(name, acc));
|
||||||
@ -664,6 +662,7 @@ void Core::Squawk::responsePassword(const QString& account, const QString& passw
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
itr->second->setPassword(password);
|
itr->second->setPassword(password);
|
||||||
|
emit changeAccount(account, {{"password", password}});
|
||||||
accountReady();
|
accountReady();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -750,5 +749,6 @@ void Core::Squawk::onWalletResponsePassword(const QString& login, const QString&
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
itr->second->setPassword(password);
|
itr->second->setPassword(password);
|
||||||
|
emit changeAccount(login, {{"password", password}});
|
||||||
accountReady();
|
accountReady();
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,12 @@ Shared::Message::Message(Shared::Message::Type p_type):
|
|||||||
outgoing(false),
|
outgoing(false),
|
||||||
forwarded(false),
|
forwarded(false),
|
||||||
state(State::delivered),
|
state(State::delivered),
|
||||||
edited(false) {}
|
edited(false),
|
||||||
|
errorText(),
|
||||||
|
originalMessage(),
|
||||||
|
lastModified(),
|
||||||
|
stanzaId()
|
||||||
|
{}
|
||||||
|
|
||||||
Shared::Message::Message():
|
Shared::Message::Message():
|
||||||
jFrom(),
|
jFrom(),
|
||||||
@ -50,7 +55,9 @@ Shared::Message::Message():
|
|||||||
edited(false),
|
edited(false),
|
||||||
errorText(),
|
errorText(),
|
||||||
originalMessage(),
|
originalMessage(),
|
||||||
lastModified() {}
|
lastModified(),
|
||||||
|
stanzaId()
|
||||||
|
{}
|
||||||
|
|
||||||
QString Shared::Message::getBody() const
|
QString Shared::Message::getBody() const
|
||||||
{
|
{
|
||||||
@ -77,7 +84,11 @@ QString Shared::Message::getTo() const
|
|||||||
|
|
||||||
QString Shared::Message::getId() const
|
QString Shared::Message::getId() const
|
||||||
{
|
{
|
||||||
|
if (id.size() > 0) {
|
||||||
return id;
|
return id;
|
||||||
|
} else {
|
||||||
|
return stanzaId;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QDateTime Shared::Message::getTime() const
|
QDateTime Shared::Message::getTime() const
|
||||||
@ -299,6 +310,7 @@ void Shared::Message::serialize(QDataStream& data) const
|
|||||||
data << originalMessage;
|
data << originalMessage;
|
||||||
data << lastModified;
|
data << lastModified;
|
||||||
}
|
}
|
||||||
|
data << stanzaId;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Shared::Message::deserialize(QDataStream& data)
|
void Shared::Message::deserialize(QDataStream& data)
|
||||||
@ -328,6 +340,7 @@ void Shared::Message::deserialize(QDataStream& data)
|
|||||||
data >> originalMessage;
|
data >> originalMessage;
|
||||||
data >> lastModified;
|
data >> lastModified;
|
||||||
}
|
}
|
||||||
|
data >> stanzaId;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Shared::Message::change(const QMap<QString, QVariant>& data)
|
bool Shared::Message::change(const QMap<QString, QVariant>& data)
|
||||||
@ -353,6 +366,18 @@ bool Shared::Message::change(const QMap<QString, QVariant>& data)
|
|||||||
idChanged = true;
|
idChanged = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
itr = data.find("stanzaId");
|
||||||
|
if (itr != data.end()) {
|
||||||
|
QString newId = itr.value().toString();
|
||||||
|
if (stanzaId != newId) {
|
||||||
|
setStanzaId(newId);
|
||||||
|
if (id.size() == 0) {
|
||||||
|
idChanged = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
itr = data.find("body");
|
itr = data.find("body");
|
||||||
if (itr != data.end()) {
|
if (itr != data.end()) {
|
||||||
QMap<QString, QVariant>::const_iterator dItr = data.find("stamp");
|
QMap<QString, QVariant>::const_iterator dItr = data.find("stamp");
|
||||||
@ -397,3 +422,13 @@ bool Shared::Message::storable() const
|
|||||||
{
|
{
|
||||||
return id.size() > 0 && (body.size() > 0 || oob.size()) > 0;
|
return id.size() > 0 && (body.size() > 0 || oob.size()) > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Shared::Message::setStanzaId(const QString& sid)
|
||||||
|
{
|
||||||
|
stanzaId = sid;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString Shared::Message::getStanzaId() const
|
||||||
|
{
|
||||||
|
return stanzaId;
|
||||||
|
}
|
||||||
|
@ -71,6 +71,7 @@ public:
|
|||||||
void setEdited(bool p_edited);
|
void setEdited(bool p_edited);
|
||||||
void setErrorText(const QString& err);
|
void setErrorText(const QString& err);
|
||||||
bool change(const QMap<QString, QVariant>& data);
|
bool change(const QMap<QString, QVariant>& data);
|
||||||
|
void setStanzaId(const QString& sid);
|
||||||
|
|
||||||
QString getFrom() const;
|
QString getFrom() const;
|
||||||
QString getFromJid() const;
|
QString getFromJid() const;
|
||||||
@ -98,6 +99,7 @@ public:
|
|||||||
bool serverStored() const;
|
bool serverStored() const;
|
||||||
QDateTime getLastModified() const;
|
QDateTime getLastModified() const;
|
||||||
QString getOriginalBody() const;
|
QString getOriginalBody() const;
|
||||||
|
QString getStanzaId() const;
|
||||||
|
|
||||||
void serialize(QDataStream& data) const;
|
void serialize(QDataStream& data) const;
|
||||||
void deserialize(QDataStream& data);
|
void deserialize(QDataStream& data);
|
||||||
@ -120,6 +122,7 @@ private:
|
|||||||
QString errorText;
|
QString errorText;
|
||||||
QString originalMessage;
|
QString originalMessage;
|
||||||
QDateTime lastModified;
|
QDateTime lastModified;
|
||||||
|
QString stanzaId;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user