2021-04-14 02:37:36 +02:00
|
|
|
use super::unsupported;
|
2019-02-11 04:23:21 +09:00
|
|
|
use crate::error::Error as StdError;
|
2019-11-27 10:28:39 -08:00
|
|
|
use crate::ffi::{OsStr, OsString};
|
2019-02-11 04:23:21 +09:00
|
|
|
use crate::fmt;
|
|
|
|
|
use crate::io;
|
2021-04-14 03:19:01 +02:00
|
|
|
use crate::marker::PhantomData;
|
2019-02-11 04:23:21 +09:00
|
|
|
use crate::path::{self, PathBuf};
|
2017-10-22 20:01:00 -07:00
|
|
|
|
|
|
|
|
pub fn errno() -> i32 {
|
|
|
|
|
0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn error_string(_errno: i32) -> String {
|
2018-07-28 14:40:32 +02:00
|
|
|
"operation successful".to_string()
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn getcwd() -> io::Result<PathBuf> {
|
|
|
|
|
unsupported()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn chdir(_: &path::Path) -> io::Result<()> {
|
|
|
|
|
unsupported()
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 03:19:01 +02:00
|
|
|
pub struct SplitPaths<'a>(!, PhantomData<&'a ()>);
|
2017-10-22 20:01:00 -07:00
|
|
|
|
2019-03-01 09:34:11 +01:00
|
|
|
pub fn split_paths(_unparsed: &OsStr) -> SplitPaths<'_> {
|
2017-10-22 20:01:00 -07:00
|
|
|
panic!("unsupported")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<'a> Iterator for SplitPaths<'a> {
|
|
|
|
|
type Item = PathBuf;
|
|
|
|
|
fn next(&mut self) -> Option<PathBuf> {
|
2021-04-14 03:19:01 +02:00
|
|
|
self.0
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub struct JoinPathsError;
|
|
|
|
|
|
|
|
|
|
pub fn join_paths<I, T>(_paths: I) -> Result<OsString, JoinPathsError>
|
2019-11-27 10:28:39 -08:00
|
|
|
where
|
|
|
|
|
I: Iterator<Item = T>,
|
|
|
|
|
T: AsRef<OsStr>,
|
2017-10-22 20:01:00 -07:00
|
|
|
{
|
|
|
|
|
Err(JoinPathsError)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl fmt::Display for JoinPathsError {
|
2019-03-01 09:34:11 +01:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2020-05-31 18:09:25 -07:00
|
|
|
"not supported on this platform yet".fmt(f)
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl StdError for JoinPathsError {
|
2019-11-30 20:01:48 -08:00
|
|
|
#[allow(deprecated)]
|
2017-10-22 20:01:00 -07:00
|
|
|
fn description(&self) -> &str {
|
2020-05-31 18:09:25 -07:00
|
|
|
"not supported on this platform yet"
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn current_exe() -> io::Result<PathBuf> {
|
|
|
|
|
unsupported()
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 02:37:36 +02:00
|
|
|
pub struct Env(!);
|
2017-10-22 20:01:00 -07:00
|
|
|
|
|
|
|
|
impl Iterator for Env {
|
|
|
|
|
type Item = (OsString, OsString);
|
|
|
|
|
fn next(&mut self) -> Option<(OsString, OsString)> {
|
2021-04-14 03:19:01 +02:00
|
|
|
self.0
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn env() -> Env {
|
2020-05-31 18:09:25 -07:00
|
|
|
panic!("not supported on this platform")
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
2021-06-24 16:04:24 -07:00
|
|
|
pub fn getenv(_: &OsStr) -> Option<OsString> {
|
|
|
|
|
None
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
2019-07-23 07:25:34 -07:00
|
|
|
pub fn setenv(_: &OsStr, _: &OsStr) -> io::Result<()> {
|
2021-03-19 01:39:20 +01:00
|
|
|
Err(io::Error::new_const(io::ErrorKind::Unsupported, &"cannot set env vars on this platform"))
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
2019-07-23 07:25:34 -07:00
|
|
|
pub fn unsetenv(_: &OsStr) -> io::Result<()> {
|
2021-03-19 01:39:20 +01:00
|
|
|
Err(io::Error::new_const(io::ErrorKind::Unsupported, &"cannot unset env vars on this platform"))
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn temp_dir() -> PathBuf {
|
2020-05-31 18:09:25 -07:00
|
|
|
panic!("no filesystem on this platform")
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn home_dir() -> Option<PathBuf> {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn exit(_code: i32) -> ! {
|
2020-05-31 18:09:25 -07:00
|
|
|
crate::intrinsics::abort()
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn getpid() -> u32 {
|
2020-05-31 18:09:25 -07:00
|
|
|
panic!("no pids on this platform")
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|