Command-Run
view release on metacpan or search on metacpan
underlying Perl behavior.
This is fixed: the layer change is now undone before the handles are
restored, so the layer stack of the standard filehandles stays
exactly as the caller left it. With the fix, nofork is much faster
than fork in either mode, and most of the historical gap between
`:encoding` and raw mode (which was caused by the accumulation) is
gone:
# Benchmark: code ref with stdin (100-byte input,
# 1000 iterations, object reused)
fork: 495/s (baseline)
nofork + :encoding: 15,997/s (32x)
nofork + :utf8 (raw): 20,038/s (40x)
## Zero-Modification Callee Integration
A key advantage of this mechanism is that **callee modules typically
require no modification** to work with nofork+raw mode.
Many Perl modules use `use open` pragma or equivalent to set up
encoding layers on standard I/O:
package App::ansicolumn;
use open IO => ':utf8', ':std'; # sets :encoding(utf8) on STDIO
This works transparently because of execution order. When using
nofork mode with method chaining:
require App::ansicolumn; # (1) module loaded here
Command::Run->new
->command(\&ansicolumn, @args)
->with(stdin => $text, nofork => 1, raw => 1)
->update # (2) STDOUT redirected here
->data;
At step (1), `require` loads the module and `use open ':std'`
applies `:encoding(utf8)` to the **original** STDOUT. At step (2),
nofork mode redirects STDOUT to a fresh temporary file with
`:utf8` layer. The callee's encoding setup has already fired on the
original STDOUT and does not affect the redirected one.
This means existing modules like [App::ansicolumn](https://metacpan.org/pod/App%3A%3Aansicolumn) and
[App::ansifold](https://metacpan.org/pod/App%3A%3Aansifold) work unchanged with nofork+raw mode, achieving
significant speedups with zero code changes on the callee side.
## Caller Protection
Nofork mode executes the code reference in the same process, so care
is needed to prevent the callee from corrupting the caller's state.
The following protections are applied:
- `local $_;`
Prevents the callee from modifying the caller's `$_`. This is
critical when the caller aliases `$_` to important data (e.g.,
greple's `local *_ = shift` to alias `$_` to the content buffer).
Without this protection, a callee's `while (<>)` loop
would set `$_` to `undef` at EOF, destroying the caller's data.
- `local @ARGV`
Prevents the callee from modifying the caller's `@ARGV`.
- `$0` save/restore
Prevents the callee from permanently changing the program name.
# COMPARISON WITH SIMILAR MODULES
There are many modules on CPAN for executing external commands.
This module is designed to be simple and lightweight, with minimal
dependencies.
This module was originally developed as [App::cdif::Command](https://metacpan.org/pod/App%3A%3Acdif%3A%3ACommand) and
has been used in production as part of the [App::cdif](https://metacpan.org/pod/App%3A%3Acdif) distribution
since 2014. It has also been adopted by several unrelated modules,
which motivated its release as an independent distribution.
- [IPC::Run](https://metacpan.org/pod/IPC%3A%3ARun)
Full-featured module for running processes with support for
pipelines, pseudo-ttys, and timeouts. Very powerful but large
(135KB+) with non-core dependencies ([IO::Pty](https://metacpan.org/pod/IO%3A%3APty)). Overkill for
simple command execution.
- [Capture::Tiny](https://metacpan.org/pod/Capture%3A%3ATiny)
Excellent for capturing STDOUT/STDERR from Perl code or external
commands. Does not provide stdin input functionality.
- [IPC::Run3](https://metacpan.org/pod/IPC%3A%3ARun3)
Simpler than [IPC::Run](https://metacpan.org/pod/IPC%3A%3ARun), handles stdin/stdout/stderr. Good
alternative but does not support code reference execution.
- [Command::Runner](https://metacpan.org/pod/Command%3A%3ARunner)
Modern interface with timeout support and code reference execution.
Has non-core dependencies.
- [Proc::Simple](https://metacpan.org/pod/Proc%3A%3ASimple)
Simple process management with background execution support.
Focused on process control rather than I/O capture.
**Command::Run** differs from these modules in several ways:
- **Core modules only** - No non-core dependencies
- **Code reference support** - Execute Perl code with $0 and @ARGV setup
- **File descriptor path** - Output accessible via `/dev/fd/N`
- **Minimal footprint** - Compact, dependency-light implementation
- **Method chaining** - Fluent interface for readability
# SEE ALSO
[Command::Run::Tmpfile](https://metacpan.org/pod/Command%3A%3ARun%3A%3ATmpfile), [IPC::Run](https://metacpan.org/pod/IPC%3A%3ARun), [Capture::Tiny](https://metacpan.org/pod/Capture%3A%3ATiny), [IPC::Run3](https://metacpan.org/pod/IPC%3A%3ARun3), [Com...
# AUTHOR
Kazumasa Utashiro
( run in 0.547 second using v1.01-cache-2.11-cpan-9169edd2b0e )