Worker   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 68
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Test Coverage

Coverage 90%

Importance

Changes 0
Metric Value
wmc 7
lcom 1
cbo 2
dl 0
loc 68
ccs 18
cts 20
cp 0.9
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
A getProcess() 0 4 1
A start() 0 9 2
A setOutput() 0 4 1
A getOutput() 0 8 2
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
class Worker implements WorkerInterface, OutputableInterface
30
{
31
    /**
32
     * @var ProcessInterface
33
     */
34
    protected $process;
35
36
    /**
37
     * @var OutputInterface
38
     */
39
    protected $output;
40
41
    /**
42
     * @var bool
43
     */
44
    protected $started = false;
45
46
    /**
47
     * Worker constructor.
48
     *
49
     * @param ProcessInterface $process
50
     */
51 8
    public function __construct(ProcessInterface $process)
52
    {
53 8
        $this->process = $process;
54 8
    }
55
56
    /**
57
     * {@inheritdoc}
58
     */
59 8
    public function getProcess()
60
    {
61 8
        return $this->process;
62
    }
63
64
    /**
65
     * {@inheritdoc}
66
     */
67 5
    public function start()
68
    {
69 5
        if ($this->started === false) {
70 5
            $this->getOutput()->write("[+] Starting worker");
71
72 5
            $this->started = true;
73 5
            $this->process->open();
74 5
        }
75 5
    }
76
77
    /**
78
     * {@inheritdoc}
79
     */
80 7
    public function setOutput(OutputInterface $output)
81
    {
82 7
        $this->output = $output;
83 7
    }
84
85
    /**
86
     * {@inheritdoc}
87
     */
88 5
    public function getOutput()
89
    {
90 5
        if (is_null($this->output)) {
91
            $this->setOutput(new Console());
92
        }
93
94 5
        return $this->output;
95
    }
96
}
97