Completed
Pull Request — master (#28)
by Luke
03:31
created

Handler   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

Changes 4
Bugs 0 Features 3
Metric Value
wmc 4
c 4
b 0
f 3
lcom 1
cbo 2
dl 0
loc 35
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 11 1
A catchSignal() 0 9 3
1
<?php
2
/**
3
 * Nyx
4
 *
5
 * (The MIT license)
6
 * Copyright (c) 2016 Luke Steadman
7
 *
8
 * Permission is hereby granted, free of charge, to any person obtaining a copy
9
 * of this software and associated * documentation files (the "Software"), to
10
 * deal in the Software without restriction, including without limitation the
11
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12
 * sell copies of the Software, and to permit persons to whom the Software is
13
 * furnished to do so, subject to the following conditions:
14
 * The above copyright notice and this permission notice shall be included in
15
 * all copies or substantial portions of the Software.
16
 *
17
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23
 * IN THE SOFTWARE.
24
 *
25
 * @package Nyx
26
 */
27
namespace Nyx;
28
29
final class Handler
30
{
31
    /**
32
     * @var Manager
33
     */
34
    private $manager;
35
36
    /**
37
     * @param Manager $manager
38
     */
39
    public function __construct(Manager $manager)
40
    {
41
        $this->manager = $manager;
42
43
        pcntl_signal(SIGINT, array($this, "catchSignal"));
44
        pcntl_signal(SIGTERM, array($this, "catchSignal"));
45
        pcntl_signal(SIGHUP, array($this, "catchSignal"));
46
        pcntl_signal(SIGUSR1, array($this, "catchSignal"));
47
48
        $this->manager->getOutput()->write('[*] Handler registered');
49
    }
50
51
    /**
52
     * @param $signal
53
     */
54
    public function catchSignal($signal)
55
    {
56
        switch ($signal) {
57
            case SIGINT:
58
            case SIGTERM:
59
                $this->manager->getOutput()->write('[-] Exiting.');
60
                exit(1);
0 ignored issues
show
Coding Style Compatibility introduced by
The method catchSignal() contains an exit expression.

An exit expression should only be used in rare cases. For example, if you write a short command line script.

In most cases however, using an exit expression makes the code untestable and often causes incompatibilities with other libraries. Thus, unless you are absolutely sure it is required here, we recommend to refactor your code to avoid its usage.

Loading history...
61
        }
62
    }
63
}
64