summaryrefslogtreecommitdiff
path: root/platform/node/src/node_request.hpp
blob: 2d307a3f193c3df4583399f357960bd596d6e6d6 (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
#pragma once

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
#pragma GCC diagnostic ignored "-Wshadow"
#include <nan.h>
#pragma GCC diagnostic pop

#include <mbgl/storage/resource.hpp>
#include <mbgl/storage/file_source.hpp>

namespace node_mbgl {

class NodeFileSource;
class NodeRequest;

class NodeRequest : public Nan::ObjectWrap {
public:
    static NAN_MODULE_INIT(Init);

    static NAN_METHOD(New);
    static NAN_METHOD(Respond);

    static v8::Handle<v8::Object> Create(const mbgl::Resource&, mbgl::FileSource::Callback);
    static Nan::Persistent<v8::Function> constructor;

    NodeRequest(mbgl::FileSource::Callback);
    ~NodeRequest();

    struct NodeAsyncRequest : public mbgl::AsyncRequest {
        NodeAsyncRequest(NodeRequest*);
        ~NodeAsyncRequest() override;
        NodeRequest* request;
    };

private:
    mbgl::FileSource::Callback callback;
    NodeAsyncRequest* asyncRequest = nullptr;
};

}