summaryrefslogtreecommitdiff
path: root/platform/android/src/style/sources/unknown_source.cpp
blob: 86736597c3e4d6df0f077dc2c2206db9c86cc4b7 (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
#include "unknown_source.hpp"

namespace {

    // Dummy initializer (We don't support initializing this from the JVM)
    std::unique_ptr<mbgl::android::UnknownSource> init(jni::JNIEnv&) {
        throw std::runtime_error("UnknownSource should not be initialized from the JVM");
    }

} // namespace

namespace mbgl {
namespace android {

    UnknownSource::UnknownSource(mbgl::Map& map, mbgl::style::Source& coreSource)
        : Source(map, coreSource) {
    }

    jni::Class<UnknownSource> UnknownSource::javaClass;

    jni::jobject* UnknownSource::createJavaPeer(jni::JNIEnv& env) {
        static auto constructor = UnknownSource::javaClass.template GetConstructor<jni::jlong>(env);
        return UnknownSource::javaClass.New(env, constructor, reinterpret_cast<jni::jlong>(this));
    }

    void UnknownSource::registerNative(jni::JNIEnv& env) {
        // Lookup the class
        UnknownSource::javaClass = *jni::Class<UnknownSource>::Find(env).NewGlobalRef(env).release();

        #define METHOD(MethodPtr, name) jni::MakeNativePeerMethod<decltype(MethodPtr), (MethodPtr)>(name)

        // Register the peer
        jni::RegisterNativePeer<UnknownSource>(
            env, UnknownSource::javaClass, "nativePtr",
            init,
            "initialize",
            "finalize"
        );
    }

} // namespace android
} // namespace mbgl