|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* this file is part of pipelines */ |
|
4
|
|
|
|
|
5
|
|
|
namespace Ktomk\Pipelines\Utility; |
|
6
|
|
|
|
|
7
|
|
|
use Exception; |
|
8
|
|
|
|
|
9
|
|
|
/** |
|
10
|
|
|
* Signal utility exit status, optionally with an (error) message |
|
11
|
|
|
*/ |
|
12
|
|
|
class StatusException extends Exception |
|
13
|
|
|
{ |
|
14
|
|
|
/** |
|
15
|
|
|
* fatal with message and non-zero (1) |
|
16
|
|
|
* |
|
17
|
|
|
* @param string $message |
|
18
|
|
|
* @param int $code |
|
19
|
|
|
* @param null|Exception $previous |
|
20
|
|
|
* |
|
21
|
|
|
* @throws StatusException |
|
22
|
|
|
*/ |
|
23
|
2 |
|
public static function fatal($message = '', $code = 1, Exception $previous = null) |
|
24
|
|
|
{ |
|
25
|
2 |
|
if ('' === $message) { |
|
26
|
1 |
|
$message = 'fatal abort'; |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
2 |
|
throw new self($message, $code, $previous); |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* ok (success, zero) |
|
34
|
|
|
* |
|
35
|
|
|
* @param null|Exception $previous |
|
36
|
|
|
* |
|
37
|
|
|
* @throws StatusException |
|
38
|
|
|
*/ |
|
39
|
1 |
|
public static function ok(Exception $previous = null) |
|
40
|
|
|
{ |
|
41
|
1 |
|
throw new self('', 0, $previous); |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
/** |
|
45
|
|
|
* StatusException constructor. |
|
46
|
|
|
* |
|
47
|
|
|
* @param string $message |
|
48
|
|
|
* @param int|string $code |
|
49
|
|
|
* @param null|Exception $previous |
|
50
|
|
|
*/ |
|
51
|
9 |
|
public function __construct($message = '', $code = 0, Exception $previous = null) |
|
52
|
|
|
{ |
|
53
|
9 |
|
if (!is_int($code) || $code < 0 || $code > 255) { |
|
54
|
2 |
|
throw new \InvalidArgumentException(sprintf( |
|
55
|
2 |
|
'Code must be integer in range from 0 to 255, %s given', |
|
56
|
2 |
|
var_export($code, true) |
|
57
|
|
|
)); |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
7 |
|
parent::__construct($message, $code, $previous); |
|
61
|
7 |
|
} |
|
62
|
|
|
} |
|
63
|
|
|
|