#![cfg(feature = "transactions")]
use std::io;
use std::ptr;
use windows_sys::Win32::Foundation;
use windows_sys::Win32::Storage::FileSystem;
#[derive(Debug)]
pub struct Transaction {
pub handle: Foundation::HANDLE,
}
impl Transaction {
pub fn new() -> io::Result<Transaction> {
unsafe {
let handle = FileSystem::CreateTransaction(
ptr::null_mut(),
ptr::null_mut(),
0,
0,
0,
0,
ptr::null_mut(),
);
if handle == Foundation::INVALID_HANDLE_VALUE {
return Err(io::Error::last_os_error());
};
Ok(Transaction { handle })
}
}
pub fn commit(self) -> io::Result<()> {
unsafe {
match FileSystem::CommitTransaction(self.handle) {
0 => Err(io::Error::last_os_error()),
_ => Ok(()),
}
}
}
pub fn rollback(self) -> io::Result<()> {
unsafe {
match FileSystem::RollbackTransaction(self.handle) {
0 => Err(io::Error::last_os_error()),
_ => Ok(()),
}
}
}
fn close_(&mut self) -> io::Result<()> {
unsafe {
match Foundation::CloseHandle(self.handle) {
0 => Err(io::Error::last_os_error()),
_ => Ok(()),
}
}
}
}
impl Drop for Transaction {
fn drop(&mut self) {
self.close_().unwrap_or(());
}
}
impl AsRef<Transaction> for Transaction {
fn as_ref(&self) -> &Transaction {
self
}
}