summaryrefslogtreecommitdiff
path: root/platform/android/src/style/sources/source.hpp
blob: 383017b66f7d31bccdea0e87e5a2ffe8a4403d70 (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
#pragma once

#include <mbgl/util/noncopyable.hpp>
#include <mbgl/map/map.hpp>
#include <mbgl/style/source.hpp>

#include "../value.hpp"
#include "../../android_renderer_frontend.hpp"

#include <jni/jni.hpp>

namespace mbgl {
namespace android {

class Source : private mbgl::util::noncopyable {
public:

    static constexpr auto Name() { return "com/mapbox/mapboxsdk/style/sources/Source"; };

    static jni::Class<Source> javaClass;

    static void registerNative(jni::JNIEnv&);

    /*
     * Called when a Java object is created on the c++ side
     */
    Source(mbgl::style::Source&);

    /*
     * Called when a Java object was created from the jvm side
     */
    Source(jni::JNIEnv&, std::unique_ptr<mbgl::style::Source>);

    virtual ~Source();

    /**
     * Set core source (ie return ownership after remove)
     */
    void setSource(std::unique_ptr<style::Source>);

    style::Source& get();

    void addToMap(mbgl::Map&);

    void setRendererFrontend(AndroidRendererFrontend&);

    virtual jni::jobject* createJavaPeer(jni::JNIEnv&) = 0;

    jni::String getId(jni::JNIEnv&);

    jni::String getAttribution(jni::JNIEnv&);

protected:
    // Release the owned view and return it
    std::unique_ptr<mbgl::style::Source> releaseCoreSource();

    // Set on newly created sources until added to the map
    std::unique_ptr<mbgl::style::Source> ownedSource;

    // Raw pointer that is valid until the source is removed from the map
    mbgl::style::Source& source;

    // RendererFrontend pointer is valid only when
    // added to the map
    AndroidRendererFrontend* rendererFrontend;
};

} // namespace android
} // namespace mbgl