2018-04-30 13:18:57 +00:00
|
|
|
#ifndef LLARP_EV_HPP
|
|
|
|
#define LLARP_EV_HPP
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2020-05-06 20:38:44 +00:00
|
|
|
#include <net/ip_address.hpp>
|
2021-01-11 23:13:22 +00:00
|
|
|
#include <net/ip_packet.hpp>
|
2019-01-11 01:19:36 +00:00
|
|
|
#include <ev/ev.h>
|
2019-02-02 23:12:42 +00:00
|
|
|
#include <util/buffer.hpp>
|
2019-01-13 22:39:10 +00:00
|
|
|
#include <util/codel.hpp>
|
2019-09-01 13:26:16 +00:00
|
|
|
#include <util/thread/threading.hpp>
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2018-10-01 02:08:03 +00:00
|
|
|
// writev
|
|
|
|
#ifndef _WIN32
|
2018-09-30 13:23:37 +00:00
|
|
|
#include <sys/uio.h>
|
2019-04-19 18:24:33 +00:00
|
|
|
#include <unistd.h>
|
2018-10-01 02:08:03 +00:00
|
|
|
#endif
|
2018-12-12 02:52:51 +00:00
|
|
|
|
2018-11-02 12:35:20 +00:00
|
|
|
#include <algorithm>
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <deque>
|
|
|
|
#include <list>
|
2019-03-03 20:51:47 +00:00
|
|
|
#include <future>
|
2019-07-30 23:42:13 +00:00
|
|
|
#include <utility>
|
2018-10-04 11:20:08 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2018-12-13 23:02:41 +00:00
|
|
|
// From the preview SDK, should take a look at that
|
|
|
|
// periodically in case its definition changes
|
|
|
|
#define UNIX_PATH_MAX 108
|
|
|
|
|
|
|
|
typedef struct sockaddr_un
|
2018-11-26 17:10:18 +00:00
|
|
|
{
|
2018-12-13 23:02:41 +00:00
|
|
|
ADDRESS_FAMILY sun_family; /* AF_UNIX */
|
|
|
|
char sun_path[UNIX_PATH_MAX]; /* pathname */
|
|
|
|
} SOCKADDR_UN, *PSOCKADDR_UN;
|
2018-12-03 20:37:25 +00:00
|
|
|
#else
|
2018-12-04 23:45:08 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || (__APPLE__ && __MACH__)
|
2018-12-04 23:45:08 +00:00
|
|
|
#include <sys/event.h>
|
|
|
|
#endif
|
|
|
|
|
2018-12-03 20:37:25 +00:00
|
|
|
#include <sys/un.h>
|
2018-10-04 11:20:08 +00:00
|
|
|
#endif
|
|
|
|
|
2019-08-22 11:18:05 +00:00
|
|
|
struct llarp_ev_pkt_pipe;
|
|
|
|
|
2018-08-15 15:36:34 +00:00
|
|
|
#ifndef MAX_WRITE_QUEUE_SIZE
|
2018-11-09 14:48:43 +00:00
|
|
|
#define MAX_WRITE_QUEUE_SIZE (1024UL)
|
2018-08-15 15:36:34 +00:00
|
|
|
#endif
|
2018-04-30 13:18:57 +00:00
|
|
|
|
2018-09-06 20:31:58 +00:00
|
|
|
#ifndef EV_READ_BUF_SZ
|
2018-11-09 14:48:43 +00:00
|
|
|
#define EV_READ_BUF_SZ (4 * 1024UL)
|
2018-09-06 20:31:58 +00:00
|
|
|
#endif
|
2018-10-27 18:26:08 +00:00
|
|
|
#ifndef EV_WRITE_BUF_SZ
|
2020-01-07 11:59:17 +00:00
|
|
|
#define EV_WRITE_BUF_SZ (4 * 1024UL)
|
2018-10-27 18:26:08 +00:00
|
|
|
#endif
|
2018-09-06 20:31:58 +00:00
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
namespace llarp
|
|
|
|
{
|
2021-01-11 23:13:22 +00:00
|
|
|
namespace vpn
|
2018-10-29 16:48:36 +00:00
|
|
|
{
|
2021-01-11 23:13:22 +00:00
|
|
|
class NetworkInterface;
|
|
|
|
}
|
2018-11-19 07:55:19 +00:00
|
|
|
|
2021-02-22 13:26:32 +00:00
|
|
|
/// distinct event loop waker uper
|
|
|
|
class EventLoopWakeup
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
std::function<void()> callback;
|
|
|
|
|
|
|
|
public:
|
|
|
|
EventLoopWakeup(std::function<void()> cb) : callback{cb}
|
|
|
|
{}
|
|
|
|
|
|
|
|
virtual ~EventLoopWakeup() = default;
|
|
|
|
|
|
|
|
/// async wakeup and call callback once
|
|
|
|
virtual void
|
|
|
|
Wakeup() = 0;
|
|
|
|
|
|
|
|
/// end operation
|
|
|
|
virtual void
|
|
|
|
End() = 0;
|
|
|
|
};
|
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
// this (nearly!) abstract base class
|
|
|
|
// is overriden for each platform
|
|
|
|
struct EventLoop
|
|
|
|
{
|
|
|
|
virtual bool
|
|
|
|
init() = 0;
|
2018-10-24 18:02:42 +00:00
|
|
|
|
|
|
|
virtual int
|
2021-01-11 23:13:22 +00:00
|
|
|
run() = 0;
|
2018-10-24 18:02:42 +00:00
|
|
|
|
2018-10-25 12:39:32 +00:00
|
|
|
virtual bool
|
2021-01-11 23:13:22 +00:00
|
|
|
running() const = 0;
|
2018-10-24 18:02:42 +00:00
|
|
|
|
2018-11-02 20:43:53 +00:00
|
|
|
virtual void
|
2021-01-11 23:13:22 +00:00
|
|
|
update_time()
|
|
|
|
{}
|
2018-11-02 20:43:53 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual llarp_time_t
|
|
|
|
time_now() const
|
2018-10-24 18:02:42 +00:00
|
|
|
{
|
2021-01-11 23:13:22 +00:00
|
|
|
return llarp::time_now_ms();
|
2018-10-24 18:02:42 +00:00
|
|
|
}
|
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual void
|
|
|
|
stopped(){};
|
2018-10-29 23:56:05 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual uint32_t
|
|
|
|
call_after_delay(llarp_time_t delay_ms, std::function<void(void)> callback) = 0;
|
2018-11-02 12:35:20 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual void
|
|
|
|
cancel_delayed_call(uint32_t call_id) = 0;
|
2018-10-25 12:00:29 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual bool
|
|
|
|
add_network_interface(
|
|
|
|
std::shared_ptr<vpn::NetworkInterface> netif,
|
|
|
|
std::function<void(net::IPPacket)> packetHandler) = 0;
|
2018-10-25 13:40:07 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual bool
|
|
|
|
add_ticker(std::function<void(void)> ticker) = 0;
|
2018-10-29 23:56:05 +00:00
|
|
|
|
2018-11-01 12:47:14 +00:00
|
|
|
virtual void
|
2021-01-11 23:13:22 +00:00
|
|
|
stop() = 0;
|
2018-10-29 23:56:05 +00:00
|
|
|
|
|
|
|
virtual bool
|
2021-01-11 23:13:22 +00:00
|
|
|
udp_listen(llarp_udp_io* l, const llarp::SockAddr& src) = 0;
|
2018-10-29 23:56:05 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual bool
|
|
|
|
udp_close(llarp_udp_io* l) = 0;
|
2018-10-25 12:00:29 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
/// give this event loop a logic thread for calling
|
|
|
|
virtual void set_logic(std::shared_ptr<llarp::Logic>) = 0;
|
2019-07-06 17:03:40 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual ~EventLoop() = default;
|
2018-10-29 23:56:05 +00:00
|
|
|
|
2018-11-02 12:35:20 +00:00
|
|
|
virtual void
|
2021-01-11 23:13:22 +00:00
|
|
|
call_soon(std::function<void(void)> f) = 0;
|
2018-11-02 12:35:20 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
/// set the function that is called once per cycle the flush all the queues
|
2018-12-14 15:43:44 +00:00
|
|
|
virtual void
|
2021-01-11 23:13:22 +00:00
|
|
|
set_pump_function(std::function<void(void)> pumpll) = 0;
|
2018-12-14 15:43:44 +00:00
|
|
|
|
2018-10-29 23:56:05 +00:00
|
|
|
virtual void
|
2021-01-11 23:13:22 +00:00
|
|
|
register_poll_fd_readable(int fd, std::function<void(void)> callback) = 0;
|
2018-10-29 23:56:05 +00:00
|
|
|
|
2021-01-11 23:13:22 +00:00
|
|
|
virtual void
|
|
|
|
deregister_poll_fd_readable(int fd) = 0;
|
2021-02-22 13:26:32 +00:00
|
|
|
|
|
|
|
/// make an event loop waker on this event loop
|
|
|
|
virtual EventLoopWakeup*
|
|
|
|
make_event_loop_waker(std::function<void()> callback) = 0;
|
2018-10-25 12:00:29 +00:00
|
|
|
};
|
2019-04-25 23:21:19 +00:00
|
|
|
} // namespace llarp
|
2018-04-30 13:18:57 +00:00
|
|
|
#endif
|