2018-08-05 23:49:23 +00:00
|
|
|
|
|
|
|
//#include <string.h>
|
|
|
|
#include <jni.h>
|
|
|
|
#include <llarp.h>
|
|
|
|
#include <signal.h>
|
2018-08-06 00:06:00 +00:00
|
|
|
#include <memory>
|
2018-08-05 23:49:23 +00:00
|
|
|
#include <thread>
|
|
|
|
|
2018-08-06 00:06:00 +00:00
|
|
|
struct AndroidMain
|
2018-08-05 23:49:23 +00:00
|
|
|
{
|
2018-08-06 00:06:00 +00:00
|
|
|
llarp_main* m_impl = nullptr;
|
|
|
|
std::thread* m_thread = nullptr;
|
2018-08-05 23:49:23 +00:00
|
|
|
|
2018-08-06 01:48:15 +00:00
|
|
|
bool
|
|
|
|
Start(const char* conf)
|
2018-08-05 23:49:23 +00:00
|
|
|
{
|
|
|
|
if(m_impl || m_thread)
|
2018-08-06 01:52:46 +00:00
|
|
|
return true;
|
2018-08-06 04:43:23 +00:00
|
|
|
if(!llarp_ensure_config(conf))
|
|
|
|
return false;
|
2018-08-06 01:48:15 +00:00
|
|
|
m_impl = llarp_main_init(conf, true);
|
|
|
|
if(m_impl == nullptr)
|
|
|
|
return false;
|
2018-08-05 23:49:23 +00:00
|
|
|
m_thread = new std::thread(std::bind(&AndroidMain::Run, this));
|
2018-08-06 01:48:15 +00:00
|
|
|
return true;
|
2018-08-05 23:49:23 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 00:12:19 +00:00
|
|
|
bool
|
|
|
|
Running() const
|
|
|
|
{
|
|
|
|
return m_impl != nullptr;
|
|
|
|
}
|
|
|
|
|
2018-08-06 00:06:00 +00:00
|
|
|
void
|
|
|
|
Run()
|
2018-08-05 23:49:23 +00:00
|
|
|
{
|
2018-08-06 04:20:00 +00:00
|
|
|
printf("running\n");
|
2018-08-05 23:49:23 +00:00
|
|
|
llarp_main_run(m_impl);
|
|
|
|
}
|
|
|
|
|
2018-08-06 00:06:00 +00:00
|
|
|
void
|
|
|
|
Stop()
|
2018-08-05 23:49:23 +00:00
|
|
|
{
|
|
|
|
llarp_main_signal(m_impl, SIGINT);
|
2018-08-06 00:12:19 +00:00
|
|
|
m_thread->join();
|
|
|
|
delete m_thread;
|
|
|
|
m_thread = nullptr;
|
|
|
|
llarp_main_free(m_impl);
|
|
|
|
m_impl = nullptr;
|
2018-08-05 23:49:23 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 00:06:00 +00:00
|
|
|
typedef std::unique_ptr< AndroidMain > Ptr;
|
2018-08-06 00:13:08 +00:00
|
|
|
};
|
2018-08-05 23:49:23 +00:00
|
|
|
|
2018-08-06 00:12:19 +00:00
|
|
|
static AndroidMain::Ptr daemon(new AndroidMain());
|
|
|
|
|
2018-08-05 23:49:23 +00:00
|
|
|
extern "C"
|
|
|
|
{
|
2018-08-06 00:06:00 +00:00
|
|
|
JNIEXPORT jstring JNICALL
|
2018-08-06 00:12:19 +00:00
|
|
|
Java_network_loki_lokinet_Lokinet_1JNI_getABICompiledWith(JNIEnv* env, jclass)
|
2018-08-06 00:06:00 +00:00
|
|
|
{
|
|
|
|
// TODO: fixme
|
2018-08-06 00:14:39 +00:00
|
|
|
return env->NewStringUTF("android");
|
2018-08-06 00:06:00 +00:00
|
|
|
}
|
2018-08-05 23:49:23 +00:00
|
|
|
|
2018-08-06 00:12:19 +00:00
|
|
|
JNIEXPORT jstring JNICALL
|
2018-08-06 01:48:15 +00:00
|
|
|
Java_network_loki_lokinet_Lokinet_1JNI_startLokinet(JNIEnv* env, jclass jcl,
|
|
|
|
jstring configfile)
|
2018-08-05 23:49:23 +00:00
|
|
|
{
|
2018-08-06 00:12:19 +00:00
|
|
|
if(daemon->Running())
|
2018-08-06 00:14:39 +00:00
|
|
|
return env->NewStringUTF("already running");
|
2018-08-06 01:48:15 +00:00
|
|
|
std::string conf;
|
2018-08-06 00:06:00 +00:00
|
|
|
{
|
2018-08-06 04:24:25 +00:00
|
|
|
const char* nativeString = env->GetStringUTFChars(configfile, JNI_FALSE);
|
2018-08-06 04:23:08 +00:00
|
|
|
conf += std::string(nativeString);
|
2018-08-06 04:24:25 +00:00
|
|
|
env->ReleaseStringUTFChars(configfile, nativeString);
|
2018-08-06 00:06:00 +00:00
|
|
|
}
|
2018-08-06 01:48:15 +00:00
|
|
|
if(daemon->Start(conf.c_str()))
|
|
|
|
return env->NewStringUTF("ok");
|
|
|
|
else
|
|
|
|
return env->NewStringUTF("failed to start");
|
2018-08-06 00:06:00 +00:00
|
|
|
}
|
|
|
|
|
2018-08-06 01:54:24 +00:00
|
|
|
JNIEXPORT void JNICALL
|
|
|
|
Java_network_loki_lokinet_Lokinet_1JNI_stopLokinet(JNIEnv* env, jclass)
|
2018-08-06 00:06:00 +00:00
|
|
|
{
|
2018-08-06 01:54:24 +00:00
|
|
|
if(daemon->Running())
|
|
|
|
{
|
|
|
|
daemon->Stop();
|
|
|
|
}
|
2018-08-06 00:06:00 +00:00
|
|
|
}
|
2018-08-06 01:48:15 +00:00
|
|
|
|
2018-08-06 01:54:24 +00:00
|
|
|
JNIEXPORT void JNICALL
|
|
|
|
Java_network_loki_lokinet_Lokinet_1JNI_onNetworkStateChanged(JNIEnv*, jclass,
|
|
|
|
jboolean)
|
|
|
|
{
|
|
|
|
}
|
2018-08-05 23:49:23 +00:00
|
|
|
}
|