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;
|
|
|
|
|
use crate::path::{self, PathBuf};
|
|
|
|
|
use crate::str;
|
2019-07-23 07:25:34 -07:00
|
|
|
use crate::sys::{unsupported, Void};
|
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()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct SplitPaths<'a>(&'a Void);
|
|
|
|
|
|
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> {
|
|
|
|
|
match *self.0 {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[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 {
|
2017-10-22 20:01:00 -07:00
|
|
|
"not supported on wasm yet".fmt(f)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 {
|
|
|
|
|
"not supported on wasm yet"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn current_exe() -> io::Result<PathBuf> {
|
|
|
|
|
unsupported()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct Env(Void);
|
|
|
|
|
|
|
|
|
|
impl Iterator for Env {
|
|
|
|
|
type Item = (OsString, OsString);
|
|
|
|
|
fn next(&mut self) -> Option<(OsString, OsString)> {
|
|
|
|
|
match self.0 {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn env() -> Env {
|
|
|
|
|
panic!("not supported on web assembly")
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-23 07:25:34 -07:00
|
|
|
pub fn getenv(_: &OsStr) -> io::Result<Option<OsString>> {
|
|
|
|
|
Ok(None)
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
2019-07-23 07:25:34 -07:00
|
|
|
pub fn setenv(_: &OsStr, _: &OsStr) -> io::Result<()> {
|
|
|
|
|
Err(io::Error::new(io::ErrorKind::Other, "cannot set env vars on wasm32-unknown-unknown"))
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
2019-07-23 07:25:34 -07:00
|
|
|
pub fn unsetenv(_: &OsStr) -> io::Result<()> {
|
|
|
|
|
Err(io::Error::new(io::ErrorKind::Other, "cannot unset env vars on wasm32-unknown-unknown"))
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn temp_dir() -> PathBuf {
|
|
|
|
|
panic!("no filesystem on wasm")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn home_dir() -> Option<PathBuf> {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn exit(_code: i32) -> ! {
|
2019-07-23 07:25:34 -07:00
|
|
|
unsafe {
|
|
|
|
|
crate::arch::wasm32::unreachable();
|
|
|
|
|
}
|
2017-10-22 20:01:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn getpid() -> u32 {
|
|
|
|
|
panic!("no pids on wasm")
|
|
|
|
|
}
|