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 passing bindings to cxx for autocxx subclass using POD with certain fields #1278

Open
tychedelia opened this issue Apr 22, 2023 · 4 comments
Labels
bug Something isn't working good first issue Good for newcomers please-raise-a-pr PR requested to fix this

Comments

@tychedelia
Copy link

These two fields cause cxx to reject the bindings generated for our subclass method:

  --- stderr
  Error:
    × cxx couldn't handle our generated bindings - could be a bug in autocxx:
    │ unsupported type: MyPod

It also appears to be an issue using rust::Slice<float> or rust::Vec<float> (float* works fine as expected).

I am a C++ noob but I can't understand what's problematic about these fields.

Expected Behavior

cxx accepts the bindings, or autocxx generates an error when generating the subclass describing why the POD type isn't valid.

Actual Behavior

cxx rejects the bindings without any additional error info.

Steps to Reproduce the Problem

See linked fork above, uncomment "bad fields" in MyPod and run cargo run.

@adetaylor
Copy link
Collaborator

Thanks. I agree the error messages here aren't good enough. I'll work on them next time I get a chance.

@adetaylor adetaylor added bug Something isn't working good first issue Good for newcomers labels Apr 25, 2023
@tychedelia
Copy link
Author

tychedelia commented Apr 25, 2023

For anyone who might want to look at this for a first issue, it does appear that the error is being correctly generated here. If you look at the Rust code generated here and passed to cxx, you can see that the real error is correctly noted in the doc strings. In my case, that leads me to these issues #266 #199

@tychedelia
Copy link
Author

tychedelia commented Apr 29, 2023

@adetaylor Looks like if I just allow pointer-to-pointer here by removing the error, everything works okay, at least for the subclass example in my diff. There's a failing integration test test_pointer_to_pointer, but that looks to be guarding against a different kind of indirection than my simple nested array POD use case. Is there a way that we could allow this and generate a better error in the "troublesome API" case shown in the test? This would be hugely helpful in unblocking me!

@adetaylor
Copy link
Collaborator

Thanks for taking a look at this and sorry for missing your messages two years ago. Feel free to raise a PR and I'll take a look.

@adetaylor adetaylor added the please-raise-a-pr PR requested to fix this label Mar 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working good first issue Good for newcomers please-raise-a-pr PR requested to fix this
Projects
None yet
Development

No branches or pull requests

2 participants