thread_priority/windows.rs
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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
//! This module defines the windows thread control.
//!
//! The crate's prelude doesn't have much control over
//! the windows threads, and this module provides
//! better control over those.
use winapi::ctypes::c_int;
use winapi::shared::minwindef::DWORD;
use winapi::um::errhandlingapi::GetLastError;
use winapi::um::processthreadsapi::{
GetCurrentThread, GetThreadPriority, SetThreadIdealProcessor, SetThreadPriority,
SetThreadPriorityBoost,
};
use winapi::um::winbase;
use winapi::um::winnt::HANDLE;
use crate::{Error, ThreadPriority};
/// An alias type for specifying the ideal processor.
/// Used in the WinAPI for affinity control.
pub type IdealProcessor = DWORD;
/// An alias type for a thread id.
pub type ThreadId = HANDLE;
/// The WinAPI priority representation. Check out MSDN for more info:
/// <https://docs.microsoft.com/en-us/windows/win32/api/processthreadsapi/nf-processthreadsapi-setthreadpriority>
#[repr(u32)]
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub enum WinAPIThreadPriority {
/// Begin background processing mode. The system lowers the resource
/// scheduling priorities of the thread so that it can perform background
/// work without significantly affecting activity in the foreground.
///
/// This value can be specified only if hThread is a handle to the current
/// thread. The function fails if the thread is already in background processing mode.
///
/// # Warning
/// Windows Server 2003: This value is not supported.
BackgroundModeBegin = winbase::THREAD_MODE_BACKGROUND_BEGIN,
/// End background processing mode. The system restores the resource
/// scheduling priorities of the thread as they were before the thread
/// entered background processing mode.
///
/// This value can be specified only if hThread is a handle to the current thread.
/// The function fails if the thread is not in background processing mode.
///
/// # Warning
/// Windows Server 2003: This value is not supported.
BackgroundModeEnd = winbase::THREAD_MODE_BACKGROUND_END,
/// Priority 1 point above the priority class.
AboveNormal = winbase::THREAD_PRIORITY_ABOVE_NORMAL,
/// Priority 1 point below the priority class.
BelowNormal = winbase::THREAD_PRIORITY_BELOW_NORMAL,
/// Priority 2 points above the priority class.
Highest = winbase::THREAD_PRIORITY_HIGHEST,
/// Base priority of 1 for IDLE_PRIORITY_CLASS, BELOW_NORMAL_PRIORITY_CLASS,
/// NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS, or HIGH_PRIORITY_CLASS
/// processes, and a base priority of 16 for REALTIME_PRIORITY_CLASS processes.
Idle = winbase::THREAD_PRIORITY_IDLE,
/// Priority 2 points below the priority class.
Lowest = winbase::THREAD_PRIORITY_LOWEST,
/// Normal priority for the priority class.
Normal = winbase::THREAD_PRIORITY_NORMAL,
/// Base priority of 15 for IDLE_PRIORITY_CLASS, BELOW_NORMAL_PRIORITY_CLASS,
/// NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS, or HIGH_PRIORITY_CLASS
/// processes, and a base priority of 31 for REALTIME_PRIORITY_CLASS processes.
TimeCritical = winbase::THREAD_PRIORITY_TIME_CRITICAL,
}
impl std::convert::TryFrom<ThreadPriority> for WinAPIThreadPriority {
type Error = crate::Error;
fn try_from(priority: ThreadPriority) -> Result<Self, Self::Error> {
Ok(match priority {
ThreadPriority::Min => WinAPIThreadPriority::Lowest,
ThreadPriority::Crossplatform(crate::ThreadPriorityValue(p)) => match p {
0 => WinAPIThreadPriority::Idle,
1..=19 => WinAPIThreadPriority::Lowest,
21..=39 => WinAPIThreadPriority::BelowNormal,
41..=59 => WinAPIThreadPriority::Normal,
61..=79 => WinAPIThreadPriority::AboveNormal,
81..=98 => WinAPIThreadPriority::Highest,
99 => WinAPIThreadPriority::TimeCritical,
_ => return Err(Error::Priority("The value is out of range [0; 99].")),
},
ThreadPriority::Os(crate::ThreadPriorityOsValue(p)) => match p {
winbase::THREAD_MODE_BACKGROUND_BEGIN => WinAPIThreadPriority::BackgroundModeBegin,
winbase::THREAD_MODE_BACKGROUND_END => WinAPIThreadPriority::BackgroundModeEnd,
winbase::THREAD_PRIORITY_ABOVE_NORMAL => WinAPIThreadPriority::AboveNormal,
winbase::THREAD_PRIORITY_BELOW_NORMAL => WinAPIThreadPriority::BelowNormal,
winbase::THREAD_PRIORITY_HIGHEST => WinAPIThreadPriority::Highest,
winbase::THREAD_PRIORITY_IDLE => WinAPIThreadPriority::Idle,
winbase::THREAD_PRIORITY_LOWEST => WinAPIThreadPriority::Lowest,
winbase::THREAD_PRIORITY_NORMAL => WinAPIThreadPriority::Normal,
winbase::THREAD_PRIORITY_TIME_CRITICAL => WinAPIThreadPriority::TimeCritical,
_ => {
return Err(Error::Priority(
"The value is out of range of allowed values.",
))
}
},
ThreadPriority::Max => WinAPIThreadPriority::Highest,
})
}
}
impl std::convert::TryFrom<DWORD> for WinAPIThreadPriority {
type Error = crate::Error;
fn try_from(priority: DWORD) -> Result<Self, Self::Error> {
Ok(match priority {
winbase::THREAD_MODE_BACKGROUND_BEGIN => WinAPIThreadPriority::BackgroundModeBegin,
winbase::THREAD_MODE_BACKGROUND_END => WinAPIThreadPriority::BackgroundModeEnd,
winbase::THREAD_PRIORITY_ABOVE_NORMAL => WinAPIThreadPriority::AboveNormal,
winbase::THREAD_PRIORITY_BELOW_NORMAL => WinAPIThreadPriority::BelowNormal,
winbase::THREAD_PRIORITY_HIGHEST => WinAPIThreadPriority::Highest,
winbase::THREAD_PRIORITY_IDLE => WinAPIThreadPriority::Idle,
winbase::THREAD_PRIORITY_LOWEST => WinAPIThreadPriority::Lowest,
winbase::THREAD_PRIORITY_NORMAL => WinAPIThreadPriority::Normal,
winbase::THREAD_PRIORITY_TIME_CRITICAL => WinAPIThreadPriority::TimeCritical,
_ => return Err(Error::Priority("Priority couldn't be parsed")),
})
}
}
impl From<WinAPIThreadPriority> for crate::ThreadPriorityOsValue {
fn from(p: WinAPIThreadPriority) -> Self {
crate::ThreadPriorityOsValue(p as u32)
}
}
/// Sets thread's priority and schedule policy.
///
/// * May require privileges
///
/// # Usage
///
/// Setting thread priority to minimum:
///
/// ```rust
/// use thread_priority::*;
///
/// let thread_id = thread_native_id();
/// assert!(set_thread_priority(thread_id, ThreadPriority::Min).is_ok());
/// ```
///
/// If there's an error, a result of
/// [`GetLastError`](https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-getlasterror) is returned.
pub fn set_thread_priority(native: ThreadId, priority: ThreadPriority) -> Result<(), Error> {
set_winapi_thread_priority(native, WinAPIThreadPriority::try_from(priority)?)
}
/// Sets thread's priority and schedule policy using WinAPI priority values.
///
/// * May require privileges
///
/// # Usage
///
/// Setting thread priority to minimum:
///
/// ```rust
/// use thread_priority::*;
///
/// let thread_id = thread_native_id();
/// assert!(set_winapi_thread_priority(thread_id, WinAPIThreadPriority::Normal).is_ok());
/// ```
///
/// If there's an error, a result of
/// [`GetLastError`](https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-getlasterror) is returned.
pub fn set_winapi_thread_priority(
native: ThreadId,
priority: WinAPIThreadPriority,
) -> Result<(), Error> {
unsafe {
if SetThreadPriority(native, priority as c_int) != 0 {
Ok(())
} else {
Err(Error::OS(GetLastError() as i32))
}
}
}
/// Set current thread's priority.
///
/// * May require privileges
///
/// # Usage
///
/// Setting thread priority to minimum:
///
/// ```rust
/// use thread_priority::*;
///
/// assert!(set_current_thread_priority(ThreadPriority::Min).is_ok());
/// assert!(set_current_thread_priority(ThreadPriority::Os(WinAPIThreadPriority::Lowest.into())).is_ok());
/// ```
///
/// If there's an error, a result of
/// [`GetLastError`](https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-getlasterror) is returned.
pub fn set_current_thread_priority(priority: ThreadPriority) -> Result<(), Error> {
let thread_id = thread_native_id();
set_thread_priority(thread_id, priority)
}
/// Get the thread's priority value.
///
/// Returns current thread's priority.
///
/// # Usage
///
/// ```rust
/// use thread_priority::{thread_native_id, get_thread_priority};
///
/// assert!(get_thread_priority(thread_native_id()).is_ok());
/// ```
pub fn get_thread_priority(native: ThreadId) -> Result<ThreadPriority, Error> {
unsafe {
let ret = GetThreadPriority(native);
if ret as u32 != winbase::THREAD_PRIORITY_ERROR_RETURN {
Ok(ThreadPriority::Os(crate::ThreadPriorityOsValue(
WinAPIThreadPriority::try_from(ret as DWORD)? as u32,
)))
} else {
Err(Error::OS(GetLastError() as i32))
}
}
}
/// Get current thread's priority value.
///
/// Returns current thread's priority.
///
/// # Usage
///
/// ```rust
/// use thread_priority::get_current_thread_priority;
///
/// assert!(get_current_thread_priority().is_ok());
/// ```
pub fn get_current_thread_priority() -> Result<ThreadPriority, Error> {
unsafe {
let ret = GetThreadPriority(thread_native_id());
if ret as u32 != winbase::THREAD_PRIORITY_ERROR_RETURN {
Ok(ThreadPriority::Os(crate::ThreadPriorityOsValue(
WinAPIThreadPriority::try_from(ret as DWORD)? as u32,
)))
} else {
Err(Error::OS(GetLastError() as i32))
}
}
}
/// Returns current thread id, which is the current OS's native handle.
/// It may or may not be equal or even related to rust's thread id,
/// there is absolutely no guarantee for that.
///
/// # Usage
///
/// ```rust
/// use thread_priority::thread_native_id;
///
/// assert!(!thread_native_id().is_null());
/// ```
pub fn thread_native_id() -> ThreadId {
unsafe { GetCurrentThread() }
}
/// Disables or enables the ability of the system to temporarily boost the priority of a thread.
///
/// If there's an error, a result of
/// [`GetLastError`](https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-getlasterror) is returned.
///
/// # Usage
///
/// ```rust
/// use thread_priority::*;
///
/// let thread_id = thread_native_id();
/// assert!(set_thread_priority_boost(thread_id, false).is_ok())
/// ```
pub fn set_thread_priority_boost(native: ThreadId, enabled: bool) -> Result<(), Error> {
unsafe {
if SetThreadPriorityBoost(native, enabled as i32) != 0 {
Ok(())
} else {
Err(Error::OS(GetLastError() as i32))
}
}
}
/// Disables or enables the ability of the system to temporarily boost the priority of a current thread.
///
/// If there's an error, a result of
/// [`GetLastError`](https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-getlasterror) is returned.
///
/// This is a short-hand of the `set_thread_priority_boost` function for the current thread.
pub fn set_current_thread_priority_boost(enabled: bool) -> Result<(), Error> {
set_thread_priority_boost(thread_native_id(), enabled)
}
/// Sets a preferred processor for a thread. The system schedules threads on their preferred
/// processors whenever possible.
///
/// On a system with more than 64 processors, this function sets the preferred processor to a
/// logical processor in the processor group to which the calling thread is assigned. Use the
/// `SetThreadIdealProcessorEx` function to specify a processor group and preferred processor.
///
/// If there's an error, a result of
/// [`GetLastError`](https://docs.microsoft.com/en-us/windows/win32/api/errhandlingapi/nf-errhandlingapi-getlasterror) is returned.
/// On success, the function returns a previously assigned processor.
///
/// # Note
/// The processor number starts with zero.
///
/// # Usage
///
/// ```rust
/// use thread_priority::*;
///
/// let thread_id = thread_native_id();
/// assert!(set_thread_ideal_processor(thread_id, 0).is_ok())
/// ```
pub fn set_thread_ideal_processor(
native: ThreadId,
ideal_processor: IdealProcessor,
) -> Result<IdealProcessor, Error> {
unsafe {
let ret = SetThreadIdealProcessor(native, ideal_processor);
if ret == IdealProcessor::max_value() - 1 {
Err(Error::OS(GetLastError() as i32))
} else {
Ok(ret)
}
}
}
/// Sets a preferred processor for a current thread. The system schedules threads on their preferred
/// processors whenever possible.
///
/// This is a short-hand of the `set_thread_ideal_processor` function for the current thread.
pub fn set_current_thread_ideal_processor(
ideal_processor: IdealProcessor,
) -> Result<IdealProcessor, Error> {
set_thread_ideal_processor(thread_native_id(), ideal_processor)
}
impl std::convert::TryFrom<u32> for crate::ThreadPriorityOsValue {
type Error = ();
fn try_from(value: u32) -> Result<Self, Self::Error> {
Ok(crate::ThreadPriorityOsValue(match value {
winbase::THREAD_MODE_BACKGROUND_BEGIN
| winbase::THREAD_MODE_BACKGROUND_END
| winbase::THREAD_PRIORITY_ABOVE_NORMAL
| winbase::THREAD_PRIORITY_BELOW_NORMAL
| winbase::THREAD_PRIORITY_HIGHEST
| winbase::THREAD_PRIORITY_IDLE
| winbase::THREAD_PRIORITY_LOWEST
| winbase::THREAD_PRIORITY_NORMAL
| winbase::THREAD_PRIORITY_TIME_CRITICAL => value,
_ => return Err(()),
}))
}
}
/// Windows-specific complemented part of the [`crate::ThreadExt`] trait.
pub trait ThreadExt {
/// Returns current thread's priority.
/// For more info see [`thread_priority`].
///
/// ```rust
/// use thread_priority::*;
///
/// assert!(std::thread::current().get_priority().is_ok());
/// ```
fn get_priority(&self) -> Result<ThreadPriority, Error> {
get_current_thread_priority()
}
/// Sets current thread's priority.
/// For more info see [`set_current_thread_priority`].
///
/// ```rust
/// use thread_priority::*;
///
/// assert!(std::thread::current().set_priority(ThreadPriority::Min).is_ok());
/// ```
fn set_priority(&self, priority: ThreadPriority) -> Result<(), Error> {
set_current_thread_priority(priority)
}
/// Returns current thread's windows id.
/// For more info see [`thread_native_id`].
///
/// ```rust
/// use thread_priority::*;
///
/// assert!(!std::thread::current().get_native_id().unwrap().is_null());
/// ```
fn get_native_id(&self) -> Result<ThreadId, Error>;
/// Sets current thread's ideal processor.
/// For more info see [`set_current_thread_ideal_processor`].
///
/// ```rust
/// use thread_priority::*;
///
/// assert!(std::thread::current().set_ideal_processor(0).is_ok());
/// ```
fn set_ideal_processor(
&self,
ideal_processor: IdealProcessor,
) -> Result<IdealProcessor, Error> {
set_current_thread_ideal_processor(ideal_processor)
}
/// Sets current thread's priority boost.
/// For more info see [`set_current_thread_priority_boost`].
///
/// ```rust
/// use thread_priority::*;
///
/// assert!(std::thread::current().set_priority_boost(true).is_ok());
/// ```
fn set_priority_boost(&self, enabled: bool) -> Result<(), Error> {
set_current_thread_priority_boost(enabled)
}
}
/// Auto-implementation of this trait for the [`std::thread::Thread`].
impl ThreadExt for std::thread::Thread {
fn get_native_id(&self) -> Result<ThreadId, Error> {
if self.id() == std::thread::current().id() {
Ok(thread_native_id())
} else {
Err(Error::Priority("The `ThreadExt::get_native_id()` is currently limited to be called on the current thread."))
}
}
}