1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114

pub trait FlockUnlock {
	// Try
	//
	/// Destroy the 'flock 'lock without checking for errors, this function is used in Drop.
	unsafe fn try_unlock_no_result(&mut self);
	
	/// Destroy 'flock' lock, also check errors.
	unsafe fn try_unlock(&mut self) -> Result<(), std::io::Error>;
	
	/// Destroy 'flock' lock, also check errors.
	unsafe fn try_unlock_fn<F: FnOnce() -> R, FE: FnOnce(std::io::Error) -> R, R>(&mut self, next: F, errf: FE) -> R;
	
	// Wait
	//
	/// Destroy the 'flock 'lock without checking for errors, this function is used in Drop.
	unsafe fn wait_unlock_no_result(&mut self);
	
	/// Destroy 'flock' lock, also check errors.
	unsafe fn wait_unlock(&mut self) -> Result<(), std::io::Error>;
	
	/// Destroy 'flock' lock, also check errors.
	unsafe fn wait_unlock_fn<F: FnOnce() -> R, FE: FnOnce(std::io::Error) -> R, R>(&mut self, next: F, errf: FE) -> R;

	
	// Why initially unsafe?
	// 
	// The structure should be destroyed after calling these functions, 
	// but since Drop `&mut self`; we cannot guarantee this outside our library.
	//
}

impl<T> FlockUnlock for T where T: WaitFlockUnlock + TryFlockUnlock {	
	#[inline(always)]
	unsafe fn try_unlock_no_result(&mut self) {
		TryFlockUnlock::unlock_no_result(self)
	}

	#[inline(always)]
	unsafe fn try_unlock(&mut self) -> Result<(), std::io::Error> {
		TryFlockUnlock::unlock(self)	
	}
	
	#[inline(always)]
	unsafe fn try_unlock_fn<F: FnOnce() -> R, FE: FnOnce(std::io::Error) -> R, R>(&mut self, next: F, errf: FE) -> R {
		TryFlockUnlock::unlock_fn(self, next, errf)
	}
	
	
	#[inline(always)]
	unsafe fn wait_unlock_no_result(&mut self) {
		WaitFlockUnlock::unlock_no_result(self)	
	}
	
	#[inline(always)]
	unsafe fn wait_unlock(&mut self) -> Result<(), std::io::Error> {
		WaitFlockUnlock::unlock(self)	
	}
	
	#[inline(always)]
	unsafe fn wait_unlock_fn<F: FnOnce() -> R, FE: FnOnce(std::io::Error) -> R, R>(&mut self, next: F, errf: FE) -> R {
		WaitFlockUnlock::unlock_fn(self, next, errf)
	}
}


/// Generic describing the function of destroying 'flock' locks.
pub trait TryFlockUnlock {
	/// Destroy the 'flock 'lock without checking for errors, this function is used in Drop.
	unsafe fn unlock_no_result(&mut self);
	
	/// Destroy 'flock' lock, also check errors.
	#[inline(always)]
	unsafe fn unlock(&mut self) -> Result<(), std::io::Error> {
		TryFlockUnlock::unlock_fn(
			self,
			|| Ok(()),
			|e| Err(e)
		)
	}
	
	unsafe fn unlock_fn<F: FnOnce() -> R, FE: FnOnce(std::io::Error) -> R, R>(&mut self, next: F, errf: FE) -> R;
	
	// Why initially unsafe?
	// 
	// The structure should be destroyed after calling these functions, 
	// but since Drop `&mut self`; we cannot guarantee this outside our library.
	//
}

/// Generic describing the function of destroying 'flock' locks.
pub trait WaitFlockUnlock {
	/// Destroy the 'flock 'lock without checking for errors, this function is used in Drop.
	unsafe fn unlock_no_result(&mut self);
	
	/// Destroy 'flock' lock, also check errors.
	#[inline(always)]
	unsafe fn unlock(&mut self) -> Result<(), std::io::Error> {
		WaitFlockUnlock::unlock_fn(
			self,
			|| Ok(()),
			|e| Err(e)
		)
	}
	
	/// Destroy 'flock' lock, also check errors.
	unsafe fn unlock_fn<F: FnOnce() -> R, FE: FnOnce(std::io::Error) -> R, R>(&mut self, next: F, errf: FE) -> R;
	
	// Why initially unsafe?
	// 
	// The structure should be destroyed after calling these functions, 
	// but since Drop `&mut self`; we cannot guarantee this outside our library.
	//
}