lokinet/llarp/messages/link_message_parser.hpp
Stephen Shelton 273270916e
The Great Wall of Blame
This commit reflects changes to clang-format rules. Unfortunately,
these rule changes create a massive change to the codebase, which
causes an apparent rewrite of git history.

Git blame's --ignore-rev flag can be used to ignore this commit when
attempting to `git blame` some code.
2020-04-07 12:38:56 -06:00

52 lines
999 B
C++

#ifndef LLARP_LINK_MESSAGE_PARSER_HPP
#define LLARP_LINK_MESSAGE_PARSER_HPP
#include <router_id.hpp>
#include <util/bencode.h>
#include <memory>
namespace llarp
{
struct AbstractRouter;
struct ILinkMessage;
struct ILinkSession;
struct LinkMessageParser
{
LinkMessageParser(AbstractRouter* router);
~LinkMessageParser();
bool
operator()(llarp_buffer_t* buffer, llarp_buffer_t* key);
/// start processig message from a link session
bool
ProcessFrom(ILinkSession* from, const llarp_buffer_t& buf);
/// called when the message is fully read
/// return true when the message was accepted otherwise returns false
bool
MessageDone();
/// resets internal state
void
Reset();
private:
RouterID
GetCurrentFrom();
private:
bool firstkey;
AbstractRouter* router;
ILinkSession* from;
ILinkMessage* msg;
struct msg_holder_t;
std::unique_ptr<msg_holder_t> holder;
};
} // namespace llarp
#endif