mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-20 21:53:12 +00:00
Throw exceptions in java server start for any failures
This commit is contained in:
parent
7939a780fb
commit
206f06f3f9
16
server.c
16
server.c
@ -157,9 +157,9 @@ JNIEXPORT jint JNICALL Java_org_servalproject_servaldna_ServalDCommand_server(
|
||||
|
||||
int pid = server_pid();
|
||||
if (pid < 0)
|
||||
return -1;
|
||||
return Throw(env, "java/lang/IllegalStateException", "Failed to read server pid "+pid);
|
||||
if (pid>0)
|
||||
return 1;
|
||||
return Throw(env, "java/lang/IllegalStateException", "Server already running on pid "+pid);
|
||||
|
||||
cf_reload_strict();
|
||||
|
||||
@ -192,19 +192,25 @@ JNIEXPORT jint JNICALL Java_org_servalproject_servaldna_ServalDCommand_server(
|
||||
}
|
||||
}
|
||||
|
||||
if (keyring_seed(keyring) == -1)
|
||||
if (keyring_seed(keyring) == -1){
|
||||
Throw(env, "java/lang/IllegalStateException", "Failed to seed keyring");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (server_env)
|
||||
if (server_env){
|
||||
Throw(env, "java/lang/IllegalStateException", "Server java env variable already set");
|
||||
goto end;
|
||||
}
|
||||
|
||||
server_env = env;
|
||||
JniCallback = (*env)->NewGlobalRef(env, callback);
|
||||
|
||||
ret = server_bind();
|
||||
|
||||
if (ret==-1)
|
||||
if (ret==-1){
|
||||
Throw(env, "java/lang/IllegalStateException", "Failed to bind sockets");
|
||||
goto end;
|
||||
}
|
||||
|
||||
{
|
||||
jstring str = (jstring)(*env)->NewStringUTF(env, instance_path());
|
||||
|
Loading…
Reference in New Issue
Block a user