-
Notifications
You must be signed in to change notification settings - Fork 95
Add attribute which generates wrappers for a function #1278
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
Merged
BenFordTytherington
merged 2 commits into
KDAB:main
from
BenFordTytherington:wrapper-shorthand
Oct 3, 2025
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
| // SPDX-FileContributor: Andrew Hayzen <[email protected]> | ||
| // | ||
| // SPDX-License-Identifier: MIT OR Apache-2.0 | ||
| use crate::parser::CaseConversion; | ||
| use crate::parser::{extract_docs, CaseConversion}; | ||
| use crate::{ | ||
| naming::Name, | ||
| parser::{extract_cfgs, parameter::ParsedFunctionParameter, require_attributes}, | ||
|
|
@@ -59,23 +59,26 @@ pub struct ParsedMethod { | |
| pub is_qinvokable: bool, | ||
| /// Whether the method is a pure virtual method | ||
| pub is_pure: bool, | ||
| // No docs field since the docs should be on the method implementation outside the bridge | ||
| // This means any docs on the bridge declaration would be ignored | ||
| /// Whether to auto generate a wrapper for this method outside the bridge | ||
| pub wrap: bool, | ||
| /// Cfgs for the method | ||
| pub cfgs: Vec<Attribute>, | ||
| /// Docs for the method, for passing onto the auto_wrap generated methods | ||
| pub docs: Vec<Attribute>, | ||
| /// Whether the block containing the method is safe or unsafe | ||
| pub unsafe_block: bool, | ||
| } | ||
|
|
||
| impl ParsedMethod { | ||
| const ALLOWED_ATTRS: [&'static str; 9] = [ | ||
| const ALLOWED_ATTRS: [&'static str; 10] = [ | ||
| "cxx_name", | ||
| "rust_name", | ||
| "qinvokable", | ||
| "cxx_final", | ||
| "cxx_override", | ||
| "cxx_virtual", | ||
| "cxx_pure", | ||
| "auto_wrap", | ||
| "doc", | ||
| "cfg", | ||
| ]; | ||
|
|
@@ -123,18 +126,22 @@ impl ParsedMethod { | |
| let fields = MethodFields::parse(method, auto_case)?; | ||
| let attrs = require_attributes(&fields.method.attrs, &Self::ALLOWED_ATTRS)?; | ||
| let cfgs = extract_cfgs(&fields.method.attrs); | ||
| let docs = extract_docs(&fields.method.attrs); | ||
|
|
||
| // Determine if the method is invokable | ||
| let is_qinvokable = attrs.contains_key("qinvokable"); | ||
| let is_pure = attrs.contains_key("cxx_pure"); | ||
| let wrap = attrs.contains_key("auto_wrap"); | ||
| let specifiers = ParsedQInvokableSpecifiers::from_attrs(attrs); | ||
|
|
||
| Ok(Self { | ||
| method_fields: fields, | ||
| specifiers, | ||
| is_qinvokable, | ||
| is_pure, | ||
| wrap, | ||
| cfgs, | ||
| docs, | ||
| unsafe_block, | ||
| }) | ||
| } | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.