1

我有一个使用 Maven 配置的 JNI 项目nar-maven-plugin。Java 和 C++ 代码都驻留在项目中。主要代码显然可以正确编译(C++ 和 Java)。问题在于测试代码(JUnit)。

测试代码定义了一个本身具有本地方法的 Java 类。对应的本机代码驻留在目录中

<project root>
+- src
   +- test
      +- c++

nm构建消息中没有证据表明该本地测试代码曾经被编译过,并且当我从命令行运行构建过程创建的 DLL时,根本不会出现相应的本地方法。另外,我故意将语法错误放入测试代码中并重新编译以查看是否会出现编译时错误。没有错误,这与我认为代码永远不会编译的信念一致。

相应地,我UnsatisfiedLinkErrormvn install. 请注意,我可以从测试失败的那一点看出,主(非测试)代码的本机方法已正确加载和链接。因此,我得出的结论是,存在一些与本机测试代码的构建和链接相关的问题。

我目前在 Windows 10 上使用 Eclipse IDE 和 MinGW 编译器获取本机代码。

我的 POM 的相关部分如下(根据我关于使用 MinGW 编译器和 nar-maven-plugin 避免与机器相关的 POM 与早期配置问题相关的回答略有更新):

<profiles>
    <profile>
        <id>Windows-MinGW</id>
        <activation>
            <os>
                <family>Windows</family>
            </os>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>com.github.maven-nar</groupId>
                    <artifactId>nar-maven-plugin</artifactId>
                    <version>3.5.1</version>
                    <extensions>true</extensions>
                    <configuration>
                        <cpp>
                             <options>
                                  <option>-std=c++1y</option>
                             </options>
                        </cpp>

                        <linker>
                            <name>g++</name>
                            <options>
                                <option>-Wl,--kill-at</option>
                            </options>
                        </linker>
                    </configuration>
                </plugin>
            </plugins>
        </build>
    </profile>
</profiles>

<build>
    <defaultGoal>integration-test</defaultGoal>

    <plugins>
        <plugin>
            <groupId>com.github.maven-nar</groupId>
            <artifactId>nar-maven-plugin</artifactId>
            <version>3.5.1</version>
            <extensions>true</extensions>
            <configuration>
                <cpp>
                    <defines>
                        <define>EXPORT_DLL</define>
                    </defines>
                </cpp>
                <libraries>
                    <library>
                        <type>jni</type>
                        <narSystemPackage>com.mycompany.sandbox</narSystemPackage>
                    </library>
                </libraries>
            </configuration>
        </plugin>
    </plugins>

</build>

有没有已知的方法来处理这个问题?(也许额外的配置标签?)

4

1 回答 1

1

我得到了这个工作,但它并不漂亮。我将在最后给出 POM 部分,但总的来说,这些是步骤:

  • 按照编译主代码的问题设置项目
  • 使用<tests>on 部分nar-maven-plugin来编译原生测试代码,注意这实际上是为原生测试创建可执行文件而不是创建支持 Java 测试的 DLL/SO
  • 指定<testOptions>链接器将其破解为生成 DLL/SO 而不是可执行文件
  • 进一步指定<testOptions>以使您的测试代码链接到主项目代码,因为当您选择jni(而不是sharedstatic)库类型时,这不会自动支持
  • 将测试库移动到测试之前的路径中并在之后将其删除

更详细地扩展最后一个项目符号:即使您获得了要编译的测试代码,您也无法从 Java 加载它,因为测试目录不在java.library.path测试运行时!我能找到的最佳解决方案是将测试库临时移动到路径上的目录中。由于易于使用的配置选项,这似乎比更改路径更容易。假设您在路径上获取库,那么您可以System.loadLibrary在 JUnit 测试执行期间照常使用。

现在这里是完成上述操作的扩展 POM 段。这是基于我在问题中的内容,但是对于新作品,需要在答案的开头完成项目符号。请注意,支持测试的 JNI 代码TestWrapper.cpp位于/src/test/c++. (我知道这不是 JNI 源文件的标准命名约定。)

注意:此时我只计算了用于在我的 Windows 10 机器上测试的链接器标志,这在本profiles节中表示。同样,复制/删除具有.dll明确的扩展名,需要对其进行调整。(进一步注意,即使你得到一个.dll文件,.exe当插件生成它时它也会有一个扩展名!)我的 POM 在这一点上对于其他机器/体系结构毫无疑问是坏的,但是有一条明确的路径来制作它们从这里开始工作,所以似乎值得按原样发布答案。

<profiles>
    <profile>
        <id>Windows-MinGW</id>
        <activation>
            <os>
                <family>Windows</family>
            </os>
        </activation>
        <build>
            <plugins>
                <plugin>
                    <groupId>com.github.maven-nar</groupId>
                    <artifactId>nar-maven-plugin</artifactId>
                    <version>3.5.1</version>
                    <extensions>true</extensions>
                    <configuration>
                        <cpp>
                            <options>
                                <option>-std=c++1y</option>
                            </options>
                        </cpp>
                        <linker>
                            <name>g++</name>
                            <options>
                                <option>-Wl,--kill-at</option>
                            </options>
                            <testOptions>
                                <!-- Put the -shared flag onto the linker - That will force a DLL instead of an EXE -->
                                <testOption>-shared</testOption>
                                <!-- We cannot easily link to the *library* that was created for the main project but we can get the compiled object files with the following option -->
                                <testOption>${project.build.directory}/nar/obj/${nar.aol}/*.o</testOption>
                            </testOptions>
                        </linker>
                    </configuration>
                </plugin>                   
            </plugins>
        </build>
    </profile>
</profiles>

<build>
    <defaultGoal>integration-test</defaultGoal>

    <plugins>
        <plugin>
            <groupId>com.github.maven-nar</groupId>
            <artifactId>nar-maven-plugin</artifactId>
            <version>3.5.1</version>
            <extensions>true</extensions>
            <configuration>
                <cpp>
                    <defines>
                        <define>EXPORT_DLL</define>
                    </defines>
                </cpp>
                <libraries>
                    <library>
                        <type>jni</type>
                        <narSystemPackage>com.mycompany.mypackage</narSystemPackage>
                    </library>
                </libraries>
                <tests>
                    <test>
                        <name>TestWrapper</name>
                        <run>false</run>
                    </test>
                </tests>
            </configuration>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.7</version>
            <executions>
                <execution>
                    <id>copy-test-lib-to-path</id>
                    <phase>pre-integration-test</phase>
                    <configuration>
                        <target>
                            <copy file="${project.build.directory}/test-nar/bin/${nar.aol}/TestWrapper.exe" tofile="${project.build.directory}/nar/${project.artifactId}-${project.version}-${nar.aol}-jni/lib/${nar.aol}/jni/TestWrapper.dll"/>
                        </target>
                    </configuration>
                    <goals>
                        <goal>run</goal>
                    </goals>
                </execution>
                <execution>
                    <id>delete-test-lib-from-deployment</id>
                    <phase>post-integration-test</phase>
                    <configuration>
                        <target>
                            <delete file="${project.build.directory}/nar/${project.artifactId}-${project.version}-${nar.aol}-jni/lib/${nar.aol}/jni/TestWrapper.dll"/>
                        </target>
                    </configuration>
                    <goals>
                        <goal>run</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

    </plugins>
于 2017-06-30T22:11:09.123 回答