summaryrefslogtreecommitdiff
path: root/include/mbgl/storage/caching_http_file_source.hpp
blob: 08fd5b50cb97f5528321a5839d7533609349df51 (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
#ifndef MBGL_STORAGE_CACHING_HTTP_FILE_SOURCE
#define MBGL_STORAGE_CACHING_HTTP_FILE_SOURCE

#include <mbgl/storage/file_source.hpp>

#include <thread>
#include <unordered_map>

typedef struct uv_messenger_s uv_messenger_t;

namespace mbgl {

class BaseRequest;
class SQLiteStore;

class CachingHTTPFileSource : public FileSource {
public:
    CachingHTTPFileSource(const std::string &path_);
    virtual ~CachingHTTPFileSource();

    // Stores and checks the libuv loop for requests
    void setLoop(uv_loop_t*);
    bool hasLoop();

    // Stores and retrieves the base path/URL for relative requests
    void setBase(const std::string &value);
    const std::string &getBase() const;

    std::unique_ptr<Request> request(ResourceType type, const std::string &url);

    void prepare(std::function<void()> fn);

    void retryAllPending();

private:
    std::thread::id thread_id;

    // Path to the cache database.
    std::string path;

    // Stores a URL that is used as a base for loading resources with relative path.
    std::string base;

    std::unordered_map<std::string, std::weak_ptr<BaseRequest>> pending;
    util::ptr<SQLiteStore> store;
    uv_loop_t *loop = nullptr;
    uv_messenger_t *queue = nullptr;
};

}

#endif