blob: b631abf13dcb9652f20accc51100fe035c335c7c (
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
59
60
61
62
|
#ifndef MBGL_MAP_MAP_ENVIRONMENT
#define MBGL_MAP_MAP_ENVIRONMENT
#include <mbgl/util/noncopyable.hpp>
#include <mbgl/util/util.hpp>
#include <thread>
#include <functional>
typedef struct uv_loop_s uv_loop_t;
namespace mbgl {
class FileSource;
class Request;
class Response;
struct Resource;
enum class ThreadType : uint8_t {
Unknown = 0,
Main = 1 << 0,
Map = 1 << 1,
TileWorker = 1 << 2,
};
class Environment final : private util::noncopyable {
public:
class Scope final {
public:
Scope(Environment&, ThreadType, const std::string& name);
~Scope();
private:
std::thread::id id;
};
Environment(FileSource&);
static Environment& Get();
static bool inScope();
static bool currentlyOn(ThreadType);
static std::string threadName();
unsigned getID() const;
void requestAsync(const Resource&, std::function<void(const Response&)>);
Request* request(const Resource&, std::function<void(const Response&)>);
void cancelRequest(Request*);
// Request to terminate the environment.
void terminate();
private:
unsigned id;
FileSource& fileSource;
public:
uv_loop_t* const loop;
};
}
#endif
|