From b508c3209c43ce26c378807ae37c53fa908faa5b Mon Sep 17 00:00:00 2001 From: Mark Donszelmann Date: Thu, 29 Oct 2009 22:09:45 +0100 Subject: Fixed NAR-5 and NAR-98 --- .../it0014-jni-dep-lib-shared/pom.xml | 70 ++++++++++++++++++++++ .../src/main/c/HelloWorldSharedLibJNI.c | 36 +++++++++++ .../main/java/it0014/HelloWorldSharedLibJNI.java | 36 +++++++++++ .../it0014/test/HelloWorldSharedLibJNITest.java | 36 +++++++++++ .../it0014-multi-module/it0014-lib-shared/pom.xml | 67 +++++++++++++++++++++ .../it0014-lib-shared/src/main/c/HelloWorldLib.c | 7 +++ .../src/main/include/HelloWorldLib.h | 9 +++ .../it0014-lib-shared/src/test/c/HelloWorldTest.c | 9 +++ src/it/it0014-multi-module/pom.xml | 50 ++++++++++++++++ 9 files changed, 320 insertions(+) create mode 100644 src/it/it0014-multi-module/it0014-jni-dep-lib-shared/pom.xml create mode 100644 src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/main/c/HelloWorldSharedLibJNI.c create mode 100644 src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/main/java/it0014/HelloWorldSharedLibJNI.java create mode 100644 src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/test/java/it0014/test/HelloWorldSharedLibJNITest.java create mode 100644 src/it/it0014-multi-module/it0014-lib-shared/pom.xml create mode 100644 src/it/it0014-multi-module/it0014-lib-shared/src/main/c/HelloWorldLib.c create mode 100644 src/it/it0014-multi-module/it0014-lib-shared/src/main/include/HelloWorldLib.h create mode 100644 src/it/it0014-multi-module/it0014-lib-shared/src/test/c/HelloWorldTest.c create mode 100644 src/it/it0014-multi-module/pom.xml (limited to 'src/it') diff --git a/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/pom.xml b/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/pom.xml new file mode 100644 index 0000000..997ec91 --- /dev/null +++ b/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/pom.xml @@ -0,0 +1,70 @@ + + + + + + 4.0.0 + + + org.apache.maven.its.nar + it0014-pom + 1.0-SNAPSHOT + + + it0014-jni-dep-lib-shared + nar + + Maven NAR JNI and Shared Library + 1.0-SNAPSHOT + + JNI depending on a shared library. + + + + true + + + + integration-test + + + maven-nar-plugin + true + + + + jni + it0014 + false + + + + + + + + + + org.apache.maven.its.nar + it0014-lib-shared + 1.0-SNAPSHOT + + + diff --git a/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/main/c/HelloWorldSharedLibJNI.c b/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/main/c/HelloWorldSharedLibJNI.c new file mode 100644 index 0000000..852f84e --- /dev/null +++ b/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/main/c/HelloWorldSharedLibJNI.c @@ -0,0 +1,36 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +#include +#include "HelloWorldLib.h" + +#include "it0014_HelloWorldSharedLibJNI.h" + +JNIEXPORT jstring JNICALL Java_it0014_HelloWorldSharedLibJNI_sayHello( JNIEnv *env, jobject obj ) { + jstring value; /* the return value */ + + char buf[80]; /* working buffer (really only need 20 ) */ + + sprintf ( buf, "%s", HelloWorldLib_sayHello()); + + value = (*env)->NewStringUTF( env, buf ); + + return value; +} + diff --git a/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/main/java/it0014/HelloWorldSharedLibJNI.java b/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/main/java/it0014/HelloWorldSharedLibJNI.java new file mode 100644 index 0000000..a6959ae --- /dev/null +++ b/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/main/java/it0014/HelloWorldSharedLibJNI.java @@ -0,0 +1,36 @@ +package it0014; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +public class HelloWorldSharedLibJNI +{ + static + { + NarSystem.loadLibrary(); + } + + public native String sayHello(); + + public static void main( String[] args ) + { + HelloWorldSharedLibJNI app = new HelloWorldSharedLibJNI(); + System.out.println( app.sayHello() ); + } +} diff --git a/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/test/java/it0014/test/HelloWorldSharedLibJNITest.java b/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/test/java/it0014/test/HelloWorldSharedLibJNITest.java new file mode 100644 index 0000000..4d55410 --- /dev/null +++ b/src/it/it0014-multi-module/it0014-jni-dep-lib-shared/src/test/java/it0014/test/HelloWorldSharedLibJNITest.java @@ -0,0 +1,36 @@ +package it0014.test; + +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +import it0014.HelloWorldSharedLibJNI; +import org.junit.Assert; +import org.junit.Test; + +public class HelloWorldSharedLibJNITest +{ + @Test + public void testNativeHelloWorldSharedLibJNI() + throws Exception + { + HelloWorldSharedLibJNI app = new HelloWorldSharedLibJNI(); + + Assert.assertEquals( "Hello NAR LIB World!", app.sayHello() ); + } +} diff --git a/src/it/it0014-multi-module/it0014-lib-shared/pom.xml b/src/it/it0014-multi-module/it0014-lib-shared/pom.xml new file mode 100644 index 0000000..d18fb04 --- /dev/null +++ b/src/it/it0014-multi-module/it0014-lib-shared/pom.xml @@ -0,0 +1,67 @@ + + + + + + 4.0.0 + + + org.apache.maven.its.nar + it0014-pom + 1.0-SNAPSHOT + + + it0014-lib-shared + nar + + Maven NAR Shared Library + 1.0-SNAPSHOT + + Simple shared library and test file + + http://maven.apache.org/ + + + true + + + + install + + + maven-nar-plugin + true + + + + shared + + + + + HelloWorldTest + shared + + + + + + + diff --git a/src/it/it0014-multi-module/it0014-lib-shared/src/main/c/HelloWorldLib.c b/src/it/it0014-multi-module/it0014-lib-shared/src/main/c/HelloWorldLib.c new file mode 100644 index 0000000..9f65143 --- /dev/null +++ b/src/it/it0014-multi-module/it0014-lib-shared/src/main/c/HelloWorldLib.c @@ -0,0 +1,7 @@ +#include +#include "HelloWorldLib.h" + +char* HelloWorldLib_sayHello() { + return "Hello NAR LIB World!"; +} + diff --git a/src/it/it0014-multi-module/it0014-lib-shared/src/main/include/HelloWorldLib.h b/src/it/it0014-multi-module/it0014-lib-shared/src/main/include/HelloWorldLib.h new file mode 100644 index 0000000..e801bec --- /dev/null +++ b/src/it/it0014-multi-module/it0014-lib-shared/src/main/include/HelloWorldLib.h @@ -0,0 +1,9 @@ +#ifndef HelloWorldLib_H +#define HelloWorldLib_H + +#ifdef WIN32 +__declspec(dllexport) +#endif +extern char* HelloWorldLib_sayHello(); + +#endif diff --git a/src/it/it0014-multi-module/it0014-lib-shared/src/test/c/HelloWorldTest.c b/src/it/it0014-multi-module/it0014-lib-shared/src/test/c/HelloWorldTest.c new file mode 100644 index 0000000..4aa35d8 --- /dev/null +++ b/src/it/it0014-multi-module/it0014-lib-shared/src/test/c/HelloWorldTest.c @@ -0,0 +1,9 @@ +#include +#include "HelloWorldLib.h" + +int main(int argc, char *argv[]) { + printf("%s\n", HelloWorldLib_sayHello()); + return 0; +} + + diff --git a/src/it/it0014-multi-module/pom.xml b/src/it/it0014-multi-module/pom.xml new file mode 100644 index 0000000..a87aad6 --- /dev/null +++ b/src/it/it0014-multi-module/pom.xml @@ -0,0 +1,50 @@ + + + + + + 4.0.0 + + + org.apache.maven.its.nar + it-parent + 1.0-SNAPSHOT + ../it-parent/pom.xml + + + it0014-pom + pom + + Maven NAR Multi Module + 1.0-SNAPSHOT + + Simple Multi Module project + + http://maven.apache.org/ + + + install + + + + it0014-jni-dep-lib-shared + it0014-lib-shared + + -- cgit v1.2.3