use std::io::ErrorKind;
use crate::scanner_rust::{generic_array::typenum::U48, ScannerAscii, ScannerError};
/// Get the kernel version by reading the `/proc/version` file.
///
/// ```rust
/// use mprober_lib::kernel;
///
/// let kernel_version = kernel::get_kernel_version().unwrap();
///
/// println!("{kernel_version}");
/// ```
#[inline]
pub fn get_kernel_version() -> Result<String, ScannerError> {
let mut sc: ScannerAscii<_, U48> = ScannerAscii::scan_path2("/proc/version")?;
sc.drop_next_bytes(14)?.ok_or(ErrorKind::UnexpectedEof)?;
let v = sc.next_raw()?.ok_or(ErrorKind::UnexpectedEof)?;
Ok(unsafe { String::from_utf8_unchecked(v) })
}