Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: C callback cannot be resolved to a type #315

Closed
devent opened this issue Jun 2, 2012 · 3 comments
Closed

Error: C callback cannot be resolved to a type #315

devent opened this issue Jun 2, 2012 · 3 comments

Comments

@devent
Copy link

devent commented Jun 2, 2012

I try to use jnaerator on libcryptsetup. I downloaded the libcryptsetup from the Google project site. libcryptsetup contains callback functions like:

void crypt_set_log_callback(struct crypt_device _cd,
void (_log)(int level, const char *msg, void *usrptr),
void *usrptr);

When I try to use jnaerator I get the error:

  1. ERROR in file:///test/TestLibrary.java (at line 188)
    public static native void cryptSetLogCallback(Pointer<TestLibrary.crypt_device > cd, Pointer<TestLibrary.crypt_set_log_callback_log_callback > arg, Pointer<? > usrptr);
    TestLibrary.crypt_set_log_callback_log_callback cannot be resolved to a type

The jnaerator should have creates a new interface that extends from com.sun.jna.Callback, but it didn't, as in https://code.google.com/p/jnaerator/wiki/CToJavaTransformation#Callbacks_fields

I try to make a typedef declaration in libcryptsetup.h, but jnaerator just creates a native method for the typedef.

Here is my configuration for jnaerator:
<== config.jnaerator ==>
/// Define the name of the output library
-library Test

/// Add a directory to the include path
-I /home/devent/Sources/c/cryptsetup/lib
-I /usr/include/linux

/// Generate getters and setters for struct fields
-beanStructs

/// Transform C names to Java-looking names : some_func() => someFunc()
-beautifyNames

/// output directory here
-o $(DIR)

/// (deprecated) Do not create an output JAR
//-noJar

/// (deprecated) Do not compile JNAerated headers
//-noComp

/// JNAerate libraries that use JNA's faster direct call convention
//-direct

/// Generate a class entryclassName.EntryClassName that will contain all of
/// the jnaerated libraries instances. . User code will just need to static
/// import or derive from this class to access to the instances.
//-entryClass

/// Force the overwrite of existing files
-f

///
// -mode Maven
-mode Jar

/// The header files
/home/devent/Sources/c/cryptsetup/lib/libcryptsetup.h

@ochafik
Copy link
Member

ochafik commented Jun 4, 2012

Hi @devent ,

Thanks a lot for your report !

This bug is caused by the -beautifyNames switch, which you remove as a workaround. I'm working on a fix as I write.

Cheers

ochafik added a commit that referenced this issue Jun 5, 2012
… missing names choice and function name choice) (issue #315)
@devent
Copy link
Author

devent commented Jun 10, 2012

Thank you very much, now the code is generated. Of course the names are all C style with underscores.

@ochafik
Copy link
Member

ochafik commented Oct 4, 2012

Closing this bug since bug is fixed and there's no plan to change beautification in the near future.

@ochafik ochafik closed this as completed Oct 4, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants