Files
rtorrent/src/rpc/command_scheduler.h
T
Rosen Penev 897a6face2 clang-tidy: use default member init
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2025-06-01 08:16:02 +02:00

59 lines
1.5 KiB
C++

#ifndef RTORRENT_COMMAND_SCHEDULER_H
#define RTORRENT_COMMAND_SCHEDULER_H
#include <cstdint>
#include <functional>
#include <string>
#include <vector>
namespace torrent {
class Object;
}
namespace rpc {
class CommandSchedulerItem;
class CommandScheduler : public std::vector<CommandSchedulerItem*> {
public:
typedef std::function<void (const std::string&)> SlotString;
typedef std::pair<int, int> Time;
typedef std::vector<CommandSchedulerItem*> base_type;
using base_type::value_type;
using base_type::begin;
using base_type::end;
CommandScheduler() = default;
~CommandScheduler();
void set_slot_error_message(SlotString s) { m_slotErrorMessage = s; }
// slot_error_message or something.
iterator find(const std::string& key);
// If the key already exists then the old item is deleted. It is
// safe to call erase on end().
iterator insert(const std::string& key);
void erase(iterator itr);
void erase_str(const std::string& key) { erase(find(key)); }
void parse(const std::string& key, const std::string& bufAbsolute,
const std::string& bufInterval, const torrent::Object& command);
static uint32_t parse_absolute(const char* str);
static uint32_t parse_interval(const char* str);
static Time parse_time(const char* str);
private:
void call_item(value_type item);
SlotString m_slotErrorMessage;
};
}
#endif