1 /*
2 * Copyright (C) 2022 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <jni.h>
18
19 #include "android-base/properties.h"
20 #include "nativehelper/ScopedUtfChars.h"
21
22 extern "C"
Java_tests_support_AndroidProperties_getString(JNIEnv * env,jclass,jstring jprop_name,jstring jdef)23 JNIEXPORT jstring JNICALL Java_tests_support_AndroidProperties_getString(
24 JNIEnv* env, jclass, jstring jprop_name, jstring jdef) {
25
26 ScopedUtfChars prop_name(env, jprop_name);
27 ScopedUtfChars def(env, jdef);
28 std::string prop = android::base::GetProperty(prop_name.c_str(), def.c_str());
29 return env->NewStringUTF(prop.c_str());
30 }
31
32 extern "C"
Java_tests_support_AndroidProperties_getInt(JNIEnv * env,jclass,jstring jprop_name,jint jdef)33 JNIEXPORT jint JNICALL Java_tests_support_AndroidProperties_getInt(
34 JNIEnv* env, jclass, jstring jprop_name, jint jdef) {
35
36 ScopedUtfChars prop_name(env, jprop_name);
37 return android::base::GetIntProperty(prop_name.c_str(), jdef);
38 }
39
40