Data.php
12.8 KB
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Dojo
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id: Data.php 23775 2011-03-01 17:25:24Z ralph $
*/
/**
* dojo.data support for Zend Framework
*
* @uses ArrayAccess
* @uses Iterator
* @uses Countable
* @package Zend_Dojo
* @copyright Copyright (c) 2005-2011 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
class Zend_Dojo_Data implements ArrayAccess,Iterator,Countable
{
/**
* Identifier field of item
* @var string|int
*/
protected $_identifier;
/**
* Collected items
* @var array
*/
protected $_items = array();
/**
* Label field of item
* @var string
*/
protected $_label;
/**
* Data container metadata
* @var array
*/
protected $_metadata = array();
/**
* Constructor
*
* @param string|null $identifier
* @param array|Traversable|null $items
* @param string|null $label
* @return void
*/
public function __construct($identifier = null, $items = null, $label = null)
{
if (null !== $identifier) {
$this->setIdentifier($identifier);
}
if (null !== $items) {
$this->setItems($items);
}
if (null !== $label) {
$this->setLabel($label);
}
}
/**
* Set the items to collect
*
* @param array|Traversable $items
* @return Zend_Dojo_Data
*/
public function setItems($items)
{
$this->clearItems();
return $this->addItems($items);
}
/**
* Set an individual item, optionally by identifier (overwrites)
*
* @param array|object $item
* @param string|null $identifier
* @return Zend_Dojo_Data
*/
public function setItem($item, $id = null)
{
$item = $this->_normalizeItem($item, $id);
$this->_items[$item['id']] = $item['data'];
return $this;
}
/**
* Add an individual item, optionally by identifier
*
* @param array|object $item
* @param string|null $id
* @return Zend_Dojo_Data
*/
public function addItem($item, $id = null)
{
$item = $this->_normalizeItem($item, $id);
if ($this->hasItem($item['id'])) {
require_once 'Zend/Dojo/Exception.php';
throw new Zend_Dojo_Exception('Overwriting items using addItem() is not allowed');
}
$this->_items[$item['id']] = $item['data'];
return $this;
}
/**
* Add multiple items at once
*
* @param array|Traversable $items
* @return Zend_Dojo_Data
*/
public function addItems($items)
{
if (!is_array($items) && (!is_object($items) || !($items instanceof Traversable))) {
require_once 'Zend/Dojo/Exception.php';
throw new Zend_Dojo_Exception('Only arrays and Traversable objects may be added to ' . __CLASS__);
}
foreach ($items as $item) {
$this->addItem($item);
}
return $this;
}
/**
* Get all items as an array
*
* Serializes items to arrays.
*
* @return array
*/
public function getItems()
{
return $this->_items;
}
/**
* Does an item with the given identifier exist?
*
* @param string|int $id
* @return bool
*/
public function hasItem($id)
{
return array_key_exists($id, $this->_items);
}
/**
* Retrieve an item by identifier
*
* Item retrieved will be flattened to an array.
*
* @param string $id
* @return array
*/
public function getItem($id)
{
if (!$this->hasItem($id)) {
return null;
}
return $this->_items[$id];
}
/**
* Remove item by identifier
*
* @param string $id
* @return Zend_Dojo_Data
*/
public function removeItem($id)
{
if ($this->hasItem($id)) {
unset($this->_items[$id]);
}
return $this;
}
/**
* Remove all items at once
*
* @return Zend_Dojo_Data
*/
public function clearItems()
{
$this->_items = array();
return $this;
}
/**
* Set identifier for item lookups
*
* @param string|int|null $identifier
* @return Zend_Dojo_Data
*/
public function setIdentifier($identifier)
{
if (null === $identifier) {
$this->_identifier = null;
} elseif (is_string($identifier)) {
$this->_identifier = $identifier;
} elseif (is_numeric($identifier)) {
$this->_identifier = (int) $identifier;
} else {
require_once 'Zend/Dojo/Exception.php';
throw new Zend_Dojo_Exception('Invalid identifier; please use a string or integer');
}
return $this;
}
/**
* Retrieve current item identifier
*
* @return string|int|null
*/
public function getIdentifier()
{
return $this->_identifier;
}
/**
* Set label to use for displaying item associations
*
* @param string|null $label
* @return Zend_Dojo_Data
*/
public function setLabel($label)
{
if (null === $label) {
$this->_label = null;
} else {
$this->_label = (string) $label;
}
return $this;
}
/**
* Retrieve item association label
*
* @return string|null
*/
public function getLabel()
{
return $this->_label;
}
/**
* Set metadata by key or en masse
*
* @param string|array $spec
* @param mixed $value
* @return Zend_Dojo_Data
*/
public function setMetadata($spec, $value = null)
{
if (is_string($spec) && (null !== $value)) {
$this->_metadata[$spec] = $value;
} elseif (is_array($spec)) {
foreach ($spec as $key => $value) {
$this->setMetadata($key, $value);
}
}
return $this;
}
/**
* Get metadata item or all metadata
*
* @param null|string $key Metadata key when pulling single metadata item
* @return mixed
*/
public function getMetadata($key = null)
{
if (null === $key) {
return $this->_metadata;
}
if (array_key_exists($key, $this->_metadata)) {
return $this->_metadata[$key];
}
return null;
}
/**
* Clear individual or all metadata item(s)
*
* @param null|string $key
* @return Zend_Dojo_Data
*/
public function clearMetadata($key = null)
{
if (null === $key) {
$this->_metadata = array();
} elseif (array_key_exists($key, $this->_metadata)) {
unset($this->_metadata[$key]);
}
return $this;
}
/**
* Load object from array
*
* @param array $data
* @return Zend_Dojo_Data
*/
public function fromArray(array $data)
{
if (array_key_exists('identifier', $data)) {
$this->setIdentifier($data['identifier']);
}
if (array_key_exists('label', $data)) {
$this->setLabel($data['label']);
}
if (array_key_exists('items', $data) && is_array($data['items'])) {
$this->setItems($data['items']);
} else {
$this->clearItems();
}
return $this;
}
/**
* Load object from JSON
*
* @param string $json
* @return Zend_Dojo_Data
*/
public function fromJson($json)
{
if (!is_string($json)) {
require_once 'Zend/Dojo/Exception.php';
throw new Zend_Dojo_Exception('fromJson() expects JSON input');
}
require_once 'Zend/Json.php';
$data = Zend_Json::decode($json);
return $this->fromArray($data);
}
/**
* Seralize entire data structure, including identifier and label, to array
*
* @return array
*/
public function toArray()
{
if (null === ($identifier = $this->getIdentifier())) {
require_once 'Zend/Dojo/Exception.php';
throw new Zend_Dojo_Exception('Serialization requires that an identifier be present in the object; first call setIdentifier()');
}
$array = array(
'identifier' => $identifier,
'items' => array_values($this->getItems()),
);
$metadata = $this->getMetadata();
if (!empty($metadata)) {
foreach ($metadata as $key => $value) {
$array[$key] = $value;
}
}
if (null !== ($label = $this->getLabel())) {
$array['label'] = $label;
}
return $array;
}
/**
* Serialize to JSON (dojo.data format)
*
* @return string
*/
public function toJson()
{
require_once 'Zend/Json.php';
return Zend_Json::encode($this->toArray());
}
/**
* Serialize to string (proxy to {@link toJson()})
*
* @return string
*/
public function __toString()
{
return $this->toJson();
}
/**
* ArrayAccess: does offset exist?
*
* @param string|int $offset
* @return bool
*/
public function offsetExists($offset)
{
return (null !== $this->getItem($offset));
}
/**
* ArrayAccess: retrieve by offset
*
* @param string|int $offset
* @return array
*/
public function offsetGet($offset)
{
return $this->getItem($offset);
}
/**
* ArrayAccess: set value by offset
*
* @param string $offset
* @param array|object|null $value
* @return void
*/
public function offsetSet($offset, $value)
{
$this->setItem($value, $offset);
}
/**
* ArrayAccess: unset value by offset
*
* @param string $offset
* @return void
*/
public function offsetUnset($offset)
{
$this->removeItem($offset);
}
/**
* Iterator: get current value
*
* @return array
*/
public function current()
{
return current($this->_items);
}
/**
* Iterator: get current key
*
* @return string|int
*/
public function key()
{
return key($this->_items);
}
/**
* Iterator: get next item
*
* @return void
*/
public function next()
{
return next($this->_items);
}
/**
* Iterator: rewind to first value in collection
*
* @return void
*/
public function rewind()
{
return reset($this->_items);
}
/**
* Iterator: is item valid?
*
* @return bool
*/
public function valid()
{
return (bool) $this->current();
}
/**
* Countable: how many items are present
*
* @return int
*/
public function count()
{
return count($this->_items);
}
/**
* Normalize an item to attach to the collection
*
* @param array|object $item
* @param string|int|null $id
* @return array
*/
protected function _normalizeItem($item, $id)
{
if (null === ($identifier = $this->getIdentifier())) {
require_once 'Zend/Dojo/Exception.php';
throw new Zend_Dojo_Exception('You must set an identifier prior to adding items');
}
if (!is_object($item) && !is_array($item)) {
require_once 'Zend/Dojo/Exception.php';
throw new Zend_Dojo_Exception('Only arrays and objects may be attached');
}
if (is_object($item)) {
if (method_exists($item, 'toArray')) {
$item = $item->toArray();
} else {
$item = get_object_vars($item);
}
}
if ((null === $id) && !array_key_exists($identifier, $item)) {
require_once 'Zend/Dojo/Exception.php';
throw new Zend_Dojo_Exception('Item must contain a column matching the currently set identifier');
} elseif (null === $id) {
$id = $item[$identifier];
} else {
$item[$identifier] = $id;
}
return array(
'id' => $id,
'data' => $item,
);
}
}