summaryrefslogtreecommitdiff
path: root/platform/android/src/string_util.cpp
blob: f02155caff04944cbd669cd8d4a71d5a466f55eb (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
#include <mbgl/util/platform.hpp>
#include "attach_env.hpp"
#include <jni/jni.hpp>

namespace mbgl {
namespace platform {

std::string uppercase(const std::string& str) {
    auto env{ android::AttachEnv() };
    jni::Local<jni::String> value = jni::Make<jni::String>(*env, str.c_str());
    static auto toUpperCase = jni::Class<jni::StringTag>::Singleton(*env).GetMethod<jni::String()>(*env, "toUpperCase");
    auto result = value.Call(*env, toUpperCase);
    return jni::Make<std::string>(*env, result);
}

std::string lowercase(const std::string& str) {
    auto env{ android::AttachEnv() };
    jni::Local<jni::String> value = jni::Make<jni::String>(*env, str.c_str());
    static auto toLowerCase = jni::Class<jni::StringTag>::Singleton(*env).GetMethod<jni::String()>(*env, "toLowerCase");
    auto result = value.Call(*env, toLowerCase);
    return jni::Make<std::string>(*env, result);
}

} // namespace platform
} // namespace mbgl