summaryrefslogtreecommitdiff
path: root/render-test/file_source.hpp
blob: d0496ab8f610b185897a936f6692a51c5ee92f86 (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
#pragma once

#include <mbgl/storage/file_source.hpp>

namespace mbgl {

class ResourceOptions;

class ProxyFileSource : public FileSource {
public:
    ProxyFileSource(std::shared_ptr<FileSource>, const ResourceOptions&);
    ~ProxyFileSource();

    std::unique_ptr<AsyncRequest> request(const Resource&, Callback) override;
    bool canRequest(const Resource&) const override { return true; }

    /**
     * @brief Flag to change the networking mode of the file source.
     */
    static void setOffline(bool);

    /**
     * @brief Starts/stops metrics tracking.
     */
    static void setTrackingActive(bool);

    /**
     * @brief Returns metrics tracking status.
     */
    static bool isTrackingActive();

    /**
     * @brief Returns the total amount of requests.
     *
     * @return size_t
     */
    static size_t getRequestCount();

    /**
     * @brief Returns the size of transferred data (in bytes).
     *
     * @return size_t
     */
    static size_t getTransferredSize();

private:
    std::shared_ptr<FileSource> defaultResourceLoader;
};

} // namespace mbgl