@@ -38,7 +38,7 @@ pub use self::MapError::*;
38
38
use clone:: Clone ;
39
39
use error:: { FromError , Error } ;
40
40
use fmt;
41
- use io:: IoResult ;
41
+ use io:: { IoResult , IoError } ;
42
42
use iter:: Iterator ;
43
43
use libc:: { c_void, c_int} ;
44
44
use libc;
@@ -76,72 +76,83 @@ pub fn num_cpus() -> uint {
76
76
pub const TMPBUF_SZ : uint = 1000 u;
77
77
const BUF_BYTES : uint = 2048 u;
78
78
79
- /// Returns the current working directory as a Path.
79
+ /// Returns the current working directory as a ` Path` .
80
80
///
81
- /// # Failure
81
+ /// # Errors
82
82
///
83
- /// Fails if the current working directory value is invalid:
83
+ /// Returns an `Err` if the current working directory value is invalid.
84
84
/// Possible cases:
85
85
///
86
86
/// * Current directory does not exist.
87
87
/// * There are insufficient permissions to access the current directory.
88
+ /// * The internal buffer is not large enough to hold the path.
88
89
///
89
90
/// # Example
90
91
///
91
92
/// ```rust
92
93
/// use std::os;
93
94
///
94
95
/// // We assume that we are in a valid directory like "/home".
95
- /// let current_working_directory = os::getcwd();
96
+ /// let current_working_directory = os::getcwd().unwrap() ;
96
97
/// println!("The current directory is {}", current_working_directory.display());
97
98
/// // /home
98
99
/// ```
99
100
#[ cfg( unix) ]
100
- pub fn getcwd ( ) -> Path {
101
+ pub fn getcwd ( ) -> IoResult < Path > {
101
102
use c_str:: CString ;
102
103
103
104
let mut buf = [ 0 as c_char , ..BUF_BYTES ] ;
104
105
unsafe {
105
106
if libc:: getcwd ( buf. as_mut_ptr ( ) , buf. len ( ) as libc:: size_t ) . is_null ( ) {
106
- panic ! ( )
107
+ Err ( IoError :: last_error ( ) )
108
+ } else {
109
+ Ok ( Path :: new ( CString :: new ( buf. as_ptr ( ) , false ) ) )
107
110
}
108
- Path :: new ( CString :: new ( buf. as_ptr ( ) , false ) )
109
111
}
110
112
}
111
113
112
- /// Returns the current working directory as a Path.
114
+ /// Returns the current working directory as a ` Path` .
113
115
///
114
- /// # Failure
116
+ /// # Errors
115
117
///
116
- /// Fails if the current working directory value is invalid.
117
- /// Possibles cases:
118
+ /// Returns an `Err` if the current working directory value is invalid.
119
+ /// Possible cases:
118
120
///
119
121
/// * Current directory does not exist.
120
122
/// * There are insufficient permissions to access the current directory.
123
+ /// * The internal buffer is not large enough to hold the path.
121
124
///
122
125
/// # Example
123
126
///
124
127
/// ```rust
125
128
/// use std::os;
126
129
///
127
130
/// // We assume that we are in a valid directory like "C:\\Windows".
128
- /// let current_working_directory = os::getcwd();
131
+ /// let current_working_directory = os::getcwd().unwrap() ;
129
132
/// println!("The current directory is {}", current_working_directory.display());
130
133
/// // C:\\Windows
131
134
/// ```
132
135
#[ cfg( windows) ]
133
- pub fn getcwd ( ) -> Path {
136
+ pub fn getcwd ( ) -> IoResult < Path > {
134
137
use libc:: DWORD ;
135
138
use libc:: GetCurrentDirectoryW ;
139
+ use io:: OtherIoError ;
136
140
137
141
let mut buf = [ 0 as u16 , ..BUF_BYTES ] ;
138
142
unsafe {
139
143
if libc:: GetCurrentDirectoryW ( buf. len ( ) as DWORD , buf. as_mut_ptr ( ) ) == 0 as DWORD {
140
- panic ! ( ) ;
144
+ return Err ( IoError :: last_error ( ) ) ;
141
145
}
142
146
}
143
- Path :: new ( String :: from_utf16 ( :: str:: truncate_utf16_at_nul ( & buf) )
144
- . expect ( "GetCurrentDirectoryW returned invalid UTF-16" ) )
147
+
148
+ match String :: from_utf16 ( :: str:: truncate_utf16_at_nul ( & buf) ) {
149
+ Some ( ref cwd) => Ok ( Path :: new ( cwd) ) ,
150
+ None => Err ( IoError {
151
+ kind : OtherIoError ,
152
+ desc : "GetCurrentDirectoryW returned invalid UTF-16" ,
153
+ detail : None ,
154
+ } ) ,
155
+ }
145
156
}
146
157
147
158
#[ cfg( windows) ]
@@ -411,7 +422,9 @@ pub fn setenv<T: BytesContainer>(n: &str, v: T) {
411
422
with_env_lock ( || {
412
423
n. with_c_str ( |nbuf| {
413
424
v. with_c_str ( |vbuf| {
414
- libc:: funcs:: posix01:: unistd:: setenv ( nbuf, vbuf, 1 ) ;
425
+ if libc:: funcs:: posix01:: unistd:: setenv ( nbuf, vbuf, 1 ) != 0 {
426
+ panic ! ( IoError :: last_error( ) ) ;
427
+ }
415
428
} )
416
429
} )
417
430
} )
@@ -427,7 +440,9 @@ pub fn setenv<T: BytesContainer>(n: &str, v: T) {
427
440
428
441
unsafe {
429
442
with_env_lock ( || {
430
- libc:: SetEnvironmentVariableW ( n. as_ptr ( ) , v. as_ptr ( ) ) ;
443
+ if libc:: SetEnvironmentVariableW ( n. as_ptr ( ) , v. as_ptr ( ) ) == 0 {
444
+ panic ! ( IoError :: last_error( ) ) ;
445
+ }
431
446
} )
432
447
}
433
448
}
@@ -442,7 +457,9 @@ pub fn unsetenv(n: &str) {
442
457
unsafe {
443
458
with_env_lock ( || {
444
459
n. with_c_str ( |nbuf| {
445
- libc:: funcs:: posix01:: unistd:: unsetenv ( nbuf) ;
460
+ if libc:: funcs:: posix01:: unistd:: unsetenv ( nbuf) != 0 {
461
+ panic ! ( IoError :: last_error( ) ) ;
462
+ }
446
463
} )
447
464
} )
448
465
}
@@ -454,11 +471,14 @@ pub fn unsetenv(n: &str) {
454
471
n. push ( 0 ) ;
455
472
unsafe {
456
473
with_env_lock ( || {
457
- libc:: SetEnvironmentVariableW ( n. as_ptr ( ) , ptr:: null ( ) ) ;
474
+ if libc:: SetEnvironmentVariableW ( n. as_ptr ( ) , ptr:: null ( ) ) == 0 {
475
+ panic ! ( IoError :: last_error( ) ) ;
476
+ }
458
477
} )
459
478
}
460
479
}
461
- _unsetenv ( n) ;
480
+
481
+ _unsetenv ( n)
462
482
}
463
483
464
484
/// Parses input according to platform conventions for the `PATH`
@@ -829,20 +849,21 @@ pub fn tmpdir() -> Path {
829
849
///
830
850
/// // Assume we're in a path like /home/someuser
831
851
/// let rel_path = Path::new("..");
832
- /// let abs_path = os::make_absolute(&rel_path);
852
+ /// let abs_path = os::make_absolute(&rel_path).unwrap() ;
833
853
/// println!("The absolute path is {}", abs_path.display());
834
854
/// // Prints "The absolute path is /home"
835
855
/// ```
836
856
// NB: this is here rather than in path because it is a form of environment
837
857
// querying; what it does depends on the process working directory, not just
838
858
// the input paths.
839
- pub fn make_absolute ( p : & Path ) -> Path {
859
+ pub fn make_absolute ( p : & Path ) -> IoResult < Path > {
840
860
if p. is_absolute ( ) {
841
- p. clone ( )
861
+ Ok ( p. clone ( ) )
842
862
} else {
843
- let mut ret = getcwd ( ) ;
844
- ret. push ( p) ;
845
- ret
863
+ getcwd ( ) . map ( |mut cwd| {
864
+ cwd. push ( p) ;
865
+ cwd
866
+ } )
846
867
}
847
868
}
848
869
@@ -855,32 +876,33 @@ pub fn make_absolute(p: &Path) -> Path {
855
876
/// use std::path::Path;
856
877
///
857
878
/// let root = Path::new("/");
858
- /// assert!(os::change_dir(&root));
879
+ /// assert!(os::change_dir(&root).is_ok() );
859
880
/// println!("Successfully changed working directory to {}!", root.display());
860
881
/// ```
861
- pub fn change_dir ( p : & Path ) -> bool {
882
+ pub fn change_dir ( p : & Path ) -> IoResult < ( ) > {
862
883
return chdir ( p) ;
863
884
864
885
#[ cfg( windows) ]
865
- fn chdir ( p : & Path ) -> bool {
866
- let p = match p. as_str ( ) {
867
- Some ( s) => {
868
- let mut p = s. utf16_units ( ) . collect :: < Vec < u16 > > ( ) ;
869
- p. push ( 0 ) ;
870
- p
871
- }
872
- None => return false ,
873
- } ;
886
+ fn chdir ( p : & Path ) -> IoResult < ( ) > {
887
+ let mut p = p. as_str ( ) . unwrap ( ) . utf16_units ( ) . collect :: < Vec < u16 > > ( ) ;
888
+ p. push ( 0 ) ;
889
+
874
890
unsafe {
875
- libc:: SetCurrentDirectoryW ( p. as_ptr ( ) ) != ( 0 as libc:: BOOL )
891
+ match libc:: SetCurrentDirectoryW ( p. as_ptr ( ) ) != ( 0 as libc:: BOOL ) {
892
+ true => Ok ( ( ) ) ,
893
+ false => Err ( IoError :: last_error ( ) ) ,
894
+ }
876
895
}
877
896
}
878
897
879
898
#[ cfg( unix) ]
880
- fn chdir ( p : & Path ) -> bool {
899
+ fn chdir ( p : & Path ) -> IoResult < ( ) > {
881
900
p. with_c_str ( |buf| {
882
901
unsafe {
883
- libc:: chdir ( buf) == ( 0 as c_int )
902
+ match libc:: chdir ( buf) == ( 0 as c_int ) {
903
+ true => Ok ( ( ) ) ,
904
+ false => Err ( IoError :: last_error ( ) ) ,
905
+ }
884
906
}
885
907
} )
886
908
}
@@ -1881,11 +1903,11 @@ mod tests {
1881
1903
fn test ( ) {
1882
1904
assert ! ( ( !Path :: new( "test-path" ) . is_absolute( ) ) ) ;
1883
1905
1884
- let cwd = getcwd ( ) ;
1906
+ let cwd = getcwd ( ) . unwrap ( ) ;
1885
1907
debug ! ( "Current working directory: {}" , cwd. display( ) ) ;
1886
1908
1887
- debug ! ( "{}" , make_absolute( & Path :: new( "test-path" ) ) . display( ) ) ;
1888
- debug ! ( "{}" , make_absolute( & Path :: new( "/usr/bin" ) ) . display( ) ) ;
1909
+ debug ! ( "{}" , make_absolute( & Path :: new( "test-path" ) ) . unwrap ( ) . display( ) ) ;
1910
+ debug ! ( "{}" , make_absolute( & Path :: new( "/usr/bin" ) ) . unwrap ( ) . display( ) ) ;
1889
1911
}
1890
1912
1891
1913
#[ test]
0 commit comments