2024-10-01 19:13:03 +02:00
|
|
|
use thiserror::Error;
|
|
|
|
|
2024-10-01 21:03:24 +02:00
|
|
|
use fsv_sys::{
|
|
|
|
get_library_path,
|
|
|
|
Error as FsvError,
|
|
|
|
SSVLibrary,
|
|
|
|
SSVLibraryCommon,
|
|
|
|
SupportedFsvVersion,
|
|
|
|
V1_40_13,
|
|
|
|
V1_40_14
|
|
|
|
};
|
|
|
|
|
|
|
|
mod errors_ssv;
|
|
|
|
use errors_ssv::SSVErrorCodes;
|
2024-10-01 19:13:03 +02:00
|
|
|
|
|
|
|
#[derive(Error, Debug)]
|
|
|
|
pub enum Error {
|
|
|
|
#[error(transparent)]
|
2024-10-01 21:03:24 +02:00
|
|
|
FSVSysLibrary(#[from] FsvError),
|
|
|
|
#[error(transparent)]
|
|
|
|
SSVError(#[from] SSVErrorCodes),
|
2024-10-01 19:13:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Enum to hold the different versions of the SSV library
|
|
|
|
enum SsvLibraryVersion {
|
|
|
|
V1_40_13(SSVLibrary<V1_40_13>),
|
|
|
|
V1_40_14(SSVLibrary<V1_40_14>),
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Struct to hold the SSV library and access its functions
|
|
|
|
pub struct SSV {
|
|
|
|
library: SsvLibraryVersion,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SSV {
|
2024-10-01 21:03:24 +02:00
|
|
|
fn new(version: SupportedFsvVersion) -> Result<Self, Error> {
|
2024-10-01 19:13:03 +02:00
|
|
|
let library = match version {
|
2024-10-01 21:03:24 +02:00
|
|
|
SupportedFsvVersion::V1_40_13 => {
|
2024-10-01 19:13:03 +02:00
|
|
|
let lib_path = get_library_path(&version);
|
|
|
|
let library = SSVLibrary::<V1_40_13>::new(&lib_path)?;
|
|
|
|
SsvLibraryVersion::V1_40_13(library)
|
|
|
|
},
|
2024-10-01 21:03:24 +02:00
|
|
|
SupportedFsvVersion::V1_40_14 => {
|
2024-10-01 19:13:03 +02:00
|
|
|
let lib_path = get_library_path(&version);
|
|
|
|
let library = SSVLibrary::<V1_40_14>::new(&lib_path)?;
|
|
|
|
SsvLibraryVersion::V1_40_14(library)
|
|
|
|
},
|
|
|
|
};
|
|
|
|
Ok(Self {
|
|
|
|
library,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// # Initialize the SSV library
|
|
|
|
/// Implement: SSV_InitLIB2
|
|
|
|
pub fn init_library(&self, sesam_ini_path: &str) -> Result<(), Error> {
|
|
|
|
let sesam_ini_path = std::ffi::CString::new(sesam_ini_path).expect("CString::new failed");
|
2024-10-01 21:03:24 +02:00
|
|
|
let result = match &self.library {
|
2024-10-01 19:13:03 +02:00
|
|
|
SsvLibraryVersion::V1_40_13(library) => {
|
2024-10-01 21:03:24 +02:00
|
|
|
unsafe { library.ssv_init_lib2(sesam_ini_path.as_ptr()) }?
|
2024-10-01 19:13:03 +02:00
|
|
|
},
|
|
|
|
SsvLibraryVersion::V1_40_14(library) => {
|
2024-10-01 21:03:24 +02:00
|
|
|
unsafe { library.ssv_init_lib2(sesam_ini_path.as_ptr()) }?
|
2024-10-01 19:13:03 +02:00
|
|
|
},
|
2024-10-01 21:03:24 +02:00
|
|
|
};
|
|
|
|
if result != 0 {
|
|
|
|
let error = SSVErrorCodes::from(result);
|
|
|
|
return Err(Error::SSVError(error));
|
2024-10-01 19:13:03 +02:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use std::env;
|
|
|
|
|
|
|
|
use utils::config::load_config;
|
2024-10-01 21:03:24 +02:00
|
|
|
use anyhow::Result;
|
2024-10-01 19:13:03 +02:00
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
2024-10-01 21:03:24 +02:00
|
|
|
fn init() -> Result<SSV> {
|
2024-10-01 19:13:03 +02:00
|
|
|
load_config().unwrap();
|
2024-10-01 21:03:24 +02:00
|
|
|
Ok(SSV::new(SupportedFsvVersion::V1_40_13)?)
|
2024-10-01 19:13:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2024-10-01 21:03:24 +02:00
|
|
|
fn test_init_library() -> Result<()> {
|
|
|
|
let lib = init()?;
|
2024-10-01 19:13:03 +02:00
|
|
|
let sesam_ini_path = env::var("SESAM_INI_PATH").expect("SESAM_INI_PATH must be set");
|
2024-10-01 21:03:24 +02:00
|
|
|
lib.init_library(&sesam_ini_path)?;
|
|
|
|
Ok(())
|
2024-10-01 19:13:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ssv() {
|
|
|
|
assert_eq!("ssv", "ssv");
|
|
|
|
}
|
|
|
|
}
|