summaryrefslogtreecommitdiff
path: root/platform/android/src/style/sources/vector_source.cpp
diff options
context:
space:
mode:
authorIvo van Dongen <ivovandongen@users.noreply.github.com>2016-09-21 11:04:32 +0200
committerGitHub <noreply@github.com>2016-09-21 11:04:32 +0200
commiteb97dbe383ca7697feab5860995b97181c39c607 (patch)
tree70bdd7b6ebea32aec132413fa703e92a2a0f63d0 /platform/android/src/style/sources/vector_source.cpp
parent3b546b964609d0f596dac32e155b1489bb85645e (diff)
downloadqtlocation-mapboxgl-eb97dbe383ca7697feab5860995b97181c39c607.tar.gz
[android] Sources: peer model, mutability (#6054)
Diffstat (limited to 'platform/android/src/style/sources/vector_source.cpp')
-rw-r--r--platform/android/src/style/sources/vector_source.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/platform/android/src/style/sources/vector_source.cpp b/platform/android/src/style/sources/vector_source.cpp
new file mode 100644
index 0000000000..0d065a3348
--- /dev/null
+++ b/platform/android/src/style/sources/vector_source.cpp
@@ -0,0 +1,53 @@
+#include "vector_source.hpp"
+
+#include "../android_conversion.hpp"
+#include "../value.hpp"
+#include "../conversion/url_or_tileset.hpp"
+
+#include <mbgl/util/variant.hpp>
+
+#include <string>
+
+namespace mbgl {
+namespace android {
+
+ VectorSource::VectorSource(jni::JNIEnv& env, jni::String sourceId, jni::Object<> urlOrTileSet)
+ : Source(
+ env,
+ std::make_unique<mbgl::style::VectorSource>(
+ jni::Make<std::string>(env, sourceId),
+ *style::conversion::convert<variant<std::string, Tileset>>(Value(env, urlOrTileSet))
+ )
+ ) {
+ }
+
+ VectorSource::VectorSource(mbgl::Map& map, mbgl::style::VectorSource& coreSource)
+ : Source(map, coreSource) {
+ }
+
+ VectorSource::~VectorSource() = default;
+
+ jni::Class<VectorSource> VectorSource::javaClass;
+
+ jni::jobject* VectorSource::createJavaPeer(jni::JNIEnv& env) {
+ static auto constructor = VectorSource::javaClass.template GetConstructor<jni::jlong>(env);
+ return VectorSource::javaClass.New(env, constructor, reinterpret_cast<jni::jlong>(this));
+ }
+
+ void VectorSource::registerNative(jni::JNIEnv& env) {
+ //Lookup the class
+ VectorSource::javaClass = *jni::Class<VectorSource>::Find(env).NewGlobalRef(env).release();
+
+ #define METHOD(MethodPtr, name) jni::MakeNativePeerMethod<decltype(MethodPtr), (MethodPtr)>(name)
+
+ //Register the peer
+ jni::RegisterNativePeer<VectorSource>(
+ env, VectorSource::javaClass, "nativePtr",
+ std::make_unique<VectorSource, JNIEnv&, jni::String, jni::Object<>>,
+ "initialize",
+ "finalize"
+ );
+ }
+
+} // namespace android
+} // namespace mbgl