@@ -33,7 +33,7 @@ use helix_view::{
33
33
34
34
// based on exa but not sure where to put this
35
35
/// More readable aliases for the permission bits exposed by libc.
36
- #[ allow ( trivial_numeric_casts ) ]
36
+ #[ cfg ( unix ) ]
37
37
mod modes {
38
38
// The `libc::mode_t` type’s actual type varies, but the value returned
39
39
// from `metadata.permissions().mode()` is always `u32`.
@@ -56,6 +56,9 @@ mod modes {
56
56
pub const SETUID : Mode = libc:: S_ISUID as Mode ;
57
57
}
58
58
59
+ #[ cfg( not( unix) ) ]
60
+ mod modes { }
61
+
59
62
// based on exa but not sure where to put this
60
63
mod fields {
61
64
use super :: modes;
@@ -83,6 +86,7 @@ mod fields {
83
86
Special ,
84
87
}
85
88
89
+ #[ cfg( unix) ]
86
90
pub fn filetype ( metadata : & Metadata ) -> Type {
87
91
let filetype = metadata. file_type ( ) ;
88
92
if metadata. is_file ( ) {
@@ -104,6 +108,11 @@ mod fields {
104
108
}
105
109
}
106
110
111
+ #[ cfg( not( unix) ) ]
112
+ pub fn filetype ( metadata : & Metadata ) -> Type {
113
+ unreachable ! ( )
114
+ }
115
+
107
116
impl fmt:: Display for Type {
108
117
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
109
118
write ! (
@@ -143,6 +152,7 @@ mod fields {
143
152
pub setuid : bool ,
144
153
}
145
154
155
+ #[ cfg( unix) ]
146
156
pub fn permissions ( metadata : & Metadata ) -> Permissions {
147
157
let bits = metadata. mode ( ) ;
148
158
let has_bit = |bit| bits & bit == bit;
@@ -165,6 +175,11 @@ mod fields {
165
175
}
166
176
}
167
177
178
+ #[ cfg( not( unix) ) ]
179
+ pub fn permissions ( metadata : & Metadata ) -> Permissions {
180
+ unreachable ! ( )
181
+ }
182
+
168
183
impl fmt:: Display for Permissions {
169
184
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
170
185
let bit = |bit, char| if bit { char } else { "-" } ;
@@ -230,6 +245,7 @@ mod fields {
230
245
///
231
246
/// Block and character devices return their device IDs, because they
232
247
/// usually just have a file size of zero.
248
+ #[ cfg( unix) ]
233
249
pub fn size ( metadata : & Metadata ) -> Size {
234
250
let filetype = metadata. file_type ( ) ;
235
251
if metadata. is_dir ( ) {
@@ -250,6 +266,11 @@ mod fields {
250
266
}
251
267
}
252
268
269
+ #[ cfg( not( unix) ) ]
270
+ pub fn size ( metadata : & Metadata ) -> Size {
271
+ unreachable ! ( )
272
+ }
273
+
253
274
impl fmt:: Display for Size {
254
275
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
255
276
use number_prefix:: NumberPrefix ;
@@ -335,17 +356,21 @@ impl FindFilePicker {
335
356
let suffix = if path. is_dir ( ) { "/" } else { "" } ;
336
357
let metadata = fs:: metadata ( & * path) . unwrap ( ) ;
337
358
let path = path. strip_prefix ( & dir1) . unwrap_or ( path) . to_string_lossy ( ) ;
338
- let filetype = fields:: filetype ( & metadata) ;
339
- let permissions = fields:: permissions ( & metadata) ;
340
- let size = format ! ( "{}" , fields:: size( & metadata) ) ;
341
- Cow :: Owned ( format ! (
342
- "{:<22} {}{} {:>6}" ,
343
- path + suffix, // TODO this should check for size and handle truncation
344
- filetype,
345
- permissions,
346
- size,
347
- // TODO add absolute/relative time? may need to handle truncation
348
- ) )
359
+ if cfg ! ( unix) {
360
+ let filetype = fields:: filetype ( & metadata) ;
361
+ let permissions = fields:: permissions ( & metadata) ;
362
+ let size = format ! ( "{}" , fields:: size( & metadata) ) ;
363
+ Cow :: Owned ( format ! (
364
+ "{:<22} {}{} {:>6}" ,
365
+ path + suffix, // TODO this should check for size and handle truncation
366
+ filetype,
367
+ permissions,
368
+ size,
369
+ // TODO add absolute/relative time? may need to handle truncation
370
+ ) )
371
+ } else {
372
+ path + suffix
373
+ }
349
374
} ,
350
375
|_cx, _path, _action| { } , // we use custom callback_fn
351
376
|_editor, path| Some ( ( path. clone ( ) , None ) ) ,
0 commit comments