おはようございます。
SWIG インターフェイスを C++ で動作させるのに苦労しています。私はいくつかの .cpp および .h ファイルを持っていますが、そのうちのいくつか (Java コードで使用する) のインターフェイスを作成したいだけなので、.i ファイルは次のようになります。
/* File : AlgoritmoElectrico.i */
%module alg
/* Header files that are referred in the ones I want to create the interface with */
%{
#include "AlgoritmoElectrico.h"
#include "Proyecto.h"
#include "Indice.h"
/* ... I skipped a few to make it shorter ... */
#include "ParserTime.h"
%}
/* Header files of classes I want to use in Java */
%include "AlgoritmoElectrico.h"
%include "AlgoritmoElectrico.h"
そこでswig -c++ -java AlgoritmoElectrico.i
、いくつかの .java ファイルと .cxx ラッパーを実行して取得し、すべての .java ファイルをコンパイルしjavac *.java
て、ネイティブ コードとラッパー コードを含む .so ライブラリを作成しました。
私のJavaコードは次のようになります。
package mr;
/* ... Stuff ... */
public class MRAlgoritmo {
public static class Map extends Mapper<LongWritable, Text, IntWritable, Text> {
public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException {
// Obtiene instante y circulaciones
Pattern pattern = Pattern.compile("\t[ ||| ]"); // FIXME revisar regex
String[] info = pattern.split(value.toString());
// Captura datos de proyecto
System.loadLibrary("algoritmo");
Proyecto proyecto = new Proyecto("Proyecto1");
proyecto.ReadFile("infraestructura");
proyecto.getParametros().setIntervalo(1);
// Ejecuta algortimo con datos de circulaciones
AlgoritmoElectrico algoritmo = new AlgoritmoElectrico(proyecto);
String [] resultados = algoritmo.Ejecutar(info);
/* ... stuff ... */
}
}
public static void main(String[] args) throws Exception {
/* ... stuff not related with the above, working with Hadoop MR ... */
}
}
Proyecto
およびAlgoritmoElectrico
C++ クラスであり、それらは見つかりません。アイデア?
ありがとう!!