Compare commits
1 Commits
4e3387cef9
...
c62f10f0aa
Author | SHA1 | Date | |
---|---|---|---|
c62f10f0aa |
@ -122,30 +122,30 @@ impl SSV {
|
|||||||
/// # Get the configuration of the SSV library
|
/// # Get the configuration of the SSV library
|
||||||
/// Implement: SSV_LireConfig
|
/// Implement: SSV_LireConfig
|
||||||
pub fn get_config(&self) -> Result<Data, Error> {
|
pub fn get_config(&self) -> Result<Data, Error> {
|
||||||
let mut out_buffer_ptr: *mut libc::c_void = ptr::null_mut();
|
let mut buffer_ptr: *mut libc::c_void = ptr::null_mut();
|
||||||
let mut out_buffer_size: libc::size_t = 0;
|
let mut size: libc::size_t = 0;
|
||||||
|
|
||||||
let result = match &self.library {
|
let result = match &self.library {
|
||||||
SsvLibraryVersion::V1_40_13(library) => {
|
SsvLibraryVersion::V1_40_13(library) => {
|
||||||
unsafe { library.ssv_lire_config(&mut out_buffer_ptr, &mut out_buffer_size) }?
|
unsafe { library.ssv_lire_config(&mut buffer_ptr, &mut size) }?
|
||||||
},
|
},
|
||||||
SsvLibraryVersion::V1_40_14(library) => {
|
SsvLibraryVersion::V1_40_14(library) => {
|
||||||
unsafe { library.ssv_lire_config(&mut out_buffer_ptr, &mut out_buffer_size) }?
|
unsafe { library.ssv_lire_config(&mut buffer_ptr, &mut size) }?
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
if result != 0 {
|
if result != 0 {
|
||||||
// Free memory
|
// Free memory
|
||||||
unsafe { libc::free(out_buffer_ptr) };
|
unsafe { libc::free(buffer_ptr) };
|
||||||
let error = SSVErrorCodes::from(result);
|
let error = SSVErrorCodes::from(result);
|
||||||
return Err(Error::SSVError(error));
|
return Err(Error::SSVError(error));
|
||||||
}
|
}
|
||||||
// Parse the buffer into a Data struct
|
// Print the buffer
|
||||||
let buffer = unsafe { std::slice::from_raw_parts(out_buffer_ptr as *const u8, out_buffer_size) };
|
let buffer = unsafe { std::slice::from_raw_parts(buffer_ptr as *const u8, size) };
|
||||||
let (_rest, config_blocks) = Data::from_bytes((buffer, 0)).unwrap();
|
let (_rest, config_blocks) = Data::from_bytes((buffer, 0)).unwrap();
|
||||||
|
|
||||||
// Free memory
|
// Free memory
|
||||||
unsafe { libc::free(out_buffer_ptr) };
|
unsafe { libc::free(buffer_ptr) };
|
||||||
Ok(config_blocks)
|
Ok(config_blocks)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user