• This repository has been archived on 20/Sep/2021
  • Stars
    star
    367
  • Rank 112,183 (Top 3 %)
  • Language
    PHP
  • Created over 11 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The Hoa\Console library.

Hoa


Build status Code coverage Packagist License

Hoa is a modular, extensible and structured set of PHP libraries.
Moreover, Hoa aims at being a bridge between industrial and research worlds.

Hoa\Console

Help on IRC Help on Gitter Documentation Board

This library allows to interact easily with a terminal: getoption, cursor, window, processus, readline etc.

Learn more.

Installation

With Composer, to include this library into your dependencies, you need to require hoa/console:

$ composer require hoa/console '~3.0'

For more installation procedures, please read the Source page.

Testing

Before running the test suites, the development dependencies must be installed:

$ composer install

Then, to run all the test suites:

$ vendor/bin/hoa test:run

For more information, please read the contributor guide.

Quick usage

We propose a quick overview of some features: cursor, window, readline, processus and finally getoption.

Cursor

The Hoa\Console\Cursor class allows to manipulate the cursor. Here is a list of some operations:

  • move,
  • moveTo,
  • save,
  • restore,
  • clear,
  • hide,
  • show,
  • getPosition,
  • colorize,
  • etc.

The API is very straightforward. For example, we can use l, left or to move the cursor on the left column. Thus we move the cursor to the left 3 times and then to the top 2 times:

Hoa\Console\Cursor::move('left left left up up');

… or with Unicode symbols:

Hoa\Console\Cursor::move('← ← ← ↑ ↑');

This method moves the cursor relatively from its current position, but we are able to move the cursor to absolute coordinates:

Hoa\Console\Cursor::moveTo(13, 42);

We are also able to save the current cursor position, to move, clear etc., and then to restore the saved position:

Hoa\Console\Cursor::save();     // save
Hoa\Console\Cursor::move('↓');  // move below
Hoa\Console\Cursor::clear('↔'); // clear the line
echo 'Something below…';        // write something
Hoa\Console\Cursor::restore();  // restore

Another example with colors:

Hoa\Console\Cursor::colorize(
    'underlined foreground(yellow) background(#932e2e)'
);

Please, read the API documentation for more informations.

Mouse

The Hoa\Console\Mouse class allows to listen the mouse actions and provides the following listeners: mouseup, mousedown, wheelup and wheeldown. Example:

$mouse = Hoa\Console\Mouse::getInstance();
$mouse->on('mousedown', function ($bucket) {
    print_r($bucket->getData());
});

$mouse::track();

And then, when we left-click, we will see:

Array
(
    [x] => 69
    [y] => 30
    [button] => left
    [shift] =>
    [meta] =>
    [ctrl] =>
)

When we left-click while hiting the shift key, we will see:

Array
(
    [x] => 71
    [y] => 32
    [button] => left
    [shift] => 1
    [meta] =>
    [ctrl] =>
)

This is an experimental API.

Window

The Hoa\Console\Window class allows to manipulate the window. Here is a list of some operations:

  • setSize,
  • getSize,
  • moveTo,
  • getPosition,
  • scroll,
  • minimize,
  • restore,
  • raise,
  • setTitle,
  • getTitle,
  • copy,
  • etc.

Furthermore, we have the hoa://Event/Console/Window:resize event channel to listen when the window has been resized.

For example, we resize the window to 40 lines and 80 columns, and then we move the window to 400px horizontally and 100px vertically:

Hoa\Console\Window::setSize(40, 80);
Hoa\Console\Window::moveTo(400, 100);

If we do not like our user, we are able to minimize its window:

Hoa\Console\Window::minimize();
sleep(2);
Hoa\Console\Window::restore();

We are also able to set or get the title of the window:

Hoa\Console\Window::setTitle('My awesome application');

Finally, if we have a complex application layout, we can repaint it when the window is resized by listening the hoa://Event/Console/Window:resize event channel:

Hoa\Event\Event::getEvent('hoa://Event/Console/Window:resize')
    ->attach(function (Hoa\Event\Bucket $bucket) {
        $data = $bucket->getData();
        $size = $data['size'];

        echo
            'New dimensions: ', $size['x'], ' lines x ',
            $size['y'], ' columns.', "\n";
    });

