TSDuck v3.40-3963
MPEG Transport Stream Toolkit
|
Send application output to a "pager" application such as "more" or "less". More...
#include <tsOutputPager.h>
Public Types | |
enum | InputMode { STDIN_PARENT , STDIN_PIPE , STDIN_NONE } |
How to standard input in the created process. More... | |
enum | OutputMode { KEEP_BOTH , STDOUT_ONLY , STDERR_ONLY , STDOUT_PIPE , STDOUTERR_PIPE } |
How to merge standard output and standard error in the created process. More... | |
using | SuperClass = std::basic_ostream< char > |
Explicit reference to the public superclass. | |
enum | WaitMode { ASYNCHRONOUS , SYNCHRONOUS , EXIT_PROCESS } |
How to wait for the created process when close() is invoked. More... | |
Public Member Functions | |
OutputPager (const UString &envName=DEFAULT_PAGER, bool stdoutOnly=false) | |
Default constructor. | |
virtual | ~OutputPager () override |
Destructor. | |
void | abortPipeReadWrite () |
Abort any currenly input/output operation in the pipe. | |
bool | canPage () const |
Check if we can run a pager. | |
bool | close (Report &report) |
Close the pipe. | |
virtual bool | endOfStream () override |
Check if the end of stream was reached. | |
bool | getIgnoreAbort () const |
Get "ignore abort". | |
bool | isBroken () const |
Check if the pipe was broken. | |
bool | isOpen () const |
Check if the process is running and the pipe is open (when used). | |
bool | isSynchronous () const |
Check if synchronous mode is active (ie. | |
bool | open (bool synchronous, size_t buffer_size, Report &report) |
Create the process, open the pipe. | |
bool | open (const UString &command, WaitMode wait_mode, size_t buffer_size, Report &report, OutputMode out_mode, InputMode in_mode) |
Create the process, open the optional pipe. | |
UString | pagerCommand () const |
Get the pager command which is used. | |
virtual bool | readStreamChunks (void *addr, size_t max_size, size_t chunk_size, size_t &ret_size, Report &report) |
Read chunks of data from the stream. | |
virtual bool | readStreamComplete (void *addr, size_t max_size, size_t &ret_size, Report &report) |
Read complete data from the stream. | |
virtual bool | readStreamPartial (void *addr, size_t max_size, size_t &ret_size, Report &report) override |
Read partial data from the stream. | |
void | setIgnoreAbort (bool on) |
Set "ignore abort". | |
bool | write (const UString &text, Report &report) |
Write data to the pipe (received at process' standard input). | |
virtual bool | writeStream (const void *addr, size_t size, size_t &written_size, Report &report) override |
Write data to the stream. | |
Static Public Member Functions | |
static bool | Launch (const UString &command, Report &report, OutputMode out_mode=KEEP_BOTH, InputMode in_mode=STDIN_PARENT, WaitMode wait_mode=ASYNCHRONOUS) |
This static method launches a command, without pipe, optionally without waiting for the completion of the command process. | |
Static Public Attributes | |
static const UChar *const | DEFAULT_PAGER |
Default name of the environment variable containing the pager command. | |
static constexpr size_t | DEFAULT_STREAM_BUFFER_SIZE = 1024 |
Default stream buffer size in bytes. | |
Protected Member Functions | |
virtual bool | writeStreamBuffer (const void *addr, size_t size) override |
Write buffered data to underlying output devicen whatever it is. | |
Send application output to a "pager" application such as "more" or "less".
Paging is done on stdout or stderr or both, depending on which is a terminal. If neither stdout nor stderr are terminals, paging is not allowed.
|
inherited |
How to wait for the created process when close() is invoked.
No pipe can be used with EXIT_PROCESS because there would be nobody on the other end of the pipe.
Enumerator | |
---|---|
ASYNCHRONOUS | Don't wait, close() will return immediately. |
SYNCHRONOUS | Wait for process completion during close(). |
EXIT_PROCESS | Exit parent process during open(). UNIX: call exec(), Windows: call exit() after process creation. |
|
inherited |
How to standard input in the created process.
The pipe can be used either on input or output, but not both. So, STDIN_PIPE is also forbidden with output mode is either STDOUT_PIPE or STDOUTERR_PIPE.
Enumerator | |
---|---|
STDIN_PARENT | Keep same stdin as current (parent) process. |
STDIN_PIPE | Use the pipe as stdin. |
STDIN_NONE | No standard input (the null device in fact). |
|
inherited |
How to merge standard output and standard error in the created process.
|
explicit |
Default constructor.
[in] | envName | Name of the optional environment variable containing the pager command name. |
[in] | stdoutOnly | If true, use only stdout. If false, if stdout is not a terminal but stderr is one, then use stderr for paging. |
|
inline |
Check if we can run a pager.
To run a pager, we must have found a valid pager command and either stdout or stderr must be a terminal.
|
inline |
Get the pager command which is used.
bool ts::OutputPager::open | ( | bool | synchronous, |
size_t | buffer_size, | ||
Report & | report | ||
) |
Create the process, open the pipe.
[in] | synchronous | If true, wait for process termination in close(). |
[in] | buffer_size | The pipe buffer size in bytes. Used on Windows only. Zero means default. |
[in,out] | report | Where to report errors. |
Write data to the pipe (received at process' standard input).
[in] | text | Text to write. |
[in,out] | report | Where to report errors. |
|
inherited |
Create the process, open the optional pipe.
[in] | command | The command to execute. |
[in] | wait_mode | How to wait for process termination in close(). |
[in] | buffer_size | The pipe buffer size in bytes. Used on Windows only. Zero means default. |
[in,out] | report | Where to report errors. |
[in] | out_mode | How to handle stdout and stderr. |
[in] | in_mode | How to handle stdin. Use the pipe by default. When set to KEEP_STDIN, no pipe is created. |
|
inherited |
Close the pipe.
Optionally wait for process termination if wait_mode was SYNCHRONOUS on open().
[in,out] | report | Where to report errors. |
|
inlineinherited |
Check if the process is running and the pipe is open (when used).
|
inlineinherited |
Check if the pipe was broken.
|
inlineinherited |
Check if synchronous mode is active (ie.
will wait for process termination).
|
inlineinherited |
Set "ignore abort".
[in] | on | If true and the process aborts, do not report error when writing data. when writing data. |
|
inlineinherited |
Get "ignore abort".
|
inherited |
Abort any currenly input/output operation in the pipe.
The pipe is left in a broken state and can be only closed.
|
staticinherited |
This static method launches a command, without pipe, optionally without waiting for the completion of the command process.
[in] | command | The command to execute. |
[in,out] | report | Where to report errors. |
[in] | out_mode | How to handle stdout and stderr. Must be KEEP_BOTH (default), STDOUT_ONLY or STDERR_ONLY. Output modes using pipes are forbidden. |
[in] | in_mode | How to handle stdin. Must be STDIN_PARENT (default) or STDIN_NONE. Input modes using pipes are forbidden. |
[in] | wait_mode | How to wait for the command process. Must be ASYNCHRONOUS (default) or SYNCHRONOUS. |
|
overridevirtualinherited |
Check if the end of stream was reached.
Implements ts::AbstractReadStreamInterface.
|
overridevirtualinherited |
Read partial data from the stream.
Wait and read at least one byte. Don't try to read exactly max_size bytes. If ret_size is less than max_bytes, it is possible to read more.
[out] | addr | Address of the buffer for the incoming data. |
[in] | max_size | Maximum size in bytes of the buffer. |
[out] | ret_size | Returned input size in bytes. If zero, end of file has been reached or an error occurred. |
[in,out] | report | Where to report errors. |
Implements ts::AbstractReadStreamInterface.
|
overridevirtualinherited |
Write data to the stream.
All bytes are written to the stream, blocking or retrying when necessary.
[in] | addr | Address of the data to write. |
[in] | size | Size in bytes of the data to write. |
[out] | written_size | Actually written size in bytes. Can be less than size in case of error in the middle of the write. |
[in,out] | report | Where to report errors. |
Implements ts::AbstractWriteStreamInterface.
|
overrideprotectedvirtualinherited |
Write buffered data to underlying output devicen whatever it is.
Must be implemented by subclasses.
[in] | addr | Buffered data address. |
[in] | size | Buffered data size in bytes. |
Implements ts::AbstractOutputStream.
|
virtualinherited |
Read complete data from the stream.
Wait and read exactly max_size bytes. If ret_size is less than max_bytes, it is not possible to read more. End of file has probably been reached.
[out] | addr | Address of the buffer for the incoming data. |
[in] | max_size | Maximum size in bytes of the buffer. |
[out] | ret_size | Returned input size in bytes. |
[in,out] | report | Where to report errors. |
|
virtualinherited |
Read chunks of data from the stream.
[out] | addr | Address of the buffer for the incoming data. |
[in] | max_size | Maximum size in bytes of the buffer. |
[in] | chunk_size | If not zero, make sure that the input size is always a multiple of chunk_size. If the initial read ends in the middle of a chunk, read again and again, up to the end of the current chunk or end of file. |
[out] | ret_size | Returned input size in bytes. |
[in,out] | report | Where to report errors. |
|
static |
Default name of the environment variable containing the pager command.
The default environment variable is PAGER
.