pub use msvcrt::*;
#[pymodule]
mod msvcrt {
use crate::{
builtins::{PyBytes, PyStrRef},
common::suppress_iph,
stdlib::os::errno_err,
PyRef, PyResult, VirtualMachine,
};
use itertools::Itertools;
use winapi::{
shared::minwindef::UINT,
um::{handleapi::INVALID_HANDLE_VALUE, winnt::HANDLE},
};
#[pyattr]
use winapi::um::winbase::{
SEM_FAILCRITICALERRORS, SEM_NOALIGNMENTFAULTEXCEPT, SEM_NOGPFAULTERRORBOX,
SEM_NOOPENFILEERRORBOX,
};
pub fn setmode_binary(fd: i32) {
unsafe { suppress_iph!(_setmode(fd, libc::O_BINARY)) };
}
extern "C" {
fn _getch() -> i32;
fn _getwch() -> u32;
fn _getche() -> i32;
fn _getwche() -> u32;
fn _putch(c: u32) -> i32;
fn _putwch(c: u16) -> u32;
}
#[pyfunction]
fn getch() -> Vec<u8> {
let c = unsafe { _getch() };
vec![c as u8]
}
#[pyfunction]
fn getwch() -> String {
let c = unsafe { _getwch() };
std::char::from_u32(c).unwrap().to_string()
}
#[pyfunction]
fn getche() -> Vec<u8> {
let c = unsafe { _getche() };
vec![c as u8]
}
#[pyfunction]
fn getwche() -> String {
let c = unsafe { _getwche() };
std::char::from_u32(c).unwrap().to_string()
}
#[pyfunction]
fn putch(b: PyRef<PyBytes>, vm: &VirtualMachine) -> PyResult<()> {
let &c = b.as_bytes().iter().exactly_one().map_err(|_| {
vm.new_type_error("putch() argument must be a byte string of length 1".to_owned())
})?;
unsafe { suppress_iph!(_putch(c.into())) };
Ok(())
}
#[pyfunction]
fn putwch(s: PyStrRef, vm: &VirtualMachine) -> PyResult<()> {
let c = s.as_str().chars().exactly_one().map_err(|_| {
vm.new_type_error("putch() argument must be a string of length 1".to_owned())
})?;
unsafe { suppress_iph!(_putwch(c as u16)) };
Ok(())
}
extern "C" {
fn _setmode(fd: i32, flags: i32) -> i32;
}
#[pyfunction]
fn setmode(fd: i32, flags: i32, vm: &VirtualMachine) -> PyResult<i32> {
let flags = unsafe { suppress_iph!(_setmode(fd, flags)) };
if flags == -1 {
Err(errno_err(vm))
} else {
Ok(flags)
}
}
extern "C" {
fn _open_osfhandle(osfhandle: isize, flags: i32) -> i32;
fn _get_osfhandle(fd: i32) -> libc::intptr_t;
}
#[pyfunction]
fn open_osfhandle(handle: isize, flags: i32, vm: &VirtualMachine) -> PyResult<i32> {
let ret = unsafe { suppress_iph!(_open_osfhandle(handle, flags)) };
if ret == -1 {
Err(errno_err(vm))
} else {
Ok(ret)
}
}
#[pyfunction]
fn get_osfhandle(fd: i32, vm: &VirtualMachine) -> PyResult<isize> {
let ret = unsafe { suppress_iph!(_get_osfhandle(fd)) };
if ret as HANDLE == INVALID_HANDLE_VALUE {
Err(errno_err(vm))
} else {
Ok(ret)
}
}
#[allow(non_snake_case)]
#[pyfunction]
fn SetErrorMode(mode: UINT, _: &VirtualMachine) -> UINT {
unsafe { suppress_iph!(winapi::um::errhandlingapi::SetErrorMode(mode)) }
}
}