Skip to content

Commit 8e9d3e5

Browse files
committed
Try fix find file windows build
1 parent a4a8b34 commit 8e9d3e5

File tree

1 file changed

+37
-12
lines changed

1 file changed

+37
-12
lines changed

helix-term/src/ui/picker.rs

+37-12
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ use helix_view::{
3333

3434
// based on exa but not sure where to put this
3535
/// More readable aliases for the permission bits exposed by libc.
36-
#[allow(trivial_numeric_casts)]
36+
#[cfg(unix)]
3737
mod modes {
3838
// The `libc::mode_t` type’s actual type varies, but the value returned
3939
// from `metadata.permissions().mode()` is always `u32`.
@@ -56,6 +56,9 @@ mod modes {
5656
pub const SETUID: Mode = libc::S_ISUID as Mode;
5757
}
5858

59+
#[cfg(not(unix))]
60+
mod modes {}
61+
5962
// based on exa but not sure where to put this
6063
mod fields {
6164
use super::modes;
@@ -83,6 +86,7 @@ mod fields {
8386
Special,
8487
}
8588

89+
#[cfg(unix)]
8690
pub fn filetype(metadata: &Metadata) -> Type {
8791
let filetype = metadata.file_type();
8892
if metadata.is_file() {
@@ -104,6 +108,11 @@ mod fields {
104108
}
105109
}
106110

111+
#[cfg(not(unix))]
112+
pub fn filetype(metadata: &Metadata) -> Type {
113+
unreachable!()
114+
}
115+
107116
impl fmt::Display for Type {
108117
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
109118
write!(
@@ -143,6 +152,7 @@ mod fields {
143152
pub setuid: bool,
144153
}
145154

155+
#[cfg(unix)]
146156
pub fn permissions(metadata: &Metadata) -> Permissions {
147157
let bits = metadata.mode();
148158
let has_bit = |bit| bits & bit == bit;
@@ -165,6 +175,11 @@ mod fields {
165175
}
166176
}
167177

178+
#[cfg(not(unix))]
179+
pub fn permissions(metadata: &Metadata) -> Permissions {
180+
unreachable!()
181+
}
182+
168183
impl fmt::Display for Permissions {
169184
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
170185
let bit = |bit, char| if bit { char } else { "-" };
@@ -230,6 +245,7 @@ mod fields {
230245
///
231246
/// Block and character devices return their device IDs, because they
232247
/// usually just have a file size of zero.
248+
#[cfg(unix)]
233249
pub fn size(metadata: &Metadata) -> Size {
234250
let filetype = metadata.file_type();
235251
if metadata.is_dir() {
@@ -250,6 +266,11 @@ mod fields {
250266
}
251267
}
252268

269+
#[cfg(not(unix))]
270+
pub fn size(metadata: &Metadata) -> Size {
271+
unreachable!()
272+
}
273+
253274
impl fmt::Display for Size {
254275
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
255276
use number_prefix::NumberPrefix;
@@ -335,17 +356,21 @@ impl FindFilePicker {
335356
let suffix = if path.is_dir() { "/" } else { "" };
336357
let metadata = fs::metadata(&*path).unwrap();
337358
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+
}
349374
},
350375
|_cx, _path, _action| {}, // we use custom callback_fn
351376
|_editor, path| Some((path.clone(), None)),

0 commit comments

Comments
 (0)