
Ported commits from cmangos repositories - https://github.com/cmangos/mangos-classic/commit/10a1710 - https://github.com/cmangos/mangos-classic/commit/4aacdaf - https://github.com/cmangos/mangos-classic/commit/c05d0ed - https://github.com/cmangos/mangos-classic/commit/e8aa9cb
143 lines
4.6 KiB
C++
143 lines
4.6 KiB
C++
/**
|
|
* MaNGOS is a full featured server for World of Warcraft, supporting
|
|
* the following clients: 1.12.x, 2.4.3, 3.3.5a, 4.3.4a and 5.4.8
|
|
*
|
|
* Copyright (C) 2005-2016 MaNGOS project <https://getmangos.eu>
|
|
*
|
|
* 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 2 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*
|
|
* World of Warcraft, and all World of Warcraft or Warcraft art, images,
|
|
* and lore are copyrighted by Blizzard Entertainment, Inc.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup mailing
|
|
* @{
|
|
*
|
|
* @file MassMailMgr.cpp
|
|
* This file contains the the code needed for MaNGOS to handle mass mails send in safe and perfomence not affecting way.
|
|
*
|
|
*/
|
|
|
|
#include "MassMailMgr.h"
|
|
#include "Policies/Singleton.h"
|
|
#include "Database/DatabaseEnv.h"
|
|
#include "Database/DatabaseImpl.h"
|
|
#include "SharedDefines.h"
|
|
#include "World.h"
|
|
#include "ObjectMgr.h"
|
|
|
|
INSTANTIATE_SINGLETON_1(MassMailMgr);
|
|
|
|
void MassMailMgr::AddMassMailTask(MailDraft* mailProto, const MailSender &sender, uint32 raceMask)
|
|
{
|
|
if (RACEMASK_ALL_PLAYABLE & ~raceMask) // have races not included in mask
|
|
{
|
|
std::ostringstream ss;
|
|
ss << "SELECT guid FROM characters WHERE (1 << (race - 1)) & " << raceMask << " AND deleteDate IS NULL";
|
|
AddMassMailTask(mailProto, sender, ss.str().c_str());
|
|
}
|
|
else
|
|
{ AddMassMailTask(mailProto, sender, "SELECT guid FROM characters WHERE deleteDate IS NULL"); }
|
|
}
|
|
|
|
struct MassMailerQueryHandler
|
|
{
|
|
void HandleQueryCallback(QueryResult* result, MailDraft* mailProto, MailSender sender)
|
|
{
|
|
if (!result)
|
|
{ return; }
|
|
|
|
MassMailMgr::ReceiversList& recievers = sMassMailMgr.AddMassMailTask(mailProto, sender);
|
|
|
|
do
|
|
{
|
|
Field* fields = result->Fetch();
|
|
recievers.insert(fields[0].GetUInt32());
|
|
}
|
|
while (result->NextRow());
|
|
delete result;
|
|
}
|
|
} massMailerQueryHandler;
|
|
|
|
void MassMailMgr::AddMassMailTask(MailDraft* mailProto, const MailSender &sender, char const* query)
|
|
{
|
|
CharacterDatabase.AsyncPQuery(&massMailerQueryHandler, &MassMailerQueryHandler::HandleQueryCallback, mailProto, sender, "%s", query);
|
|
}
|
|
|
|
void MassMailMgr::Update(bool sendall /*= false*/)
|
|
{
|
|
if (m_massMails.empty())
|
|
{ return; }
|
|
|
|
uint32 maxcount = sWorld.getConfig(CONFIG_UINT32_MASS_MAILER_SEND_PER_TICK);
|
|
|
|
do
|
|
{
|
|
MassMail& task = m_massMails.front();
|
|
|
|
while (!task.m_receivers.empty() && (sendall || maxcount > 0))
|
|
{
|
|
uint32 receiver_lowguid = *task.m_receivers.begin();
|
|
task.m_receivers.erase(task.m_receivers.begin());
|
|
|
|
ObjectGuid receiver_guid = ObjectGuid(HIGHGUID_PLAYER, receiver_lowguid);
|
|
Player* receiver = sObjectMgr.GetPlayer(receiver_guid);
|
|
|
|
// last case. can be just send
|
|
if (task.m_receivers.empty())
|
|
{
|
|
// prevent mail return
|
|
task.m_protoMail->SendMailTo(MailReceiver(receiver, receiver_guid), task.m_sender, MAIL_CHECK_MASK_RETURNED);
|
|
|
|
if (!sendall)
|
|
{ --maxcount; }
|
|
break;
|
|
}
|
|
|
|
// need clone draft
|
|
MailDraft draft;
|
|
draft.CloneFrom(*task.m_protoMail);
|
|
|
|
// prevent mail return
|
|
draft.SendMailTo(MailReceiver(receiver, receiver_guid), task.m_sender, MAIL_CHECK_MASK_RETURNED);
|
|
|
|
if (!sendall)
|
|
{ --maxcount; }
|
|
}
|
|
|
|
if (task.m_receivers.empty())
|
|
{ m_massMails.pop_front(); }
|
|
}
|
|
while (!m_massMails.empty() && (sendall || maxcount > 0));
|
|
}
|
|
|
|
void MassMailMgr::GetStatistic(uint32& tasks, uint32& mails, uint32& needTime) const
|
|
{
|
|
tasks = m_massMails.size();
|
|
|
|
uint32 mailsCount = 0;
|
|
for (MassMailList::const_iterator mailItr = m_massMails.begin(); mailItr != m_massMails.end(); ++mailItr)
|
|
{ mailsCount += mailItr->m_receivers.size(); }
|
|
|
|
mails = mailsCount;
|
|
|
|
// 50 msecs is tick length
|
|
needTime = 50 * mailsCount / sWorld.getConfig(CONFIG_UINT32_MASS_MAILER_SEND_PER_TICK) / IN_MILLISECONDS;
|
|
}
|
|
|
|
|
|
/*! @} */
|