-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSubject-Observer.php
297 lines (247 loc) · 4.74 KB
/
Subject-Observer.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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<?php
/**
* Define a list with Obsering AsssetRepositories
* This list of systems gets informed, when a new asset is available or i changed
*/
/**
* Interface IObserver
*/
interface IObserver
{
public function getUUid();
}
/**
* Class AdobeCQObserver
*/
class AdobeCQObserver implements IObserver
{
public $_uuid;
public function getUUid()
{
return $this->_uuid;
}
public function __construct()
{
$this->_uuid = md5(uniqid());
}
}
/**
* Class CumulusObserver
*/
class CumulusObserver implements IObserver
{
public $_uuid;
public function getUUid()
{
return $this->_uuid;
}
public function __construct()
{
$this->_uuid = md5(uniqid());
}
}
/**
* Class MediaPoolObserver
*/
class MediaPoolObserver implements IObserver
{
public $_uuid;
public function getUUid()
{
return $this->_uuid;
}
public function __construct()
{
$this->_uuid = md5(uniqid());
}
}
/**
* Class Observer
*/
class Observer implements SplObserver
{
/**
* @var IObserver
*/
public $observer;
public function __construct(IObserver $observer)
{
$this->observer = $observer;
}
/**
* @param SplSubject $subject <p>
* @return void
*/
public function update(SplSubject $subject)
{
echo 'subject: '.$subject->getFileObject()->getUuid() .' was pubished to ' . $this->observer->getUuid() .' -> '.get_class($this->observer). PHP_EOL;
}
}
/**
* Class AssetSubject
*/
class AssetStorageSubject implements SplSubject
{
/**
* @var SplObjectStorage
*/
protected $_observers;
/**
* @var SplObjectStorage
*/
private $_fileObject;
/**
* @param FileObject $fileObject
*/
public function __construct(FileObject $fileObject)
{
$this->_fileObject = $fileObject;
$this->_observers = new SplObjectStorage();
}
/**
* Attaches Observer.
*
* @return void
*/
public function attach(SplObserver $observer)
{
$this->_observers->attach($observer);
}
/**
* Detach an observer
*
* @return void
*/
public function detach(SplObserver $observer)
{
$this->_observers->detach($observer);
}
/**
* Notify an observer
* @return void
*/
public function notify()
{
$this->_observers->rewind();
while ($this->_observers->valid())
{
$this->_observers->current()->update($this);
$this->_observers->next();
}
}
/**
* @return SplObjectStorage
*/
public function getFileObject()
{
return $this->_fileObject;
}
}
class FileObject
{
/**
* @var MD5 Hash
*/
private $_uuid;
/**
* @var string
*/
private $_name;
/**
* @var string
*/
private $_type;
/**
* @var string
*/
private $_path;
/**
* @var string
*/
private $_metadata;
/**
* set a uniqid
*/
public function __construct()
{
$this->_uuid = md5(uniqid());
}
/**
* @return mixed
*/
public function getName()
{
return $this->_name;
}
/**
* @return mixed
*/
public function getType()
{
return $this->_type;
}
/**
* @return mixed
*/
public function getPath()
{
return $this->_path;
}
/**
* @return mixed
*/
public function getMetadata()
{
return $this->_metadata;
}
/**
* @param mixed $name
*/
public function setName($name)
{
$this->_name = $name;
}
/**
* @param mixed $type
*/
public function setType($type)
{
$this->_type = $type;
}
/**
* @param mixed $path
*/
public function setPath($path)
{
$this->_path = $path;
}
/**
* @param mixed $metadata
*/
public function setMetadata($metadata)
{
$this->_metadata = $metadata;
}
/**
* @return MD5
*/
public function getUuid()
{
return $this->_uuid;
}
}
//create a filelist
$fileObject2= new FileObject();
$fileObject2->setName('a long name2');
//add fileobject to AssetPublisher
$assetPublisher = new AssetStorageSubject($fileObject2);
//create Observers who are interested on the new asset
$AdobeCQ = new Observer(new AdobeCQObserver());
$Cumulus = new Observer(new CumulusObserver());
$MediaPool = new Observer(new MediaPoolObserver());
//register observers on assetpublisher
$assetPublisher->attach($AdobeCQ);
$assetPublisher->attach($Cumulus);
$assetPublisher->attach($MediaPool);
//publish new asset information
$assetPublisher->notify();