use crate::{sys, SBStream};
use std::ffi::CStr;
use std::fmt;
pub struct SBFileSpec {
pub raw: sys::SBFileSpecRef,
}
impl SBFileSpec {
pub(crate) fn wrap(raw: sys::SBFileSpecRef) -> SBFileSpec {
SBFileSpec { raw }
}
pub(crate) fn maybe_wrap(raw: sys::SBFileSpecRef) -> Option<SBFileSpec> {
if unsafe { sys::SBFileSpecIsValid(raw) } {
Some(SBFileSpec { raw })
} else {
None
}
}
pub fn is_valid(&self) -> bool {
unsafe { sys::SBFileSpecIsValid(self.raw) }
}
pub fn exists(&self) -> bool {
unsafe { sys::SBFileSpecExists(self.raw) }
}
pub fn filename(&self) -> &str {
unsafe {
match CStr::from_ptr(sys::SBFileSpecGetFilename(self.raw)).to_str() {
Ok(s) => s,
_ => panic!("Invalid string?"),
}
}
}
pub fn directory(&self) -> &str {
unsafe {
match CStr::from_ptr(sys::SBFileSpecGetDirectory(self.raw)).to_str() {
Ok(s) => s,
_ => panic!("Invalid string?"),
}
}
}
}
impl Clone for SBFileSpec {
fn clone(&self) -> SBFileSpec {
SBFileSpec {
raw: unsafe { sys::CloneSBFileSpec(self.raw) },
}
}
}
impl fmt::Debug for SBFileSpec {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
let stream = SBStream::new();
unsafe { sys::SBFileSpecGetDescription(self.raw, stream.raw) };
write!(fmt, "SBFileSpec {{ {} }}", stream.data())
}
}
impl Drop for SBFileSpec {
fn drop(&mut self) {
unsafe { sys::DisposeSBFileSpec(self.raw) };
}
}
unsafe impl Send for SBFileSpec {}
unsafe impl Sync for SBFileSpec {}
#[cfg(feature = "graphql")]
#[graphql_object]
impl SBFileSpec {
fn exists() -> bool {
self.exists()
}
fn filename() -> &str {
self.filename()
}
fn directory() -> &str {
self.directory()
}
}