132 lines
2.4 KiB
Rust
132 lines
2.4 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use crate::{DiskUsage, Gid, Pid, ProcessStatus, Signal, Uid};
|
|
|
|
use std::ffi::{OsStr, OsString};
|
|
use std::fmt;
|
|
use std::path::Path;
|
|
use std::process::ExitStatus;
|
|
|
|
impl fmt::Display for ProcessStatus {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
f.write_str("Unknown")
|
|
}
|
|
}
|
|
|
|
pub(crate) struct ProcessInner {
|
|
pid: Pid,
|
|
parent: Option<Pid>,
|
|
}
|
|
|
|
impl ProcessInner {
|
|
pub(crate) fn kill_with(&self, _signal: Signal) -> Option<bool> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn name(&self) -> &OsStr {
|
|
OsStr::new("")
|
|
}
|
|
|
|
pub(crate) fn cmd(&self) -> &[OsString] {
|
|
&[]
|
|
}
|
|
|
|
pub(crate) fn exe(&self) -> Option<&Path> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn pid(&self) -> Pid {
|
|
self.pid
|
|
}
|
|
|
|
pub(crate) fn environ(&self) -> &[OsString] {
|
|
&[]
|
|
}
|
|
|
|
pub(crate) fn cwd(&self) -> Option<&Path> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn root(&self) -> Option<&Path> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn memory(&self) -> u64 {
|
|
0
|
|
}
|
|
|
|
pub(crate) fn virtual_memory(&self) -> u64 {
|
|
0
|
|
}
|
|
|
|
pub(crate) fn parent(&self) -> Option<Pid> {
|
|
self.parent
|
|
}
|
|
|
|
pub(crate) fn status(&self) -> ProcessStatus {
|
|
ProcessStatus::Unknown(0)
|
|
}
|
|
|
|
pub(crate) fn start_time(&self) -> u64 {
|
|
0
|
|
}
|
|
|
|
pub(crate) fn run_time(&self) -> u64 {
|
|
0
|
|
}
|
|
|
|
pub(crate) fn cpu_usage(&self) -> f32 {
|
|
0.0
|
|
}
|
|
|
|
pub(crate) fn accumulated_cpu_time(&self) -> u64 {
|
|
0
|
|
}
|
|
|
|
pub(crate) fn disk_usage(&self) -> DiskUsage {
|
|
DiskUsage::default()
|
|
}
|
|
|
|
pub(crate) fn user_id(&self) -> Option<&Uid> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn effective_user_id(&self) -> Option<&Uid> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn group_id(&self) -> Option<Gid> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn effective_group_id(&self) -> Option<Gid> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn wait(&self) -> Option<ExitStatus> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn session_id(&self) -> Option<Pid> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn switch_updated(&mut self) -> bool {
|
|
false
|
|
}
|
|
|
|
pub(crate) fn set_nonexistent(&mut self) {}
|
|
|
|
pub(crate) fn exists(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
pub(crate) fn open_files(&self) -> Option<u32> {
|
|
None
|
|
}
|
|
|
|
pub(crate) fn open_files_limit(&self) -> Option<u32> {
|
|
None
|
|
}
|
|
}
|