blob: cec9619451fcb9ffdde39ebaf4ae22740bcc0df3 (
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
|
#pragma once
#include <mbgl/util/noncopyable.hpp>
#include <mbgl/util/optional.hpp>
#include <mbgl/util/any.hpp>
#include <mbgl/util/immutable.hpp>
#include <mbgl/style/types.hpp>
#include <memory>
#include <string>
namespace mbgl {
class FileSource;
namespace style {
class VectorSource;
class RasterSource;
class GeoJSONSource;
class SourceObserver;
/**
* The runtime representation of a [source](https://www.mapbox.com/mapbox-gl-style-spec/#sources) from the Mapbox Style
* Specification.
*
* `Source` is an abstract base class; concrete derived classes are provided for each source type. `Source` contains
* functionality that is common to all layer types:
*
* * Runtime type information: type predicates and casting
* * Accessors for properties common to all source types: ID, etc.
* * Cloning and copying
*
* All other functionality lives in the derived classes. To instantiate a source, create an instance of the desired
* type, passing the ID:
*
* auto vectorSource = std::make_unique<VectorSource>("my-vector-source");
*/
class Source : public mbgl::util::noncopyable {
public:
virtual ~Source();
// Check whether this source is of the given subtype.
template <class T>
bool is() const;
// Dynamically cast this source to the given subtype.
template <class T>
T* as() {
return is<T>() ? reinterpret_cast<T*>(this) : nullptr;
}
template <class T>
const T* as() const {
return is<T>() ? reinterpret_cast<const T*>(this) : nullptr;
}
SourceType getType() const;
std::string getID() const;
optional<std::string> getAttribution() const;
// Private implementation
class Impl;
Immutable<Impl> baseImpl;
Source(Immutable<Impl>);
void setObserver(SourceObserver*);
SourceObserver* observer = nullptr;
virtual void loadDescription(FileSource&) = 0;
void dumpDebugLogs() const;
bool loaded = false;
// For use in SDK bindings, which store a reference to a platform-native peer
// object here, so that separately-obtained references to this object share
// identical platform-native peers.
any peer;
};
} // namespace style
} // namespace mbgl
|