From a826c589dfc10c542deba7ca3343a462e02d6bde Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sun, 4 May 2025 19:10:56 -0400 Subject: [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 --- rust/src/platform.rs | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) (limited to 'rust/src/platform.rs') 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(name: S) -> Option> { - let raw_name = name.into_bytes_with_nul(); + pub fn by_name(name: S) -> Option> { + 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(name: S) -> Array { - let raw_name = name.into_bytes_with_nul(); + pub fn list_by_os(name: S) -> Array { + let raw_name = name.to_cstr(); unsafe { let mut count = 0; @@ -124,11 +124,8 @@ impl Platform { } } - pub fn list_by_os_and_arch( - name: S, - arch: &CoreArchitecture, - ) -> Array { - let raw_name = name.into_bytes_with_nul(); + pub fn list_by_os_and_arch(name: S, arch: &CoreArchitecture) -> Array { + let raw_name = name.to_cstr(); unsafe { let mut count = 0; @@ -151,8 +148,8 @@ impl Platform { } } - pub fn new(arch: &A, name: S) -> Ref { - let name = name.into_bytes_with_nul(); + pub fn new(arch: &A, name: S) -> Ref { + 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(&self, name: T) -> Array { + pub fn get_type_libraries_by_name(&self, name: T) -> Array { 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(&self, os: S) { - let os = os.into_bytes_with_nul(); + pub fn register_os(&self, os: S) { + let os = os.to_cstr(); unsafe { BNRegisterPlatform(os.as_ref().as_ptr() as *mut _, self.handle); -- cgit v1.3.1