mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
75 lines
1.9 KiB
C++
75 lines
1.9 KiB
C++
#include "network_loki_lokinet_LokinetConfig.h"
|
|
#include <llarp.hpp>
|
|
#include <llarp/config/config.hpp>
|
|
#include "lokinet_jni_common.hpp"
|
|
|
|
extern "C"
|
|
{
|
|
JNIEXPORT jobject JNICALL
|
|
Java_network_loki_lokinet_LokinetConfig_Obtain(JNIEnv* env, jclass, jstring dataDir)
|
|
{
|
|
auto conf = VisitStringAsStringView<llarp::Config*>(
|
|
env, dataDir, [](std::string_view val) -> llarp::Config* {
|
|
return new llarp::Config{val};
|
|
});
|
|
|
|
if (conf == nullptr)
|
|
return nullptr;
|
|
return env->NewDirectByteBuffer(conf, sizeof(llarp::Config));
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_network_loki_lokinet_LokinetConfig_Free(JNIEnv* env, jclass, jobject buf)
|
|
{
|
|
auto ptr = FromBuffer<llarp::Config>(env, buf);
|
|
delete ptr;
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_network_loki_lokinet_LokinetConfig_Load(JNIEnv* env, jobject self)
|
|
{
|
|
auto conf = GetImpl<llarp::Config>(env, self);
|
|
if (conf == nullptr)
|
|
return JNI_FALSE;
|
|
if (conf->Load())
|
|
{
|
|
return JNI_TRUE;
|
|
}
|
|
return JNI_FALSE;
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL
|
|
Java_network_loki_lokinet_LokinetConfig_Save(JNIEnv* env, jobject self)
|
|
{
|
|
auto conf = GetImpl<llarp::Config>(env, self);
|
|
if (conf == nullptr)
|
|
return JNI_FALSE;
|
|
try
|
|
{
|
|
conf->Save();
|
|
}
|
|
catch (...)
|
|
{
|
|
return JNI_FALSE;
|
|
}
|
|
return JNI_TRUE;
|
|
}
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_network_loki_lokinet_LokinetConfig_AddDefaultValue(
|
|
JNIEnv* env, jobject self, jstring section, jstring key, jstring value)
|
|
{
|
|
auto convert = [](std::string_view str) -> std::string { return std::string{str}; };
|
|
|
|
const auto sect = VisitStringAsStringView<std::string>(env, section, convert);
|
|
const auto k = VisitStringAsStringView<std::string>(env, key, convert);
|
|
const auto v = VisitStringAsStringView<std::string>(env, value, convert);
|
|
|
|
auto conf = GetImpl<llarp::Config>(env, self);
|
|
if (conf)
|
|
{
|
|
conf->AddDefault(sect, k, v);
|
|
}
|
|
}
|
|
}
|