You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Copied from https://github.com/BurntSushi/ripgrep/blob/7099e174acbcbd940f57e4ab4913fee4040c826e/crates/cli/src/hostname.rs
2
+
3
+
use std::{ffi::OsString, io};
4
+
5
+
/// Returns the hostname of the current system.
6
+
///
7
+
/// It is unusual, although technically possible, for this routine to return
8
+
/// an error. It is difficult to list out the error conditions, but one such
9
+
/// possibility is platform support.
10
+
///
11
+
/// # Platform specific behavior
12
+
///
13
+
/// On Unix, this returns the result of the `gethostname` function from the
14
+
/// `libc` linked into the program.
15
+
pubfnhostname() -> io::Result<OsString>{
16
+
#[cfg(unix)]
17
+
{
18
+
gethostname()
19
+
}
20
+
#[cfg(not(unix))]
21
+
{
22
+
Err(io::Error::new(
23
+
io::ErrorKind::Other,
24
+
"hostname could not be found on unsupported platform",
25
+
))
26
+
}
27
+
}
28
+
29
+
#[cfg(unix)]
30
+
fngethostname() -> io::Result<OsString>{
31
+
use std::os::unix::ffi::OsStringExt;
32
+
33
+
// SAFETY: There don't appear to be any safety requirements for calling
34
+
// sysconf.
35
+
let limit = unsafe{ libc::sysconf(libc::_SC_HOST_NAME_MAX)};
36
+
if limit == -1{
37
+
// It is in theory possible for sysconf to return -1 for a limit but
38
+
// *not* set errno, in which case, io::Error::last_os_error is
39
+
// indeterminate. But untangling that is super annoying because std
40
+
// doesn't expose any unix-specific APIs for inspecting the errno. (We
41
+
// could do it ourselves, but it just doesn't seem worth doing?)
42
+
returnErr(io::Error::last_os_error());
43
+
}
44
+
letOk(maxlen) = usize::try_from(limit)else{
45
+
let msg = format!("host name max limit ({}) overflowed usize", limit);
0 commit comments