PHP设计模式-组合

适用性

  • 定义:将对象以树形结构组织起来,以达成“部分-整体”的层次结构,使得客户端对单个对象和组合对象的使用具有一致性
  • 我的理解:把对象构建成树形结构

代码示例

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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245


/**
* 根节点和树节点都要实现的接口
*/
interface CompositeInterface
{
/**
* 增加一个节点对象
*
* @return mixed
*/
public function add(CompositeInterface $composite);

/**
* 删除节点一个对象
*
* @return mixed
*/
public function delete(CompositeInterface $composite);

/**
* 实体类要实现的方法
*
* @return mixed
*/
public function operation();

/**
* 打印对象组合
*
* @return mixed
*/
public function printComposite();
}


/**
* 文件实体.
*/
class File implements CompositeInterface
{
/**
* 文件名称.
*
* @var string
*/
private $_name = '';

/**
* 文件内容.
*
* @var string
*/
private $_content = '';

/**
* 构造函数.
*
* @param string $name
*/
public function __construct($name = '')
{
$this->_name = $name;
}

/**
* 魔法函数
* @param string $name 属性名称
* @return mixed
*/
public function __get($name='')
{
$name = '_' . $name;
return $this->$name;
}

/**
* 增加一个节点对象
*
* @return mixed
*/
public function add(CompositeInterface $composite)
{
throw new Exception('not support', 500);
}

/**
* 删除节点一个对象
*
* @return mixed
*/
public function delete(CompositeInterface $composite)
{
throw new Exception('not support', 500);
}

/**
* 打印对象组合.
*
* @return mixed
*/
public function printComposite()
{
throw new Exception('not support', 500);
}

/**
* 实体类要实现的方法.
*
* @return mixed
*/
public function operation($operation = '', $content = '')
{
switch ($operation) {
case 'write':
$this->_content .= $content;
echo 'write success';
break;
case 'read':
echo $this->_content;
break;

default:
throw new \Exception("not support", 400);
break;
}
}
}

/**
* 文件夹实体
*/
class Folder implements CompositeInterface
{
/**
* 对象组合
* @var array
*/
private $_composite = [];

/**
* 文件夹名称
* @var string
*/
private $_name = '';

/**
* 构造函数
*
* @param string $name
*/
public function __construct($name='')
{
$this->_name = $name;
}

/**
* 魔法函数
* @param string $name 属性名称
* @return mixed
*/
public function __get($name='')
{
$name = '_' . $name;
return $this->$name;
}

/**
* 增加一个节点对象
*
* @return void
*/
public function add(CompositeInterface $composite)
{
if (in_array($composite, $this->_composite, true)) {
return;
}
$this->_composite[] = $composite;
}

/**
* 删除节点一个对象
*
* @return void
*/
public function delete(CompositeInterface $composite)
{
$key = array_search($composite, $this->_composite, true);
if (!$key) {
throw new Exception("not found", 404);
}
unset($this->_composite[$key]);
$this->_composite = array_values($this->_composite);
}

/**
* 打印对象组合
*
* @return void
*/
public function printComposite()
{
foreach ($this->_composite as $v) {
if ($v instanceof Folder) {
echo '---' . $v->name . "---\n";
$v->printComposite();
continue;
}
echo $v->name . "\n";
}
}

/**
* 实体类要实现的方法
*
* @return mixed
*/
public function operation()
{
return;
}
}



try {
// 构建一个根目录
$root = new Folder('根目录');

// 根目录下添加一个test.php的文件和usr,mnt的文件夹
$testFile = new File('test.php');
$usr = new Folder('usr');
$mnt = new Folder('mnt');
$root->add($testFile);
$root->add($usr);
$root->add($mnt);
$usr->add($testFile);// usr目录下加一个test.php的文件

// 打印根目录文件夹节点
$root->printComposite();

} catch (\Exception $e) {
echo $e->getMessage();
}