2

ActivePivotはJavaソリューションですが、既存のC ++ライブラリを再利用するにはどうすればよいですか?

ActivePivotに基づくCVA(CounterParty Value Adjust)プロジェクトを検討しており、既存のC ++コードを再利用して、ActivePivotによるdouble集計の配列に担保ロジックを適用したいと考えています。C ++コードを呼び出すための特別なポストプロセッサはありますか?

4

1 に答える 1

3

ActivePivotポストプロセッサは通常のJavaクラスです。特別なことは何もありません。したがって、既存の手法を使用して、Javaプログラム内でC++DLL関数を呼び出すことができます。

これは、たとえばJNAとBridJを使用して実現できます。ほとんどの場合、JNIは考慮していません。そのような、低レベルのAPIを使用する必要はありません。

たとえば、BridJの場合:次のようなC++ヘッダーがあるとします。

__declspec(dllexport) int multiply(double multiplier, int size, double* const vector);

私は次のクラスを作りました:

import org.bridj.BridJ;
import org.bridj.Pointer;
import org.bridj.ann.Library;
import org.bridj.ann.Runtime;
import org.bridj.cpp.CPPRuntime;

// Generated with http://code.google.com/p/jnaerator/
@Library(CPP_Collateral.JNA_LIBRARY_NAME)
@Runtime(CPPRuntime.class)
public class CPP_Collateral {
public static final String JNA_LIBRARY_NAME = "dummy";

static {
    // In eclipse, the DLL will be loaded from a resource folder
    // Else, one should add a program property: -Djava.library.path
    BridJ.addLibraryPath("src/main/resources/DLL");

    BridJ.register();
}

/**
 * My dummy.dll has one method:
 * int multiply(double multiplier, int size, double* const vector)
 */
public static native int multiply(double multiplier, int size, Pointer<Double> vector);
}

私のIPostProcessorは単純です

@Override
protected Object doEvaluation(ILocation location, Object[] underlyingMeasures) throws QuartetException {
    double[] asArray = (double[]) underlyingMeasures[0];

    if (asArray == null) {
        return null;
    } else {
        // Size of the array
        int size = asArray.length;

        // Allocate a Pointer to provide the double[] to the C++ DLL
        Pointer<Double> pCount = allocateDoubles(size);

        pCount.setDoubles(asArray);

        CPP_Collateral.multiply(2D, size, pCount);

        // Read again: the double[] is copied back in the heap
        return pCount.getDoubles();
    }
}

パフォーマンスに関しては、ここではサイズ10000の2.000 double []を使用しましたが、影響は約100ミリ秒です。

于 2012-09-25T18:05:35.280 に答える