GIWS (software)

GIWS is a wrapper generator intended to simplify calling Java from C or C++ by automatically generating the necessary JNI code.[1]

GIWS is released under the CeCILL license.

Example

The following Java class does some simple computation.

package basic_example;
import java.lang.Math;

public class MyComplexClass {
    public MyComplexClass() {
        // the constructor
    }
    public long myVeryComplexComputation(double a, double b) {
        return Math.round(Math.cos(a) + Math.sin(b) * 9);
    }	
}

GIWS gives the capability to call it from C++.

#include <iostream>
#include "basic_example.hxx"
#include <jni.h>

JavaVM* create_vm() {
    JavaVM* jvm;
    JNIEnv* env;
    JavaVMInitArgs args;
    JavaVMOption options[2];
    args.version = JNI_VERSION_1_4;
    args.nOptions = 2;
    options[0].optionString = const_cast<char*>("-Djava.class.path=.");
    options[1].optionString = const_cast<char*>("-Xcheck:jni");
    args.options = options;
    args.ignoreUnrecognized = JNI_FALSE;
    JNI_CreateJavaVM(&jvm, (void **)&env, &args);
    return jvm;
}

using namespace basic_example;
using namespace std;

int main() {
    JavaVM* jvm = create_vm();
    MyComplexClass *testOfMyClass = new MyComplexClass(jvm);
    cout << "My Computation: " << testOfMyClass->myVeryComplexComputation(1.2,80) << endl;
    return 0;	
}

To generate the binding, GIWS uses a XML declaration. GIWS will generate the JNI code to call the Java object.

<package name="basic_example">
  <object name="MyComplexClass">
        <method name="myVeryComplexComputation" returnType="long">
          <param type="double" name="a" />
          <param type="double" name="b" />
        </method>
  </object>
</package>

See also

  • SWIG allows one to call C or C++ from higher level languages

References

  1. ^ "giws". GitLab. Retrieved 13 November 2025.


Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.