summaryrefslogtreecommitdiff
path: root/rust/src/platform.rs
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-04 19:10:56 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commita826c589dfc10c542deba7ca3343a462e02d6bde (patch)
treef116254bef39f787268bbecc5eac19da310db9ce /rust/src/platform.rs
parent28b3c4044af06fdc32c9c85bf8381b5058306427 (diff)
[Rust] Simplify `BnStrCompatible` trait
Followup to https://github.com/Vector35/binaryninja-api/pull/5897/ This simplifies usage of the trait in user code, should just be able to `to_cstr` to get the cstr repr and then call `as_ptr`. Co-authored-by: Michael Krasnitski <michael.krasnitski@gmail.com>
Diffstat (limited to 'rust/src/platform.rs')
-rw-r--r--rust/src/platform.rs27
1 files changed, 12 insertions, 15 deletions
diff --git a/rust/src/platform.rs b/rust/src/platform.rs
index 65138c19..19186740 100644
--- a/rust/src/platform.rs
+++ b/rust/src/platform.rs
@@ -82,8 +82,8 @@ impl Platform {
Ref::new(Self { handle })
}
- pub fn by_name<S: BnStrCompatible>(name: S) -> Option<Ref<Self>> {
- let raw_name = name.into_bytes_with_nul();
+ pub fn by_name<S: AsCStr>(name: S) -> Option<Ref<Self>> {
+ let raw_name = name.to_cstr();
unsafe {
let res = BNGetPlatformByName(raw_name.as_ref().as_ptr() as *mut _);
@@ -113,8 +113,8 @@ impl Platform {
}
}
- pub fn list_by_os<S: BnStrCompatible>(name: S) -> Array<Platform> {
- let raw_name = name.into_bytes_with_nul();
+ pub fn list_by_os<S: AsCStr>(name: S) -> Array<Platform> {
+ let raw_name = name.to_cstr();
unsafe {
let mut count = 0;
@@ -124,11 +124,8 @@ impl Platform {
}
}
- pub fn list_by_os_and_arch<S: BnStrCompatible>(
- name: S,
- arch: &CoreArchitecture,
- ) -> Array<Platform> {
- let raw_name = name.into_bytes_with_nul();
+ pub fn list_by_os_and_arch<S: AsCStr>(name: S, arch: &CoreArchitecture) -> Array<Platform> {
+ let raw_name = name.to_cstr();
unsafe {
let mut count = 0;
@@ -151,8 +148,8 @@ impl Platform {
}
}
- pub fn new<A: Architecture, S: BnStrCompatible>(arch: &A, name: S) -> Ref<Self> {
- let name = name.into_bytes_with_nul();
+ pub fn new<A: Architecture, S: AsCStr>(arch: &A, name: S) -> Ref<Self> {
+ let name = name.to_cstr();
unsafe {
let handle = BNCreatePlatform(arch.as_ref().handle, name.as_ref().as_ptr() as *mut _);
assert!(!handle.is_null());
@@ -179,9 +176,9 @@ impl Platform {
unsafe { TypeContainer::from_raw(type_container_ptr.unwrap()) }
}
- pub fn get_type_libraries_by_name<T: BnStrCompatible>(&self, name: T) -> Array<TypeLibrary> {
+ pub fn get_type_libraries_by_name<T: AsCStr>(&self, name: T) -> Array<TypeLibrary> {
let mut count = 0;
- let name = name.into_bytes_with_nul();
+ let name = name.to_cstr();
let result = unsafe {
BNGetPlatformTypeLibrariesByName(
self.handle,
@@ -193,8 +190,8 @@ impl Platform {
unsafe { Array::new(result, count, ()) }
}
- pub fn register_os<S: BnStrCompatible>(&self, os: S) {
- let os = os.into_bytes_with_nul();
+ pub fn register_os<S: AsCStr>(&self, os: S) {
+ let os = os.to_cstr();
unsafe {
BNRegisterPlatform(os.as_ref().as_ptr() as *mut _, self.handle);