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

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

#include <mbgl/storage/resource.hpp>

#include <memory>

namespace node_mbgl {

class NodeFileSource;

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(NodeFileSource*, const mbgl::Resource&);
    static Nan::Persistent<v8::Function> constructor;

    NodeRequest(NodeFileSource* source, const mbgl::Resource& resource);
    ~NodeRequest();

    void cancel();

private:
    NodeFileSource* source;
    std::unique_ptr<mbgl::Resource> resource;
};

}