mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 17:19:07 +00:00
41 lines
845 B
C++
41 lines
845 B
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#include "DatabaseEnv.h"
|
|
#include "DatabaseWorker.h"
|
|
#include "SQLOperation.h"
|
|
#include "MySQLConnection.h"
|
|
#include "MySQLThreading.h"
|
|
|
|
DatabaseWorker::DatabaseWorker(ACE_Activation_Queue* new_queue, MySQLConnection* con) :
|
|
m_queue(new_queue),
|
|
m_conn(con)
|
|
{
|
|
/// Assign thread to task
|
|
activate();
|
|
}
|
|
|
|
int DatabaseWorker::svc()
|
|
{
|
|
if (!m_queue)
|
|
return -1;
|
|
|
|
SQLOperation* request = nullptr;
|
|
while (1)
|
|
{
|
|
request = (SQLOperation*)(m_queue->dequeue());
|
|
if (!request)
|
|
break;
|
|
|
|
request->SetConnection(m_conn);
|
|
request->call();
|
|
|
|
delete request;
|
|
}
|
|
|
|
return 0;
|
|
}
|