summaryrefslogtreecommitdiff
path: root/src/mbgl/style/tile_source_impl.hpp
blob: 1ceb1188db203d47cb8037bf52bd689248c1bab7 (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
#pragma once

#include <mbgl/style/source_impl.hpp>
#include <mbgl/util/tileset.hpp>
#include <mbgl/util/variant.hpp>
#include <mbgl/util/optional.hpp>
#include <mbgl/util/rapidjson.hpp>

namespace mbgl {

class AsyncRequest;

namespace style {

/*
   Shared implementation for VectorSource and RasterSource. Should eventually
   be refactored to use composition rather than inheritance.
*/
class TileSourceImpl : public Source::Impl {
public:
    // A tile source can either specify a URL to TileJSON, or inline TileJSON.
    static optional<variant<std::string, Tileset>> parseURLOrTileset(const JSValue&);
    static Tileset parseTileJSON(const std::string& json, const std::string& sourceURL, SourceType, uint16_t tileSize);

    TileSourceImpl(SourceType, std::string id, Source&,
                   variant<std::string, Tileset> urlOrTileset,
                   uint16_t tileSize);
    ~TileSourceImpl() override;

    void load(FileSource&) final;

    uint16_t getTileSize() const final {
        return tileSize;
    }

    const variant<std::string, Tileset>& getURLOrTileset() const {
        return urlOrTileset;
    }

protected:
    Range<uint8_t> getZoomRange() final;

    const variant<std::string, Tileset> urlOrTileset;
    const uint16_t tileSize;

    Tileset tileset;
    std::unique_ptr<AsyncRequest> req;
};

} // namespace style
} // namespace mbgl