2018-01-25 16:24:33 +00:00
|
|
|
#ifndef LLARP_EV_H
|
|
|
|
#define LLARP_EV_H
|
|
|
|
|
2018-05-22 15:54:19 +00:00
|
|
|
#include <netinet/in.h>
|
2018-01-29 14:19:00 +00:00
|
|
|
#include <stdbool.h>
|
2018-01-29 14:27:24 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2018-01-25 16:24:33 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/**
|
|
|
|
* ev.h
|
|
|
|
*
|
|
|
|
* event handler (cross platform high performance event system for IO)
|
|
|
|
*/
|
|
|
|
|
2018-06-06 12:46:26 +00:00
|
|
|
// forward declare
|
|
|
|
struct llarp_threadpool;
|
|
|
|
struct llarp_logic;
|
|
|
|
|
2018-01-29 14:27:24 +00:00
|
|
|
struct llarp_ev_loop;
|
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/// allocator
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_ev_loop_alloc(struct llarp_ev_loop **ev);
|
2018-05-25 09:17:08 +00:00
|
|
|
|
|
|
|
// deallocator
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_ev_loop_free(struct llarp_ev_loop **ev);
|
2018-01-29 14:27:24 +00:00
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/// run main loop
|
2018-05-22 15:54:19 +00:00
|
|
|
int
|
|
|
|
llarp_ev_loop_run(struct llarp_ev_loop *ev);
|
2018-05-25 09:17:08 +00:00
|
|
|
|
2018-06-06 12:46:26 +00:00
|
|
|
void
|
|
|
|
llarp_ev_loop_run_single_process(struct llarp_ev_loop *ev,
|
|
|
|
struct llarp_threadpool *tp,
|
|
|
|
struct llarp_logic *logic);
|
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/// stop event loop and wait for it to complete all jobs
|
2018-05-22 15:54:19 +00:00
|
|
|
void
|
|
|
|
llarp_ev_loop_stop(struct llarp_ev_loop *ev);
|
2018-01-29 14:27:24 +00:00
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/// UDP handling configuration
|
2018-05-22 15:54:19 +00:00
|
|
|
struct llarp_udp_io
|
|
|
|
{
|
2018-01-29 14:27:24 +00:00
|
|
|
void *user;
|
|
|
|
void *impl;
|
2018-05-22 15:54:19 +00:00
|
|
|
struct llarp_ev_loop *parent;
|
2018-06-27 13:14:07 +00:00
|
|
|
/// called every event loop tick after reads
|
|
|
|
void (*tick)(struct llarp_udp_io *);
|
2018-05-18 17:10:48 +00:00
|
|
|
void (*recvfrom)(struct llarp_udp_io *, const struct sockaddr *, const void *,
|
2018-01-29 14:27:24 +00:00
|
|
|
ssize_t);
|
|
|
|
};
|
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/// add UDP handler
|
2018-05-22 15:54:19 +00:00
|
|
|
int
|
2018-05-23 13:49:00 +00:00
|
|
|
llarp_ev_add_udp(struct llarp_ev_loop *ev, struct llarp_udp_io *udp,
|
|
|
|
const struct sockaddr *src);
|
2018-01-29 14:27:24 +00:00
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/// schedule UDP packet
|
2018-05-22 15:54:19 +00:00
|
|
|
int
|
|
|
|
llarp_ev_udp_sendto(struct llarp_udp_io *udp, const struct sockaddr *to,
|
|
|
|
const void *data, size_t sz);
|
2018-04-30 16:14:20 +00:00
|
|
|
|
2018-05-25 09:17:08 +00:00
|
|
|
/// close UDP handler
|
2018-05-22 15:54:19 +00:00
|
|
|
int
|
|
|
|
llarp_ev_close_udp(struct llarp_udp_io *udp);
|
2018-01-29 14:27:24 +00:00
|
|
|
|
2018-01-25 16:24:33 +00:00
|
|
|
#endif
|