summaryrefslogtreecommitdiff
path: root/include/mbgl/storage/default/request.hpp
blob: b686d1fe90b187c7993fb79e958e86974fc4e73e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#ifndef MBGL_STORAGE_DEFAULT_REQUEST
#define MBGL_STORAGE_DEFAULT_REQUEST

#include <mbgl/storage/resource.hpp>

#include <mbgl/util/util.hpp>
#include <mbgl/util/noncopyable.hpp>

#include <functional>
#include <memory>

typedef struct uv_async_s uv_async_t;
typedef struct uv_loop_s uv_loop_t;

namespace mbgl {

class Response;
class Environment;

class Request : private util::noncopyable {
    MBGL_STORE_THREAD(tid)

public:
    using Callback = std::function<void(const Response &)>;
    Request(const Resource &resource, uv_loop_t *loop, const Environment &env, Callback callback);

public:
    // May be called from any thread.
    void notify(const std::shared_ptr<const Response> &response);
    void destruct();

    // May be called only from the thread the Request was created in.
    void cancel();

private:
    ~Request();
    void invoke();
    static void notifyCallback(uv_async_t *async);
    static void cancelCallback(uv_async_t *async);

private:
    uv_async_t *notifyAsync = nullptr;
    uv_async_t *destructAsync = nullptr;
    Callback callback;
    std::shared_ptr<const Response> response;

public:
    const Resource resource;

    // The environment ref is used to associate requests with a particular environment. This allows
    // us to only terminate requests associated with that environment, e.g. when the map the env
    // belongs to is discarded.
    const Environment &env;
};

}

#endif