Bitcoin ABC 0.26.3
P2P Digital Currency
Loading...
Searching...
No Matches
events.h
Go to the documentation of this file.
1// Copyright (c) 2016 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 */ \
16 struct type##_deleter { \
17 void operator()(struct type *ob) { \
18 type##_free(ob); \
19 } \
20 }; \
21 /* unique ptr typedef */ \
22 typedef std::unique_ptr<struct type, type##_deleter> raii_##type
23
25MAKE_RAII(event);
29
31 auto result = raii_event_base(event_base_new());
32 if (!result.get()) {
33 throw std::runtime_error("cannot create event_base");
34 }
35 return result;
36}
37
39 short events, event_callback_fn cb, void *arg) {
40 return raii_event(event_new(base, s, events, cb, arg));
41}
42
43inline raii_evhttp obtain_evhttp(struct event_base *base) {
44 return raii_evhttp(evhttp_new(base));
45}
46
48obtain_evhttp_request(void (*cb)(struct evhttp_request *, void *), void *arg) {
50}
51
53obtain_evhttp_connection_base(struct event_base *base, std::string host,
54 uint16_t port) {
55 auto result = raii_evhttp_connection(
56 evhttp_connection_base_new(base, nullptr, host.c_str(), port));
57 if (!result.get()) {
58 throw std::runtime_error("create connection failed");
59 }
60 return result;
61}
62
63#endif // BITCOIN_SUPPORT_EVENTS_H
#define MAKE_RAII(type)
Definition events.h:14
raii_evhttp obtain_evhttp(struct event_base *base)
Definition events.h:43
raii_evhttp_request obtain_evhttp_request(void(*cb)(struct evhttp_request *, void *), void *arg)
Definition events.h:48
raii_evhttp_connection obtain_evhttp_connection_base(struct event_base *base, std::string host, uint16_t port)
Definition events.h:53
raii_event obtain_event(struct event_base *base, evutil_socket_t s, short events, event_callback_fn cb, void *arg)
Definition events.h:38
raii_event_base obtain_event_base()
Definition events.h:30
T GetRand(T nMax=std::numeric_limits< T >::max()) noexcept
Generate a uniform random integer of type T in the range [0..nMax) nMax defaults to std::numeric_limi...
Definition random.h:85