1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-05 13:20:55 +02:00
ttrss/vendor/thecodingmachine/safe/generated/readline.php
Andrew Dolgov 3fd7856543 * switch to composer for qrcode and otp dependencies
* move most OTP-related stuff into userhelper
* remove old phpqrcode and otphp libraries
2021-02-26 19:16:17 +03:00

158 lines
3.7 KiB
PHP

<?php
namespace Safe;
use Safe\Exceptions\ReadlineException;
/**
* This function adds a line to the command line history.
*
* @param string $line The line to be added in the history.
* @throws ReadlineException
*
*/
function readline_add_history(string $line): void
{
error_clear_last();
$result = \readline_add_history($line);
if ($result === false) {
throw ReadlineException::createFromPhpError();
}
}
/**
* Sets up a readline callback interface then prints
* prompt and immediately returns.
* Calling this function twice without removing the previous
* callback interface will automatically and conveniently overwrite the old
* interface.
*
* The callback feature is useful when combined with
* stream_select as it allows interleaving of IO and
* user input, unlike readline.
*
*
* Readline Callback Interface Example
*
* 10) {
* $prompting = false;
* readline_callback_handler_remove();
* } else {
* readline_callback_handler_install("[$c] Enter something: ", 'rl_callback');
* }
* }
*
* $c = 1;
* $prompting = true;
*
* readline_callback_handler_install("[$c] Enter something: ", 'rl_callback');
*
* while ($prompting) {
* $w = NULL;
* $e = NULL;
* $n = stream_select($r = array(STDIN), $w, $e, null);
* if ($n && in_array(STDIN, $r)) {
* // read a character, will call the callback when a newline is entered
* readline_callback_read_char();
* }
* }
*
* echo "Prompting disabled. All done.\n";
* ?>
* ]]>
*
*
*
* @param string $prompt The prompt message.
* @param callable $callback The callback function takes one parameter; the
* user input returned.
* @throws ReadlineException
*
*/
function readline_callback_handler_install(string $prompt, callable $callback): void
{
error_clear_last();
$result = \readline_callback_handler_install($prompt, $callback);
if ($result === false) {
throw ReadlineException::createFromPhpError();
}
}
/**
* This function clears the entire command line history.
*
* @throws ReadlineException
*
*/
function readline_clear_history(): void
{
error_clear_last();
$result = \readline_clear_history();
if ($result === false) {
throw ReadlineException::createFromPhpError();
}
}
/**
* This function registers a completion function. This is the same kind of
* functionality you'd get if you hit your tab key while using Bash.
*
* @param callable $function You must supply the name of an existing function which accepts a
* partial command line and returns an array of possible matches.
* @throws ReadlineException
*
*/
function readline_completion_function(callable $function): void
{
error_clear_last();
$result = \readline_completion_function($function);
if ($result === false) {
throw ReadlineException::createFromPhpError();
}
}
/**
* This function reads a command history from a file.
*
* @param string $filename Path to the filename containing the command history.
* @throws ReadlineException
*
*/
function readline_read_history(string $filename = null): void
{
error_clear_last();
if ($filename !== null) {
$result = \readline_read_history($filename);
} else {
$result = \readline_read_history();
}
if ($result === false) {
throw ReadlineException::createFromPhpError();
}
}
/**
* This function writes the command history to a file.
*
* @param string $filename Path to the saved file.
* @throws ReadlineException
*
*/
function readline_write_history(string $filename = null): void
{
error_clear_last();
if ($filename !== null) {
$result = \readline_write_history($filename);
} else {
$result = \readline_write_history();
}
if ($result === false) {
throw ReadlineException::createFromPhpError();
}
}