Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 65 additions & 7 deletions src/uu/stty/src/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
// spell-checker:ignore ignbrk brkint ignpar parmrk inpck istrip inlcr igncr icrnl ixoff ixon iuclc ixany imaxbel iutf
// spell-checker:ignore opost olcuc ocrnl onlcr onocr onlret ofdel nldly crdly tabdly bsdly vtdly ffdly
// spell-checker:ignore isig icanon iexten echoe crterase echok echonl noflsh xcase tostop echoprt prterase echoctl ctlecho echoke crtkill flusho extproc
// spell-checker:ignore lnext rprnt susp swtch vdiscard veof veol verase vintr vkill vlnext vquit vreprint vstart vstop vsusp vswtc vwerase werase
// spell-checker:ignore lnext rprnt susp dsusp swtch vdiscard veof veol verase vintr vkill vlnext vquit vreprint vstart vstop vsusp vswtc vwerase werase VDSUSP
// spell-checker:ignore sigquit sigtstp
// spell-checker:ignore cbreak decctlq evenp litout oddp
// spell-checker:ignore cdtrdsr CDTRDSR ofill OFILL dsusp VDSUSP VFLUSHO VSTATUS noncanonical VMIN deciseconds noncanonical VTIME

use crate::Flag;

Expand Down Expand Up @@ -54,10 +55,14 @@ pub const CONTROL_FLAGS: &[Flag<C>] = &[
Flag::new_grouped("cs7", C::CS7, C::CSIZE),
Flag::new_grouped("cs8", C::CS8, C::CSIZE).sane(),
Flag::new("hupcl", C::HUPCL),
// Not supported by nix and libc.
// Flag::new("hup", C::HUP).hidden(),
Flag::new("cstopb", C::CSTOPB),
Flag::new("cread", C::CREAD).sane(),
Flag::new("clocal", C::CLOCAL),
Flag::new("crtscts", C::CRTSCTS),
// Not supported by nix and libc.
// Flag::new("cdtrdsr", C::CDTRDSR),
];

pub const INPUT_FLAGS: &[Flag<I>] = &[
Expand All @@ -70,11 +75,19 @@ pub const INPUT_FLAGS: &[Flag<I>] = &[
Flag::new("inlcr", I::INLCR),
Flag::new("igncr", I::IGNCR),
Flag::new("icrnl", I::ICRNL).sane(),
Flag::new("ixoff", I::IXOFF),
Flag::new("tandem", I::IXOFF),
Flag::new("ixon", I::IXON),
// not supported by nix
// Flag::new("iuclc", I::IUCLC),
Flag::new("ixoff", I::IXOFF),
Flag::new("tandem", I::IXOFF).hidden(),
#[cfg(any(
target_os = "aix",
target_os = "android",
target_os = "cygwin",
target_os = "haiku",
target_os = "hurd",
target_os = "nto",
target_os = "linux"
))]
Flag::new("iuclc", I::IUCLC),
Flag::new("ixany", I::IXANY),
Flag::new("imaxbel", I::IMAXBEL).sane(),
#[cfg(any(target_os = "android", target_os = "linux", target_os = "macos"))]
Expand All @@ -101,6 +114,14 @@ pub const OUTPUT_FLAGS: &[Flag<O>] = &[
target_os = "linux",
target_os = "macos"
))]
Flag::new("ofill", O::OFILL),
#[cfg(any(
target_os = "android",
target_os = "haiku",
target_os = "ios",
target_os = "linux",
target_os = "macos"
))]
Flag::new("ofdel", O::OFDEL),
#[cfg(any(
target_os = "android",
Expand Down Expand Up @@ -242,8 +263,13 @@ pub const LOCAL_FLAGS: &[Flag<L>] = &[
Flag::new("echok", L::ECHOK).sane(),
Flag::new("echonl", L::ECHONL),
Flag::new("noflsh", L::NOFLSH),
// Not supported by nix
// Flag::new("xcase", L::XCASE),
#[cfg(any(
target_os = "aix",
target_os = "android",
target_os = "haiku",
target_os = "linux",
))]
Flag::new("xcase", L::XCASE),
Flag::new("tostop", L::TOSTOP),
#[cfg(not(target_os = "cygwin"))]
Flag::new("echoprt", L::ECHOPRT),
Expand Down Expand Up @@ -342,6 +368,18 @@ pub const CONTROL_CHARS: &[(&str, S)] = &[
("stop", S::VSTOP),
// Sends a suspend signal (SIGTSTP).
("susp", S::VSUSP),
#[cfg(any(
target_os = "freebsd",
target_os = "dragonfly",
target_os = "ios",
target_os = "macos",
target_os = "netbsd",
target_os = "openbsd",
target_os = "aix",
target_os = "solaris"
))]
// Sends a delayed suspend signal (SIGTSTP).
("dsusp", S::VDSUSP),
// Reprints the current line.
("rprnt", S::VREPRINT),
// Deletes the last word typed.
Expand All @@ -350,6 +388,25 @@ pub const CONTROL_CHARS: &[(&str, S)] = &[
("lnext", S::VLNEXT),
// Discards the current line.
("discard", S::VDISCARD),
// deprecated compat option.
// Not supported by nix and libc.
// ("flush", S::VFLUSHO),
#[cfg(any(
target_os = "freebsd",
target_os = "dragonfly",
target_os = "ios",
target_os = "macos",
target_os = "netbsd",
target_os = "openbsd",
))]
// Status character
("status", S::VSTATUS),
// Minimum number of characters for noncanonical read.
// We handle this manually.
// ("min", S::VMIN),
// Timeout in deciseconds for noncanonical read.
// We handle this manually.
// ("time", S::VTIME),
];

/// This constant lists all possible combination settings, using a bool to represent if the setting is negatable
Expand All @@ -370,4 +427,5 @@ pub const COMBINATION_SETTINGS: &[(&str, bool)] = &[
("pass8", true),
("raw", true),
("sane", false),
("tabs", true),
];
9 changes: 3 additions & 6 deletions src/uu/stty/src/stty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -688,12 +688,9 @@ fn print_terminal_size(
);
}

#[cfg(any(target_os = "linux", target_os = "redox"))]
#[cfg(any(target_os = "linux", target_os = "android", target_os = "haiku"))]
{
// For some reason the normal nix Termios struct does not expose the line,
// so we get the underlying libc::termios struct to get that information.
let libc_termios: nix::libc::termios = termios.clone().into();
let line = libc_termios.c_line;
let line = termios.line_discipline;
printer.print(&translate!("stty-output-line", "line" => line));
}
printer.flush();
Expand Down Expand Up @@ -1056,7 +1053,7 @@ fn apply_special_setting(
)]
SpecialSetting::Line(n) => {
// nix only defines Termios's `line_discipline` field on these platforms
#[cfg(any(target_os = "linux", target_os = "android"))]
#[cfg(any(target_os = "linux", target_os = "android", target_os = "haiku"))]
{
_termios.line_discipline = *n;
}
Expand Down
Loading