// Squawk messenger. // Copyright (C) 2019 Yury Gubich // // 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 . #include "delaymanager.h" #include "cardinternal.h" #include "infoforuser.h" #include "owncardinternal.h" #include "owninfoforuser.h" Core::DelayManager::Manager::Manager(Job::Id mpj, QObject* parent) : QObject(parent), maxParallelJobs(mpj), nextJobId(1), scheduledJobs(), scheduledJobsById(scheduledJobs.get()), jobSequence(scheduledJobs.get()), runningJobs(), ownVCardJobId(0), ownInfoJobId(0), scheduledVCards(), requestedVCards(), #ifdef WITH_OMEMO requestedBundles() #endif { } Core::DelayManager::Manager::~Manager() { for (const std::pair& pair : runningJobs) { delete pair.second; } for (Job* job : jobSequence) { delete job; } } Core::Job::Id Core::DelayManager::Manager::getNextJobId() { Job::Id id = nextJobId++; if (id == 0) id = nextJobId++; return id; } void Core::DelayManager::Manager::getInfo(const QString& jid) { Job* job = nullptr; #ifdef WITH_OMEMO std::map::const_iterator bitr = requestedBundles.find(jid); if (bitr != requestedBundles.end()) job = runningJobs.at(bitr->second); else #endif job = getVCardJob(jid); if (job != nullptr) { if (job->type == Job::Type::cardInternal) replaceJob(new InfoForUser(job->id, jid)); } else scheduleJob(new InfoForUser(getNextJobId(), jid)); } void Core::DelayManager::Manager::getOwnInfo() { if (ownInfoJobId == 0) { if (ownVCardJobId != 0) replaceJob(new OwnInfoForUser(ownVCardJobId)); else scheduleJob(new OwnInfoForUser(getNextJobId())); } } void Core::DelayManager::Manager::getVCard(const QString& jid) { Job* job = getVCardJob(jid); if (job == nullptr) scheduleJob(new CardInternal(getNextJobId(), jid)); } void Core::DelayManager::Manager::getOwnVCard() { if (ownInfoJobId == 0) scheduleJob(new OwnCardInternal(getNextJobId())); } Core::Job* Core::DelayManager::Manager::getVCardJob(const QString& jid) { Job* job = nullptr; std::map::const_iterator sitr = scheduledVCards.find(jid); if (sitr == scheduledVCards.end()) { std::map::const_iterator ritr = requestedVCards.find(jid); if (ritr != requestedVCards.end()) job = runningJobs.at(ritr->second); } else { job = *(scheduledJobsById.find(sitr->second)); } return job; } void Core::DelayManager::Manager::preScheduleJob(Core::Job* job) { switch (job->type) { case Job::Type::cardInternal: scheduledVCards.emplace(dynamic_cast(job)->jid, job->id); break; case Job::Type::ownCardInternal: ownVCardJobId = job->id; break; case Job::Type::infoForUser: scheduledVCards.emplace(dynamic_cast(job)->jid, job->id); break; case Job::Type::ownInfoForUser: ownVCardJobId = job->id; ownInfoJobId = job->id; break; } } void Core::DelayManager::Manager::scheduleJob(Core::Job* job) { preScheduleJob(job); if (runningJobs.size() < maxParallelJobs) { executeJob(job); } else { scheduledJobs.push_back(job); } } void Core::DelayManager::Manager::preExecuteJob(Core::Job* job) { switch (job->type) { case Job::Type::cardInternal: case Job::Type::infoForUser: { Contact* cij = dynamic_cast(job); requestedVCards.emplace(cij->jid, job->id); scheduledVCards.erase(cij->jid); } break; case Job::Type::ownInfoForUser: case Job::Type::ownCardInternal: break; } } void Core::DelayManager::Manager::executeJob(Core::Job* job) { preExecuteJob(job); runningJobs.emplace(job->id, job); switch (job->type) { case Job::Type::cardInternal: case Job::Type::infoForUser: emit requestVCard(dynamic_cast(job)->jid); break; case Job::Type::ownInfoForUser: case Job::Type::ownCardInternal: emit requestOwnVCard(); break; } } void Core::DelayManager::Manager::jobIsDone(Job::Id jobId) { std::map::const_iterator itr = runningJobs.find(jobId); if (itr == runningJobs.end()) { throw 8573; //not supposed to happen, ever } Job* job = itr->second; delete job; runningJobs.erase(itr); if (scheduledJobs.size() > 0) { Job* job = scheduledJobs.front(); scheduledJobs.pop_front(); executeJob(job); } } void Core::DelayManager::Manager::replaceJob(Core::Job* job) { preScheduleJob(job); std::map::iterator itr = runningJobs.find(job->id); if (itr != runningJobs.end()) { preExecuteJob(job); delete itr->second; itr->second = job; } else { StorageById::iterator sitr = scheduledJobsById.find(job->id); if (sitr != scheduledJobsById.end()) { delete *(sitr); scheduledJobsById.replace(sitr, job); } else { throw 8574; //not supposed to happen, ever } } } void Core::DelayManager::Manager::jobIsCanceled(Core::Job* job, bool wasRunning) { switch (job->type) { case Job::Type::cardInternal: { CardInternal* jb = dynamic_cast(job); if (wasRunning) requestedVCards.erase(jb->jid); else scheduledVCards.erase(jb->jid); emit receivedVCard(jb->jid, Shared::VCard()); } break; case Job::Type::infoForUser: { InfoForUser* jb = dynamic_cast(job); if (jb->getStage() == InfoForUser::Stage::waitingForVCard) { if (wasRunning) requestedVCards.erase(jb->jid); else scheduledVCards.erase(jb->jid); emit receivedVCard(jb->jid, Shared::VCard()); } emit receivedInfo(Shared::Info(jb->jid)); } break; case Job::Type::ownInfoForUser: { OwnInfoForUser* jb = dynamic_cast(job); if (jb->getStage() == OwnInfoForUser::Stage::waitingForVCard) { ownVCardJobId = 0; emit receivedOwnCard(Shared::VCard()); } ownInfoJobId = 0; emit receivedOwnInfo(Shared::Info ("")); } break; case Job::Type::ownCardInternal: ownVCardJobId = 0; emit receivedOwnCard(Shared::VCard()); break; } delete job; } void Core::DelayManager::Manager::disconnected() { for (const std::pair pair : runningJobs) jobIsCanceled(pair.second, true); for (Job* job : scheduledJobs) jobIsCanceled(job, false); runningJobs.clear(); scheduledJobs.clear(); } void Core::DelayManager::Manager::receivedVCard(const QString& jid, const Shared::VCard& card) { std::map::const_iterator cardItr = requestedVCards.find(jid); if (cardItr == requestedVCards.end()) { throw 8575; //never supposed to happen, the state is not correct; } else { Job::Id jobId = cardItr->second; requestedVCards.erase(cardItr); Job* job = runningJobs.at(jobId); switch (job->type) { case Job::Type::cardInternal: jobIsDone(jobId); emit receivedCard(jid, card); break; case Job::Type::infoForUser: #ifdef WITH_OMEMO requestedBundles.emplace(jid, jobId); //TODO save card! emit requestBundles(jid); #else { Shared::Info info(jid); info.turnIntoContact(card); emit receivedInfo(info); } jobIsDone(jobId); #endif emit receivedCard(jid, card); break; default: throw 8576; } } } void Core::DelayManager::Manager::ownVCardReceived(const Shared::VCard& card) { Job::Id jobId = ownVCardJobId; ownVCardJobId = 0; Job* job = runningJobs.at(jobId); switch (job->type) { case Job::Type::ownCardInternal: jobIsDone(jobId); emit receivedOwnCard(card); break; case Job::Type::ownInfoForUser: #ifdef WITH_OMEMO //requestedBundles.emplace(jid, jobId); //TODO save card! emit requestOwnBundle(); #else { Shared::Info info(""); info.turnIntoOwnAccount(card); emit receivedOwnInfo(info); } jobIsDone(jobId); #endif emit receivedOwnCard(card); break; default: throw 8576; } } void Core::DelayManager::Manager::receivedBundles(const QString& jid) { }