2018-10-16 13:02:52 -04:00
|
|
|
// Copyright 2016 Joe Wilm, The Alacritty Project Contributors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
//! tty related functionality
|
|
|
|
use mio;
|
2018-11-11 07:55:28 -05:00
|
|
|
use std::{env, io};
|
|
|
|
|
|
|
|
use terminfo::Database;
|
|
|
|
|
2018-12-10 12:53:56 -05:00
|
|
|
use crate::config::Config;
|
2018-10-16 13:02:52 -04:00
|
|
|
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
mod unix;
|
|
|
|
#[cfg(not(windows))]
|
|
|
|
pub use self::unix::*;
|
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
mod windows;
|
|
|
|
#[cfg(windows)]
|
|
|
|
pub use self::windows::*;
|
|
|
|
|
|
|
|
/// This trait defines the behaviour needed to read and/or write to a stream.
|
|
|
|
/// It defines an abstraction over mio's interface in order to allow either one
|
2019-04-28 17:42:43 -04:00
|
|
|
/// read/write object or a separate read and write object.
|
2018-10-16 13:02:52 -04:00
|
|
|
pub trait EventedReadWrite {
|
|
|
|
type Reader: io::Read;
|
|
|
|
type Writer: io::Write;
|
|
|
|
|
2018-11-11 07:55:28 -05:00
|
|
|
fn register(
|
|
|
|
&mut self,
|
2018-12-10 12:53:56 -05:00
|
|
|
_: &mio::Poll,
|
2019-03-12 15:44:47 -04:00
|
|
|
_: &mut dyn Iterator<Item = mio::Token>,
|
2018-12-10 12:53:56 -05:00
|
|
|
_: mio::Ready,
|
|
|
|
_: mio::PollOpt,
|
2018-11-11 07:55:28 -05:00
|
|
|
) -> io::Result<()>;
|
2018-12-10 12:53:56 -05:00
|
|
|
fn reregister(&mut self, _: &mio::Poll, _: mio::Ready, _: mio::PollOpt) -> io::Result<()>;
|
|
|
|
fn deregister(&mut self, _: &mio::Poll) -> io::Result<()>;
|
2018-10-16 13:02:52 -04:00
|
|
|
|
|
|
|
fn reader(&mut self) -> &mut Self::Reader;
|
|
|
|
fn read_token(&self) -> mio::Token;
|
|
|
|
fn writer(&mut self) -> &mut Self::Writer;
|
|
|
|
fn write_token(&self) -> mio::Token;
|
|
|
|
}
|
2018-11-11 07:55:28 -05:00
|
|
|
|
2019-03-12 15:44:47 -04:00
|
|
|
/// Events concerning TTY child processes
|
2019-11-16 16:11:56 -05:00
|
|
|
#[derive(Debug, PartialEq)]
|
2019-03-12 15:44:47 -04:00
|
|
|
pub enum ChildEvent {
|
|
|
|
/// Indicates the child has exited
|
2019-03-30 12:48:36 -04:00
|
|
|
Exited,
|
2019-03-12 15:44:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A pseudoterminal (or PTY)
|
|
|
|
///
|
|
|
|
/// This is a refinement of EventedReadWrite that also provides a channel through which we can be
|
|
|
|
/// notified if the PTY child process does something we care about (other than writing to the TTY).
|
|
|
|
/// In particular, this allows for race-free child exit notification on UNIX (cf. `SIGCHLD`).
|
2019-03-30 12:48:36 -04:00
|
|
|
pub trait EventedPty: EventedReadWrite {
|
2019-03-12 15:44:47 -04:00
|
|
|
fn child_event_token(&self) -> mio::Token;
|
|
|
|
|
|
|
|
/// Tries to retrieve an event
|
|
|
|
///
|
|
|
|
/// Returns `Some(event)` on success, or `None` if there are no events to retrieve.
|
|
|
|
fn next_child_event(&mut self) -> Option<ChildEvent>;
|
|
|
|
}
|
|
|
|
|
2018-11-11 07:55:28 -05:00
|
|
|
// Setup environment variables
|
2019-10-04 20:29:26 -04:00
|
|
|
pub fn setup_env<C>(config: &Config<C>) {
|
2018-11-11 07:55:28 -05:00
|
|
|
// Default to 'alacritty' terminfo if it is available, otherwise
|
|
|
|
// default to 'xterm-256color'. May be overridden by user's config
|
|
|
|
// below.
|
|
|
|
env::set_var(
|
|
|
|
"TERM",
|
2019-03-30 12:48:36 -04:00
|
|
|
if Database::from_name("alacritty").is_ok() { "alacritty" } else { "xterm-256color" },
|
2018-11-11 07:55:28 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
// Advertise 24-bit color support
|
|
|
|
env::set_var("COLORTERM", "truecolor");
|
|
|
|
|
2019-06-16 12:03:52 -04:00
|
|
|
// Prevent child processes from inheriting startup notification env
|
|
|
|
env::remove_var("DESKTOP_STARTUP_ID");
|
|
|
|
|
2018-11-11 07:55:28 -05:00
|
|
|
// Set env vars from config
|
2019-05-10 07:36:16 -04:00
|
|
|
for (key, value) in config.env.iter() {
|
2018-11-11 07:55:28 -05:00
|
|
|
env::set_var(key, value);
|
|
|
|
}
|
|
|
|
}
|