summaryrefslogtreecommitdiff
path: root/platform/default/caching_http_file_source.cpp
blob: 3e74f5ed05fc43b929efeea9a7855f32c9b61f86 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#include <mbgl/platform/default/caching_http_file_source.hpp>
#include <mbgl/storage/file_request.hpp>
#include <mbgl/storage/http_request.hpp>
#include <mbgl/storage/sqlite_store.hpp>
#include <mbgl/util/uv-messenger.h>
#include <mbgl/util/std.hpp>

#include <uv.h>

namespace mbgl {

CachingHTTPFileSource::CachingHTTPFileSource(const std::string &path_)
    : path(path_) {}

CachingHTTPFileSource::~CachingHTTPFileSource() {
    if (hasLoop()) {
        assert(thread_id == std::this_thread::get_id());
        uv_messenger_stop(queue, [](uv_messenger_t *msgr) {
            delete msgr;
        });

        util::ptr<BaseRequest> req;

        // Send a cancel() message to all requests that we are still holding.
        for (const std::pair<std::string, std::weak_ptr<BaseRequest>> &pair : pending) {
            if ((req = pair.second.lock())) {
                req->cancel();
            }
        }
    }
}

void CachingHTTPFileSource::setLoop(uv_loop_t* loop_) {
    thread_id = std::this_thread::get_id();
    store = !path.empty() ? util::ptr<SQLiteStore>(new SQLiteStore(loop_, path)) : nullptr;
    loop = loop_;
    queue = new uv_messenger_t;

    uv_messenger_init(loop, queue, [](void *ptr) {
        std::unique_ptr<std::function<void()>> fn { reinterpret_cast<std::function<void()> *>(ptr) };
        (*fn)();
    });
    uv_unref((uv_handle_t *)&queue->async);
}

bool CachingHTTPFileSource::hasLoop() {
    return loop;
}

void CachingHTTPFileSource::setBase(const std::string &value) {
    assert(thread_id == std::this_thread::get_id());
    base = value;
}

const std::string &CachingHTTPFileSource::getBase() const {
    assert(thread_id == std::this_thread::get_id());
    return base;
}

std::unique_ptr<Request> CachingHTTPFileSource::request(ResourceType type, const std::string &url) {
    assert(thread_id == std::this_thread::get_id());

    // Make URL absolute.
    const std::string absoluteURL = [&]() -> std::string {
        const size_t separator = url.find("://");
        if (separator == std::string::npos) {
            // Relative URL.
            return base + url;
        } else {
            return url;
        }
    }();

    util::ptr<BaseRequest> req;

    // First, try to find an existing Request object.
    auto it = pending.find(absoluteURL);
    if (it != pending.end()) {
        req = it->second.lock();
    }

    if (!req) {
        if (absoluteURL.substr(0, 7) == "file://") {
            req = std::make_shared<FileRequest>(absoluteURL.substr(7), loop);
        } else {
            req = std::make_shared<HTTPRequest>(type, absoluteURL, loop, store);
        }

        pending.emplace(absoluteURL, req);
    }

    return util::make_unique<Request>(req);
}

void CachingHTTPFileSource::prepare(std::function<void()> fn) {
    if (thread_id == std::this_thread::get_id()) {
        fn();
    } else {
        uv_messenger_send(queue, new std::function<void()>(std::move(fn)));
    }
}

void CachingHTTPFileSource::retryAllPending() {
    assert(thread_id == std::this_thread::get_id());

    util::ptr<BaseRequest> req;
    for (const std::pair<std::string, std::weak_ptr<BaseRequest>> &pair : pending) {
        if ((req = pair.second.lock())) {
            req->retryImmediately();
        }
    }

}

}