summaryrefslogtreecommitdiff
path: root/platform/android/src/geojson/geometry_collection.cpp
blob: cca909126d446f02243bfd1419dacd285cad77f7 (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
#include "geometry_collection.hpp"
#include "../java/util.hpp"

namespace mbgl {
namespace android {
namespace geojson {

jni::Local<jni::Object<GeometryCollection>> GeometryCollection::New(jni::JNIEnv& env, const mapbox::geometry::geometry_collection<double>& collection) {
    // Create an array of geometries
    auto jarray = jni::Array<jni::Object<Geometry>>::New(env, collection.size());

    for (size_t i = 0; i < collection.size(); i++) {
        jarray.Set(env, i, Geometry::New(env, collection.at(i)));
    }

    // create the GeometryCollection
    static auto& javaClass = jni::Class<GeometryCollection>::Singleton(env);
    static auto method = javaClass.GetStaticMethod<jni::Object<GeometryCollection> (jni::Object<java::util::List>)>(env, "fromGeometries");
    return javaClass.Call(env, method, java::util::Arrays::asList(env, jarray));
}

mapbox::geometry::geometry_collection<double> GeometryCollection::convert(jni::JNIEnv &env, const jni::Object<GeometryCollection>& jCollection) {
    // Get geometries
    static auto& javaClass = jni::Class<GeometryCollection>::Singleton(env);
    static auto getGeometries = javaClass.GetMethod<jni::Object<java::util::List> ()>(env, "geometries");

    // Turn into array
    auto jarray = java::util::List::toArray<Geometry>(env, jCollection.Call(env, getGeometries));

    // Convert each geometry
    mapbox::geometry::geometry_collection<double> collection{};

    auto size = jarray.Length(env);
    for (jni::jsize i = 0; i < size; i++) {
        collection.push_back(Geometry::convert(env, jarray.Get(env, i)));
    }

    return collection;
}

void GeometryCollection::registerNative(jni::JNIEnv &env) {
    jni::Class<GeometryCollection>::Singleton(env);
}

} // namespace geojson
} // namespace android
} // namespace mbgl