-
Notifications
You must be signed in to change notification settings - Fork 22
/
ReadOnlyMembers.inc
109 lines (97 loc) · 2.3 KB
/
ReadOnlyMembers.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
/**
* @file
*
*/
module_load_include('inc', 'php_lib', 'ReadOnlyPrivateMembers');
module_load_include('inc', 'php_lib', 'ReadOnlyProtectedMembers');
/**
*
*/
class ReadOnlyMembers {
/**
* Private members that are read only.
*
* @var ReadOnlyPrivateMembers
*/
public $private;
/**
* Protected members that are read only.
*
* @var ReadOnlyProtectedMembers
*/
public $protected;
/**
*
* @param array $private
* @param array $protected
*/
public function __construct(array $private, array $protected, array $params = NULL) {
$owner = isset($params['owner']) ? $params['owner'] : get_caller_class(1);
$depth = isset($params['depth']) ? $params['depth'] : 3;
$properties = array(
'owner_class' => $owner_class,
'depth' => $depth,
); // Account for this class in the depth.
$this->private = new ReadOnlyPrivateMembers($private, $properties);
$this->protected = new ReadOnlyProtectedMembers($owner_class, $properties);
}
/**
* Clone this object, deeply.
*/
public function __clone() {
$this->private = clone $this->private;
$this->protected = clone $this->protected;
}
/**
*
* @param string $name
*/
public function has($name) {
return $this->private->has($name) || $this->protected->has($name);
}
/**
*
* @param string $name
* @return boolean
*/
public function exists($name) {
return $this->private->exists($name) || $this->protected->exists($name);
}
/**
* Any one can access this member.
*/
public function __get($name) {
if ($this->private->has($name)) {
return $this->private->$name;
}
if ($this->protected->has($name)) {
return $this->protected->$name;
}
return NULL;
}
/**
*
* @param string $name
* @param mixed $value
*/
public function __set($name, $value) {
if ($this->private->has($name)) {
return $this->private->$name = $value;
}
if ($this->protected->has($name)) {
return $this->protected->$name = $value;
}
}
public function __isset($name) {
return $this->exists($name);
}
public function __unset($name) {
if ($this->private->exists($name)) {
unset($this->private->$name);
}
if ($this->protected->has($name)) {
unset($this->protected->$name);
}
}
}