1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Phossa Project |
4
|
|
|
* |
5
|
|
|
* PHP version 5.4 |
6
|
|
|
* |
7
|
|
|
* @category Library |
8
|
|
|
* @package Phossa2\Config |
9
|
|
|
* @copyright Copyright (c) 2016 phossa.com |
10
|
|
|
* @license http://mit-license.org/ MIT License |
11
|
|
|
* @link http://www.phossa.com/ |
12
|
|
|
*/ |
13
|
|
|
/*# declare(strict_types=1); */ |
14
|
|
|
|
15
|
|
|
namespace Phossa2\Config; |
16
|
|
|
|
17
|
|
|
use Phossa2\Config\Message\Message; |
18
|
|
|
use Phossa2\Shared\Base\ObjectAbstract; |
19
|
|
|
use Phossa2\Config\Traits\ChainingTrait; |
20
|
|
|
use Phossa2\Config\Traits\ArrayAccessTrait; |
21
|
|
|
use Phossa2\Config\Exception\LogicException; |
22
|
|
|
use Phossa2\Config\Interfaces\ConfigInterface; |
23
|
|
|
use Phossa2\Config\Interfaces\WritableInterface; |
24
|
|
|
use Phossa2\Config\Interfaces\ChainingInterface; |
25
|
|
|
use Phossa2\Config\Interfaces\DelegatorInterface; |
26
|
|
|
use Phossa2\Config\Traits\DelegatorWritableTrait; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* Delegator |
30
|
|
|
* |
31
|
|
|
* Implmentation of DelegatorInterface |
32
|
|
|
* |
33
|
|
|
* @package Phossa2\Config |
34
|
|
|
* @author Hong Zhang <[email protected]> |
35
|
|
|
* @see ObjectAbstract |
36
|
|
|
* @see DelegatorInterface |
37
|
|
|
* @see \ArrayAccess |
38
|
|
|
* @see WritableInterface |
39
|
|
|
* @see ChainingInterface |
40
|
|
|
* @version 2.0.7 |
41
|
|
|
* @since 2.0.0 added |
42
|
|
|
* @since 2.0.7 changed DelegatorInterface, added ChainingInterface |
43
|
|
|
*/ |
44
|
|
|
class Delegator extends ObjectAbstract implements DelegatorInterface, \ArrayAccess, WritableInterface, ChainingInterface |
45
|
|
|
{ |
46
|
|
|
use ArrayAccessTrait, DelegatorWritableTrait, ChainingTrait; |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* {@inheritDoc} |
50
|
|
|
*/ |
51
|
|
|
public function get(/*# string */ $id, $default = null) |
52
|
|
|
{ |
53
|
|
|
if ($this->hasInLookup($id)) { |
54
|
|
|
return $this->getFromLookup($id); |
55
|
|
|
} |
56
|
|
|
return $default; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* {@inheritDoc} |
61
|
|
|
*/ |
62
|
|
|
public function has(/*# string */ $id)/*# : bool */ |
63
|
|
|
{ |
64
|
|
|
return $this->hasInLookup($id); |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
/** |
68
|
|
|
* {@inheritDoc} |
69
|
|
|
*/ |
70
|
|
|
public function addConfig(ConfigInterface $config) |
71
|
|
|
{ |
72
|
|
|
return $this->addRegistry($config); |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
/** |
76
|
|
|
* {@inheritDoc} |
77
|
|
|
*/ |
78
|
|
|
public function set(/*# string */ $id, $value) |
79
|
|
|
{ |
80
|
|
|
if ($this->isWritable()) { |
81
|
|
|
$this->writable->set($id, $value); |
82
|
|
|
return $this; |
83
|
|
|
} else { |
84
|
|
|
throw new LogicException( |
85
|
|
|
Message::get(Message::CONFIG_NOT_WRITABLE), |
86
|
|
|
Message::CONFIG_NOT_WRITABLE |
87
|
|
|
); |
88
|
|
|
} |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* {@inheritDoc} |
93
|
|
|
*/ |
94
|
|
|
protected function hasInRegistry( |
95
|
|
|
$registry, |
96
|
|
|
/*# string */ $id |
97
|
|
|
)/*# : bool */ { |
98
|
|
|
/* @var $registry ConfigInterface */ |
99
|
|
|
return $registry->has($id); |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
/** |
103
|
|
|
* {@inheritDoc} |
104
|
|
|
*/ |
105
|
|
|
protected function getFromRegistry( |
106
|
|
|
$registry, |
107
|
|
|
/*# string */ $id |
108
|
|
|
) { |
109
|
|
|
/* @var $registry ConfigInterface */ |
110
|
|
|
return $registry->get($id); |
111
|
|
|
} |
112
|
|
|
} |
113
|
|
|
|