Skip to content

Commit 27b6d79

Browse files
committed
Refactor item_name method to use ItemInfo struct
1 parent 76920aa commit 27b6d79

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

bindgen-integration/build.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extern crate bindgen;
22

33
use bindgen::callbacks::{
4-
DeriveInfo, IntKind, MacroParsingBehavior, ParseCallbacks,
4+
DeriveInfo, IntKind, ItemInfo, MacroParsingBehavior, ParseCallbacks,
55
};
66
use bindgen::{Builder, EnumVariation, Formatter};
77
use std::collections::HashSet;
@@ -103,16 +103,18 @@ impl ParseCallbacks for MacroCallback {
103103
}
104104
}
105105

106-
fn item_name(&self, original_item_name: &str) -> Option<String> {
107-
if original_item_name.starts_with("my_prefixed_") {
106+
fn item_name(&self, item_info: ItemInfo) -> Option<String> {
107+
if item_info.name.starts_with("my_prefixed_") {
108108
Some(
109-
original_item_name
109+
item_info
110+
.name
110111
.trim_start_matches("my_prefixed_")
111112
.to_string(),
112113
)
113-
} else if original_item_name.starts_with("MY_PREFIXED_") {
114+
} else if item_info.name.starts_with("MY_PREFIXED_") {
114115
Some(
115-
original_item_name
116+
item_info
117+
.name
116118
.trim_start_matches("MY_PREFIXED_")
117119
.to_string(),
118120
)

bindgen/callbacks.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ pub trait ParseCallbacks: fmt::Debug {
8989
None
9090
}
9191

92-
/// Allows to rename an item, replacing `_original_item_name`.
93-
fn item_name(&self, _original_item_name: &str) -> Option<String> {
92+
/// Allows to rename an item, replacing `_item_info.name`.
93+
fn item_name(&self, _item_info: ItemInfo) -> Option<String> {
9494
None
9595
}
9696

@@ -254,6 +254,7 @@ pub enum TypeKind {
254254
}
255255

256256
/// A struct providing information about the item being passed to [`ParseCallbacks::generated_name_override`].
257+
#[derive(Clone, Copy)]
257258
#[non_exhaustive]
258259
pub struct ItemInfo<'a> {
259260
/// The name of the item
@@ -263,6 +264,7 @@ pub struct ItemInfo<'a> {
263264
}
264265

265266
/// An enum indicating the kind of item for an `ItemInfo`.
267+
#[derive(Clone, Copy)]
266268
#[non_exhaustive]
267269
pub enum ItemKind {
268270
/// A Function

bindgen/ir/item.rs

+11-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ use super::module::Module;
1717
use super::template::{AsTemplateParam, TemplateParameters};
1818
use super::traversal::{EdgeKind, Trace, Tracer};
1919
use super::ty::{Type, TypeKind};
20+
use crate::callbacks::ItemInfo;
2021
use crate::clang;
2122
use crate::parse::{ClangSubItemParser, ParseError, ParseResult};
2223

@@ -922,8 +923,17 @@ impl Item {
922923
let name = names.join("_");
923924

924925
let name = if opt.user_mangled == UserMangled::Yes {
926+
let item_info = ItemInfo {
927+
name: &name,
928+
kind: match self.kind() {
929+
ItemKind::Function(..) => {
930+
crate::callbacks::ItemKind::Function
931+
}
932+
_ => crate::callbacks::ItemKind::Var,
933+
},
934+
};
925935
ctx.options()
926-
.last_callback(|callbacks| callbacks.item_name(&name))
936+
.last_callback(|callbacks| callbacks.item_name(item_info))
927937
.unwrap_or(name)
928938
} else {
929939
name

0 commit comments

Comments
 (0)