354d022967
commit f44d146e4ac906ff898e8968c6857fd2280f6d20 Author: project-bo4 <127137346+project-bo4@users.noreply.github.com> Date: Thu May 11 13:39:29 2023 -0700 remove lpc package from repository commit 29fb0f63e50de468ab0b9db35f7e8fdadf58afc3 Author: project-bo4 <themanwithantidote@gmail.com> Date: Thu May 11 13:06:13 2023 -0700 generic improvements + added identity configuration + objectstore improvements + added battlenet 'US' servers to blocklist + some other minor improvements commit 5d5e31099ebcce5a637b9a02d4936a97fb0802a7 Author: project-bo4 <themanwithantidote@gmail.com> Date: Sat Mar 25 16:32:52 2023 -0700 lpc improvements + fix lpc issue with foreign languages(non-english) not being considered in listing + check lpc files pre-start and warn user if missing any of core items commit 2de1a54b6f4cc5c44dc906871021cfbc85057ca9 Author: project-bo4 <themanwithantidote@gmail.com> Date: Thu Mar 23 12:45:56 2023 -0700 demonware improvements + handle object store uploadUserObject + silence bdUNK125 commit 710dcc3ec6178071d67c27e5bf6705f08cabe7e2 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 13:43:56 2023 -0700 forgot to update names commit 217682dfb07b35f7a09399fb2698924bb7fe8b77 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 11:09:18 2023 -0700 upload lpc and update readme commit 83f812b33b90791a8d13b9468f27da51e0a4f2b9 Author: project-bo4 <themanwithantidote@gmail.com> Date: Mon Mar 20 10:53:43 2023 -0700 demonware emulator + demonware emulator + platform name and id + xxhash and picoproto - remove g_runframe hook -disable discovery(save time) + improvements to utils + add new resources
90 lines
1.9 KiB
C++
90 lines
1.9 KiB
C++
#pragma once
|
|
#include <utils/string.hpp>
|
|
#include "servers/service_server.hpp"
|
|
|
|
namespace demonware
|
|
{
|
|
class service
|
|
{
|
|
using callback_t = std::function<void(service_server*, byte_buffer*)>;
|
|
|
|
uint8_t id_;
|
|
std::string name_;
|
|
std::mutex mutex_;
|
|
uint8_t task_id_;
|
|
std::map<uint8_t, callback_t> tasks_;
|
|
|
|
public:
|
|
virtual ~service() = default;
|
|
service(service&&) = delete;
|
|
service(const service&) = delete;
|
|
service& operator=(const service&) = delete;
|
|
|
|
service(const uint8_t id, std::string name) : id_(id), name_(std::move(name)), task_id_(0)
|
|
{
|
|
}
|
|
|
|
uint8_t id() const
|
|
{
|
|
return this->id_;
|
|
}
|
|
|
|
const std::string& name() const
|
|
{
|
|
return this->name_;
|
|
}
|
|
|
|
uint8_t task_id() const
|
|
{
|
|
return this->task_id_;
|
|
}
|
|
|
|
virtual void exec_task(service_server* server, const std::string& data)
|
|
{
|
|
std::lock_guard<std::mutex> _(this->mutex_);
|
|
|
|
byte_buffer buffer(data);
|
|
|
|
buffer.read_ubyte(&this->task_id_);
|
|
|
|
const auto& it = this->tasks_.find(this->task_id_);
|
|
|
|
if (it != this->tasks_.end())
|
|
{
|
|
#ifndef NDEBUG
|
|
logger::write(logger::LOG_TYPE_DEBUG, "[DW] %s: executing task '%d'", name_.data(), this->task_id_);
|
|
#endif
|
|
|
|
it->second(server, &buffer);
|
|
}
|
|
else
|
|
{
|
|
logger::write(logger::LOG_TYPE_DEBUG, "[DW] %s: missing task '%d'", name_.data(), this->task_id_);
|
|
|
|
// return no error
|
|
server->create_reply(this->task_id_)->send();
|
|
}
|
|
}
|
|
|
|
protected:
|
|
|
|
template <typename Class, typename T, typename... Args>
|
|
void register_task(const uint8_t id, T (Class::* callback)(Args ...) const)
|
|
{
|
|
this->tasks_[id] = [this, callback](Args ... args) -> T
|
|
{
|
|
return (reinterpret_cast<Class*>(this)->*callback)(args...);
|
|
};
|
|
}
|
|
|
|
template <typename Class, typename T, typename... Args>
|
|
void register_task(const uint8_t id, T (Class::* callback)(Args ...))
|
|
{
|
|
this->tasks_[id] = [this, callback](Args ... args) -> T
|
|
{
|
|
return (reinterpret_cast<Class*>(this)->*callback)(args...);
|
|
};
|
|
}
|
|
};
|
|
}
|