#![allow(clippy::needless_doctest_main)]
use std::io;
use std::os::windows::io::{AsRawHandle, FromRawHandle, IntoRawHandle, RawHandle};
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
}
}
impl FromRawHandle for Transaction {
#[inline]
unsafe fn from_raw_handle(handle: RawHandle) -> Transaction {
Transaction { handle }
}
}
impl IntoRawHandle for Transaction {
#[inline]
fn into_raw_handle(self) -> RawHandle {
self.handle
}
}
impl AsRawHandle for Transaction {
fn as_raw_handle(&self) -> RawHandle {
self.handle
}
}