2024-01-12 12:53:16 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* dtranslatebot Discord Translate Bot
|
|
|
|
* Copyright (C) 2024 Syping
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* This software is provided as-is, no warranties are given to you, we are not
|
|
|
|
* responsible for anything with use of the software, you are self responsible.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include <thread>
|
|
|
|
#include "submit_queue.h"
|
2024-01-17 12:38:16 +01:00
|
|
|
#include "webhook_push.h"
|
2024-01-12 12:53:16 +01:00
|
|
|
using namespace std::chrono_literals;
|
|
|
|
|
|
|
|
void bot::submit_queue::add(const bot::translated_message &message)
|
|
|
|
{
|
|
|
|
m_mutex.lock();
|
|
|
|
m_queue.push_back(message);
|
|
|
|
m_mutex.unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void bot::submit_queue::run(dpp::cluster *bot)
|
|
|
|
{
|
|
|
|
m_running = true;
|
|
|
|
while (m_running) {
|
|
|
|
m_mutex.lock();
|
|
|
|
if (!m_queue.empty()) {
|
|
|
|
const bot::translated_message message = m_queue.front();
|
|
|
|
m_queue.erase(m_queue.begin());
|
|
|
|
m_mutex.unlock();
|
|
|
|
|
2024-01-20 22:39:23 +01:00
|
|
|
webhook_push::run(message, bot);
|
2024-01-12 12:53:16 +01:00
|
|
|
|
|
|
|
std::this_thread::yield();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
m_mutex.unlock();
|
|
|
|
std::this_thread::sleep_for(100ms);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void bot::submit_queue::terminate()
|
|
|
|
{
|
|
|
|
m_running = false;
|
|
|
|
}
|