c++ calling java calling c++ ...

K

Klaus Friese

Hi,

i'm currently working on a plugin for Adobe InDesign and i have some
problems with that. I'm not really a c++ guru, maybe somebody here has
an idea how to solve this.

The plugin is written in C++ and it's calling a java application. This
application displays a window and pushing a button is calling back the
c++-plugin again.

// The plugin class. CActionComponent is part of the InDesign SDK
class MyJNIComponent : public CActionComponent {
public:
...
static void onCreateDocument();
...
private:
...
void registerCallbacks();
...
}

// this is called from the java application
JNIEXPORT void JNICALL Java_createDocument(JNIEnv *e, jobject o);

// this is called from Java_createDocument()
void MyJNIComponent::eek:nCreateDocument() {
...
// Here i'm using SDK-methods and functions to create and display a
document.
// And here is the problem - i get an assertion from the SDK.
// The code to create the document is ok, i used this code before
and i can
// call this method from inside the plugin without assertion
...
}

// Register Callback from the Java Application back to the Plugin
void MyJNIComponent::registerCallbacks() {
jint res;
JNINativeMethod nm;

// if this method is called in the java application ..
CJavaClassInstance layoutSystemToolBox("path/to/my/java/class");
nm.name="createDocument";
nm.signature="()V";

// .. call this function in the plugin
nm.fnPtr=Java_createDocument;

res=CJavaVM::env()->RegisterNatives(layoutSystemToolBox.getClassDefinition(),&nm,1);
if (res!=0) {
CJavaVM::reportError("Can't find the Java_createDocument
method.");
return ;
}
}

// this function is called from java
JNIEXPORT void JNICALL Java_createDocument(JNIEnv *e, jobject o){
CJavaVM::env()->ExceptionClear();
// calling method in plugin class
MyJNIComponent::eek:nCreateDocument();
}

I think the problem is, that Java_createDocument() is not part of the
MyJNIComponent class and when i'm calling
MyJNIComponent::eek:nCreateDocument() from Java_createDocument() some
variables are not proper initialized.
And i don't know how to make Java_createDocument() part of the class.
Or if there is another way to solve this?

Thanks for any suggestions.
 
K

Klaus Friese

I don't know but have you tried communicating via socket?
No. It's an idea but we have to change everything. At the moment the
java application works standalone and we're using some code and
dialogs for the plugin and for an extension for QuarkXPress.
 
V

Vijai Kalyan

comp.lang.c++

The name implies questions concerning the C++ language. Questions about
JNI and interaction with C++ should go to Java newsgroup because it
relates to JNI. Not C++.

-vijai.
 
A

Alf P. Steinbach

* Klaus Friese said:
// And here is the problem - i get an assertion from the SDK.
// The code to create the document is ok, i used this code before
// and i can call this method from inside the plugin without
// assertion
...
}

So, the problem is in the code you haven't shown.

Anyway, the title is probably wrong: it seems your problem is "Java calling
C++ calling Java", or "Java calling C++ calling some Adobe API".

I do not think at all that the general area is off-topic, because such
integration is what C++ is often used for. Many questions in that area
would most be accepted in [clc++m]. However, it seems that what you have is
not a problem related to C++ usage in general, or the language, but rather
it seems to be a bug in your code, which would make the question -- with
relevant code included! -- more appropriate for e.g. [comp.programming].

But in general, if you can get rid of the Java part, do that: pure C++.

And in general, your problem description seems to be to vague to say more.
 
K

Klaus Friese

So, the problem is in the code you haven't shown.
Anyway, the title is probably wrong: it seems your problem is "Java calling
C++ calling Java", or "Java calling C++ calling some Adobe API".
Java calling c++ is the standard way to use JNI, but i have the other
direction here.
We have an large application written in java and now we are writing
c++ code that uses parts of the java application. So people can use
the main application and they can use InDesign or XPress and they see
the same windows and dialogs.
I do not think at all that the general area is off-topic, because such
integration is what C++ is often used for. Many questions in that area
would most be accepted in [clc++m].
I can try it in clc++m tomorrow (i'm writing from my home account at
the moment). I also tried to find help in the Adobe User Forums, but
calling Java from the Plugin is not very commom.
 
J

j-integra_support

An easier route would be to use J-Integra for COM. It is a
bi-directional Java/COM interop bridge which allows C++ to talk to Java
and vice-versa. It supports callbacks, events, etc. It even has a high
performance native mode (i.e. JNI) built in. Have a look...

http://j-integra.intrinsyc.com/

Shane Sauer
J-Integra Interoperability Solutions
http://j-integra.intrinsyc.com/
When Web Services are not enough
 
R

Roland Pibinger

Java calling c++ is the standard way to use JNI, but i have the other
direction here.

No, JNI is both directions, see e.g.
http://java.sun.com/docs/books/jni/html/jniTOC.html
http://www.haertfelder.com/jni.html
http://www.jguru.com/faq/topicindex.jsp?topic=JNI
We have an large application written in java and now we are writing
c++ code that uses parts of the java application. So people can use
the main application and they can use InDesign or XPress and they see
the same windows and dialogs.

I've used JNI to call Java from C++ but I wouldn't do it again. The
JNI C++-to-Java interface is _very_ ugly and clumsy (but not the
Java-to-C++ interface, guess why). Moreover, a minimal Swing
application consumes at least 40 MB (up to 80MB or more) and you
cannot unload Java once it has been loaded with the shared library.
I'd rather communicate by socket (or COM?) with the Java application
or use a commercial product. You have been warned!!

Best wishes,
Roland Pibinger
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top