Bitcoin Core 31.99.0
P2P Digital Currency
events.h
Go to the documentation of this file.
1// Copyright (c) 2016-present The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_SUPPORT_EVENTS_H
6#define BITCOIN_SUPPORT_EVENTS_H
7
8#include <ios>
9#include <memory>
10
11#include <event2/event.h>
12#include <event2/http.h>
13
14#define MAKE_RAII(type) \
15/* deleter */\
16struct type##_deleter {\
17 void operator()(struct type* ob) {\
18 type##_free(ob);\
19 }\
20};\
21/* unique ptr typedef */\
22typedef std::unique_ptr<struct type, type##_deleter> raii_##type
23
24MAKE_RAII(event_base);
25MAKE_RAII(event);
26MAKE_RAII(evhttp);
27
28inline raii_event_base obtain_event_base() {
29 auto result = raii_event_base(event_base_new());
30 if (!result.get())
31 throw std::runtime_error("cannot create event_base");
32 return result;
33}
34
35inline raii_event obtain_event(struct event_base* base, evutil_socket_t s, short events, event_callback_fn cb, void* arg) {
36 return raii_event(event_new(base, s, events, cb, arg));
37}
38
39inline raii_evhttp obtain_evhttp(struct event_base* base) {
40 return raii_evhttp(evhttp_new(base));
41}
42
43#endif // BITCOIN_SUPPORT_EVENTS_H
#define MAKE_RAII(type)
Definition: events.h:14
raii_evhttp obtain_evhttp(struct event_base *base)
Definition: events.h:39
raii_event obtain_event(struct event_base *base, evutil_socket_t s, short events, event_callback_fn cb, void *arg)
Definition: events.h:35
raii_event_base obtain_event_base()
Definition: events.h:28