feat: initial import of Rust implementation of Codex CLI in codex-rs/ (#629)
As stated in `codex-rs/README.md`:
Today, Codex CLI is written in TypeScript and requires Node.js 22+ to
run it. For a number of users, this runtime requirement inhibits
adoption: they would be better served by a standalone executable. As
maintainers, we want Codex to run efficiently in a wide range of
environments with minimal overhead. We also want to take advantage of
operating system-specific APIs to provide better sandboxing, where
possible.
To that end, we are moving forward with a Rust implementation of Codex
CLI contained in this folder, which has the following benefits:
- The CLI compiles to small, standalone, platform-specific binaries.
- Can make direct, native calls to
[seccomp](https://man7.org/linux/man-pages/man2/seccomp.2.html) and
[landlock](https://man7.org/linux/man-pages/man7/landlock.7.html) in
order to support sandboxing on Linux.
- No runtime garbage collection, resulting in lower memory consumption
and better, more predictable performance.
Currently, the Rust implementation is materially behind the TypeScript
implementation in functionality, so continue to use the TypeScript
implmentation for the time being. We will publish native executables via
GitHub Releases as soon as we feel the Rust version is usable.
2025-04-24 13:31:40 -07:00
|
|
|
use std::io::stdout;
|
|
|
|
|
use std::io::Stdout;
|
|
|
|
|
use std::io::{self};
|
|
|
|
|
|
2025-04-25 12:01:52 -07:00
|
|
|
use crossterm::event::DisableMouseCapture;
|
|
|
|
|
use crossterm::event::EnableMouseCapture;
|
feat: initial import of Rust implementation of Codex CLI in codex-rs/ (#629)
As stated in `codex-rs/README.md`:
Today, Codex CLI is written in TypeScript and requires Node.js 22+ to
run it. For a number of users, this runtime requirement inhibits
adoption: they would be better served by a standalone executable. As
maintainers, we want Codex to run efficiently in a wide range of
environments with minimal overhead. We also want to take advantage of
operating system-specific APIs to provide better sandboxing, where
possible.
To that end, we are moving forward with a Rust implementation of Codex
CLI contained in this folder, which has the following benefits:
- The CLI compiles to small, standalone, platform-specific binaries.
- Can make direct, native calls to
[seccomp](https://man7.org/linux/man-pages/man2/seccomp.2.html) and
[landlock](https://man7.org/linux/man-pages/man7/landlock.7.html) in
order to support sandboxing on Linux.
- No runtime garbage collection, resulting in lower memory consumption
and better, more predictable performance.
Currently, the Rust implementation is materially behind the TypeScript
implementation in functionality, so continue to use the TypeScript
implmentation for the time being. We will publish native executables via
GitHub Releases as soon as we feel the Rust version is usable.
2025-04-24 13:31:40 -07:00
|
|
|
use ratatui::backend::CrosstermBackend;
|
|
|
|
|
use ratatui::crossterm::execute;
|
|
|
|
|
use ratatui::crossterm::terminal::disable_raw_mode;
|
|
|
|
|
use ratatui::crossterm::terminal::enable_raw_mode;
|
|
|
|
|
use ratatui::crossterm::terminal::EnterAlternateScreen;
|
|
|
|
|
use ratatui::crossterm::terminal::LeaveAlternateScreen;
|
|
|
|
|
use ratatui::Terminal;
|
|
|
|
|
|
|
|
|
|
/// A type alias for the terminal type used in this application
|
|
|
|
|
pub type Tui = Terminal<CrosstermBackend<Stdout>>;
|
|
|
|
|
|
|
|
|
|
/// Initialize the terminal
|
|
|
|
|
pub fn init() -> io::Result<Tui> {
|
|
|
|
|
execute!(stdout(), EnterAlternateScreen)?;
|
2025-04-25 12:01:52 -07:00
|
|
|
execute!(stdout(), EnableMouseCapture)?;
|
feat: initial import of Rust implementation of Codex CLI in codex-rs/ (#629)
As stated in `codex-rs/README.md`:
Today, Codex CLI is written in TypeScript and requires Node.js 22+ to
run it. For a number of users, this runtime requirement inhibits
adoption: they would be better served by a standalone executable. As
maintainers, we want Codex to run efficiently in a wide range of
environments with minimal overhead. We also want to take advantage of
operating system-specific APIs to provide better sandboxing, where
possible.
To that end, we are moving forward with a Rust implementation of Codex
CLI contained in this folder, which has the following benefits:
- The CLI compiles to small, standalone, platform-specific binaries.
- Can make direct, native calls to
[seccomp](https://man7.org/linux/man-pages/man2/seccomp.2.html) and
[landlock](https://man7.org/linux/man-pages/man7/landlock.7.html) in
order to support sandboxing on Linux.
- No runtime garbage collection, resulting in lower memory consumption
and better, more predictable performance.
Currently, the Rust implementation is materially behind the TypeScript
implementation in functionality, so continue to use the TypeScript
implmentation for the time being. We will publish native executables via
GitHub Releases as soon as we feel the Rust version is usable.
2025-04-24 13:31:40 -07:00
|
|
|
enable_raw_mode()?;
|
|
|
|
|
set_panic_hook();
|
|
|
|
|
Terminal::new(CrosstermBackend::new(stdout()))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn set_panic_hook() {
|
|
|
|
|
let hook = std::panic::take_hook();
|
|
|
|
|
std::panic::set_hook(Box::new(move |panic_info| {
|
|
|
|
|
let _ = restore(); // ignore any errors as we are already failing
|
|
|
|
|
hook(panic_info);
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Restore the terminal to its original state
|
|
|
|
|
pub fn restore() -> io::Result<()> {
|
2025-04-25 12:01:52 -07:00
|
|
|
execute!(stdout(), DisableMouseCapture)?;
|
feat: initial import of Rust implementation of Codex CLI in codex-rs/ (#629)
As stated in `codex-rs/README.md`:
Today, Codex CLI is written in TypeScript and requires Node.js 22+ to
run it. For a number of users, this runtime requirement inhibits
adoption: they would be better served by a standalone executable. As
maintainers, we want Codex to run efficiently in a wide range of
environments with minimal overhead. We also want to take advantage of
operating system-specific APIs to provide better sandboxing, where
possible.
To that end, we are moving forward with a Rust implementation of Codex
CLI contained in this folder, which has the following benefits:
- The CLI compiles to small, standalone, platform-specific binaries.
- Can make direct, native calls to
[seccomp](https://man7.org/linux/man-pages/man2/seccomp.2.html) and
[landlock](https://man7.org/linux/man-pages/man7/landlock.7.html) in
order to support sandboxing on Linux.
- No runtime garbage collection, resulting in lower memory consumption
and better, more predictable performance.
Currently, the Rust implementation is materially behind the TypeScript
implementation in functionality, so continue to use the TypeScript
implmentation for the time being. We will publish native executables via
GitHub Releases as soon as we feel the Rust version is usable.
2025-04-24 13:31:40 -07:00
|
|
|
execute!(stdout(), LeaveAlternateScreen)?;
|
|
|
|
|
disable_raw_mode()?;
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|