summaryrefslogtreecommitdiff
path: root/src/runtime/java/jpgf.c
blob: 4796e32dd11432e5a6b712f6608b07f507a6785a (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
26
27
28
29
30
31
#include <pgf/pgf.h>
#include <gu/mem.h>
#include "org_grammaticalframework_PGF.h"

JNIEXPORT jobject JNICALL 
Java_org_grammaticalframework_PGF_readPGF(JNIEnv *env, jclass cls, jstring s)
{
	const char *fpath = (*env)->GetStringUTFChars(env, s, 0); 
 
	GuPool* pool = gu_new_pool();
	GuPool* tmp_pool = gu_local_pool();

	// Create an exception frame that catches all errors.
	GuExn* err = gu_new_exn(NULL, gu_kind(type), tmp_pool);

	// Read the PGF grammar.
	PgfPGF* pgf = pgf_read(fpath, pool, err);
	if (!gu_ok(err)) {
		gu_pool_free(pool);
		gu_pool_free(tmp_pool);
		return NULL;
	}

	gu_pool_free(tmp_pool);

	(*env)->ReleaseStringUTFChars(env, s, fpath);

	jmethodID constrId = (*env)->GetMethodID(env, cls, "<init>", "(II)V");

	return (*env)->NewObject(env, cls, constrId, (int) pool, (int) pgf);
}