Please, read the API documentation for more informations

Readline

The Hoa\Console\Readline\Readline class provides an advanced readline which allows the following operations:

  • edition,
  • history,
  • autocompletion.

It supports UTF-8. It is based on bindings, and here are some:

  • arrow up and arrow down: move in the history,
  • arrow left and arrow right: move the cursor left and right,
  • Ctrl-A: move to the beginning of the line,
  • Ctrl-E: move to the end of the line,
  • Ctrl-B: move backward of one word,
  • Ctrl-F: move forward of one word,
  • Ctrl-W: delete first backard word,
  • Backspace: delete first backward character,
  • Enter: submit the line,
  • Tab: autocomplete.

Thus, to read one line:

$readline = new Hoa\Console\Readline\Readline();
$line     = $readline->readLine('> '); // “> ” is the prefix of the line.

The Hoa\Console\Readline\Password allows the same operations but without printing on STDOUT.

$password = new Hoa\Console\Readline\Password();
$line     = $password->readLine('password: ');

We are able to add a mapping with the help of the Hoa\Console\Readline\Readline::addMapping method. We use \e[… for \033[, \C-… for Ctrl-… and a character for the rest. We can associate a character or a callable:

$readline->addMapping('a', 'z'); // crazy, we replace “a” by “z”.
$readline->addMapping('\C-R', function ($readline) {
    // do something when pressing Ctrl-R.
});

We are also able to manipulate the history, thanks to the addHistory, clearHistory, getHistory, previousHistory and nextHistory methods on the Hoa\Console\Readline\Readline class.

Finally, we have autocompleters that are enabled on Tab. If one solution is proposed, it will be inserted directly. If many solutions are proposed, we are able to navigate in a menu to select the solution (with the help of keyboard arrows, Enter, Esc etc.). Also, we are able to combine autocompleters. The following example combine the Word and Path autocompleters:

$functions = get_defined_functions();
$readline->setAutocompleter(
    new Hoa\Console\Readline\Autocompleter\Aggregate([
        new Hoa\Console\Readline\Autocompleter\Path(),
        new Hoa\Console\Readline\Autocompleter\Word($functions['internal'])
    ])
);

Here is an example of the result:

Autocompleters in action

On Windows, a readline is equivalent to a simple fgets(STDIN).

Processus

The Hoa\Console\Processus class allows to manipulate processus as a stream which implements Hoa\Stream\IStream\In, Hoa\Stream\IStream\Out and Hoa\Stream\IStream\Pathable interfaces (please, see the Hoa\Stream library).

Basically, we can read STDOUT like this:

$processus = new Hoa\Console\Processus('ls');
$processus->open();
echo $processus->readAll();

And we can write on STDIN like this:

$processus->writeAll('foobar');

etc. This is very classical.

Hoa\Console\Processus also proposes many events: start, stop, input, output and timeout. Thus:

$processus = new Hoa\Console\Processus('ls');
$processus->on('output', function (Hoa\Event\Bucket $bucket) {
    $data = $bucket->getData();
    echo '> ', $data['line'], "\n";
});
$processus->run();

We are also able to read and write on more pipes than 0 (STDOUT), 1 (STDIN) and 2 (STDERR). In the same way, we can set the current working directory of the processus and its environment.

We can quickly execute a processus without using a stream with the help of the Hoa\Console\Processus::execute method.

GetOption

The Hoa\Console\Parser and Hoa\Console\GetOption classes allow to parse a command-line and get options and inputs values easily.

First, we need to parse a command-line, such as:

$parser = new Hoa\Console\Parser();
$parser->parse('-s --long=value input');

Second, we need to define our options:

$options = new Hoa\Console\GetOption(
    [
        // long name              type                  short name
        //  ↓                      ↓                         ↓
        ['short', Hoa\Console\GetOption::NO_ARGUMENT,       's'],
        ['long',  Hoa\Console\GetOption::REQUIRED_ARGUMENT, 'l']
    ],
    $parser
);

And finally, we iterate over options:

$short = false;
$long  = null;

//          short name                  value
//               ↓                        ↓
while (false !== $c = $options->getOption($v)) {
    switch ($c) {
        case 's':
            $short = true;

            break;

        case 'l':
            $long = $v;

            break;
    }
}

var_dump($short, $long); // bool(true) and string(5) "value".

Please, see API documentation of Hoa\Console\Parser to see all supported forms of options (flags or switches, long or short ones, inputs etc.).

It also support typos in options. In this case, we have to add:

    case '__ambiguous':
        $options->resolveOptionAmbiguity($v);

        break;

If one solution is found, it will select this one automatically, else it will raise an exception. This exception is caught by Hoa\Console\Dispatcher\Kit when using the hoa script and a prompt is proposed.

Thanks to the Hoa\Router library and the Hoa\Dispatcher library (with its dedicated kit Hoa\Console\Dispatcher\Kit), we are able to build commands easily. Please, see all Bin/ directories in different libraries (for example Hoa\Cli\Bin\Resolve) and Hoa/Cli/Bin/Hoa.php to learn more.

Awecode

The following awecodes show this library in action:

  • Hoa\Console\Readline: why and how to use Hoa\Console\Readline? Simple examples will help us to use default shortcuts and we will even see the auto-completion,
  • Hoa\Websocket: why and how to use Hoa\Websocket\Server and Hoa\Websocket\Client? A simple example will illustrate the WebSocket protocol.

Documentation

The hack book of Hoa\Console contains detailed information about how to use this library and how it works.

To generate the documentation locally, execute the following commands:

$ composer require --dev hoa/devtools
$ vendor/bin/hoa devtools:documentation --open

More documentation can be found on the project's website: hoa-project.net.

Getting help

There are mainly two ways to get help:

Contribution

Do you want to contribute? Thanks! A detailed contributor guide explains everything you need to know.

License

Hoa is under the New BSD License (BSD-3-Clause). Please, see LICENSE for details.

Related projects

The following projects are using this library:

  • PsySH, A runtime developer console, interactive debugger and REPL for PHP.

More Repositories

1

Ruler

The Hoa\Ruler library.
PHP
626
star
2

Compiler

The Hoa\Compiler library.
PHP
452
star
3

Websocket

The Hoa\Websocket library.
PHP
421
star
4

Ustring

The Hoa\Ustring library.
PHP
402
star
5

Math

The Hoa\Math library.
PHP
366
star
6

Iterator

The Hoa\Iterator library.
PHP
333
star
7

Event

The Hoa\Event library
PHP
323
star
8

File

The Hoa\File library.
PHP
323
star
9

Consistency

The Hoa\Consistency library.
PHP
319
star
10

Exception

The Hoa\Exception library.
PHP
316
star
11

Stream

The Hoa\Stream library.
PHP
315
star
12

Regex

The Hoa\Regex library.
PHP
309
star
13

Protocol

The Hoa\Protocol library.
PHP
308
star
14

Visitor

The Hoa\Visitor library.
PHP
262
star
15

Zformat

The Hoa\Zformat library.
PHP
259
star
16

Eventsource

The Hoa\Eventsource library.
PHP
110
star
17

Central

Hoa is a modular, extensible, and structured set of PHP libraries.
PHP
105
star
18

Mime

The Hoa\Mime library.
PHP
102
star
19

Kitab

Kitab is the ideal companion for Documentation-Driven Quality: Render and Test your documentation.
PHP
80
star
20

Socket

The Hoa\Socket library.
PHP
64
star
21

Fastcgi

The Hoa\Fastcgi library.
PHP
59
star
22

Bench

The Hoa\Bench library.
PHP
56
star
23

Praspel

The Hoa\Praspel library.
PHP
40
star
24

Core

The Hoa\Core library.
PHP
35
star
25

Acl

The Hoa\Acl library.
PHP
28
star
26

Router

The Hoa\Router library.
PHP
28
star
27

Zombie

The Hoa\Zombie library.
PHP
28
star
28

Worker

The Hoa\Worker library.
PHP
26
star
29

Irc

The Hoa\Irc library.
PHP
25
star
30

Mail

The Hoa\Mail library.
PHP
24
star
31

Dns

The Hoa\Dns library.
PHP
23
star
32

Contributions-Symfony-ConsoleBridge

Hoa\Console to Symfony bundle bridge.
PHP
20
star
33

Contributions-Symfony-RulerBundle

The Hoa\Ruler Symfony2 bundle.
PHP
15
star
34

Graph

The Hoa\Graph library.
PHP
15
star
35

Database

The Hoa\Database library.
PHP
15
star
36

Locale

The Hoa\Locale library.
PHP
13
star
37

Json

The Hoa\Json library.
PHP
13
star
38

Dispatcher

The Hoa\Dispatcher library.
PHP
12
star
39

Registry

The Hoa\Registry library.
PHP
12
star
40

Cli

The Hoa\Cli library.
PHP
12
star
41

Test

The Hoa\Test library.
PHP
11
star
42

Http

The Hoa\Http library.
PHP
10
star
43

Session

The Hoa\Session library.
PHP
9
star
44

View

The Hoa\View library.
PHP
9
star
45

Option

The Hoa\Option library.
PHP
9
star
46

Cache

The Hoa\Cache library.
PHP
8
star
47

Memory

The Hoa\Memory library.
PHP
7
star
48

String

The Hoa\String library (deprecated by Hoa\Ustring).
PHP
7
star
49

-

The Hoa\  library.
PHP
7
star
50

Tree

The Hoa\Tree library.
PHP
7
star
51

Xml

The Hoa\Xml library.
PHP
7
star
52

Realdom

The Hoa\Realdom library.
PHP
7
star
53

Xyl

The Hoa\Xyl library.
PHP
7
star
54

Devtools

The Hoa\Devtools library.
PHP
6
star
55

Heap

The Hoa\Heap library.
PHP
5
star
56

Promise

The Hoa\Promise library.
PHP
5
star
57

Serialize

The Hoa\Serialize library.
PHP
5
star
58

Notification

The Hoa\Notification library.
PHP
4
star
59

Stringbuffer

The Hoa\Stringbuffer library.
PHP
4
star
60

Contributions-Atoum-PraspelExtension

Include Praspel inside atoum.
PHP
4
star
61

Translate

The Hoa\Translate library.
PHP
4
star
62

Embryo

The embryo repository helps to bootstrap an application, it is a skeleton.
PHP
4
star
63

Infrastructure

Everything related to the infrastructure of Hoa.
Shell
4
star
64

Log

The Hoa\Log library.
PHP
4
star
65

Xmlrpc

The Hoa\XmlRpc library.
PHP
4
star
66

W3

The W3 repository contains the website of Hoa.
PHP
4
star
67

Sandbox

Sandbox contains real examples.
PHP
3
star
68

Contributions-Symfony-ConsoleBundle

The Hoa\Console Symfony2 bundle.
PHP
3
star
69

Prototype

The Hoa\Prototype library.
PHP
3
star
70

Model

The Hoa\Model library.
PHP
3
star
71

Blog

Blog of the Hoa project
CSS
3
star
72

Contributions-Atom-Pp

PP —the grammar description language from Hoa\Compiler— support in Atom.
CoffeeScript
3
star
73

Literature

The literature repository contains all documentations, manuals & co.
Python
2
star
74

Keynote

Keynotes: presentations, conferences, notes, etc.
HTML
2
star
75

ActionBoard

Roadmap, actions, milestones… everything related to the schedule of Hoa is here
2
star
76

Contributions-Symfony-BenchBundle

The Hoa\Bench Symfony2 bundle.
PHP
2
star
77

Contributions-Provisioning

Provisioning scripts related to Hoa
2
star
78

Shop

Hoa's project shop
HTML
1
star
79

Contributions-Zsh-Hoa

Hoa\Cli support (autocompletion & co.) in Zsh.
1
star
80

Contributions-Vim-Pp

PP —the grammar description language from Hoa\Compiler— support in Vim.
Vim Script
1
star
81

Contributions-Atoum-Option-Extension

Add option asserter for atoum
PHP
1
star