My favorites
▼
|
Sign in
platcode
Extensible PHP Framework
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
branches
/
jim2.php
‹r95
r96
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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
<?php
define('STORAGE_PATH', 'F:\\tmp\\jim2');
/**
* Cache
*/
class Cache
{
/**
* Tag a key
* @param string $tag
* @param string $key
*/
static public function tagKey($tag, $key)
{
if ( xcache_isset($tag) )
{
$keys = xcache_get($tag);
}
$keys[] = $key;
xcache_set($tag, $keys);
}
/**
* Delete by cache
* @param string $tag
*/
static public function deleteByTag($tag)
{
if ( xcache_isset($tag) )
{
$keys = xcache_get($tag);
foreach ($keys as $key)
{
xcache_unset($tag . '/' . $key);
}
xcache_unset($tag);
}
}
/**
* Save in cache
* @param string $key
* @param mixed $value
* @param int $ttl
*/
static public function set($key, $value, $ttl = 0)
{
xcache_set($key, $value, $ttl);
}
/**
* Fetch a key from cache
* @param string $key
* @return mxied
*/
static public function get($key)
{
return xcache_get($key);
}
/**
* Check existed key
* @param string $key
* @return bool
*/
static public function exists($key)
{
return xcache_isset($key);
}
}
/**
* Storage
*/
class Storage
{
const WAIT_FACTOR = 10;
const TIMEOUT = 1;
/**
* Read a file
* @param string $fileName
* @return string|false
*/
static public function read($fileName)
{
return @file_get_contents(STORAGE_PATH . DIRECTORY_SEPARATOR . $fileName);
}
/**
* Write a file
* @param string $fileName
* @param string $data
* @return bool
*/
static public function write($fileName, $data)
{
$filePath = STORAGE_PATH . DIRECTORY_SEPARATOR . $fileName;
if ( file_exists($filePath) )
{
for ($i = 0; $i < self::WAIT_FACTOR; $i++)
{
if ( ! is_writable($filePath) )
{
sleep(self::TIMEOUT);
}
else
{
break;
}
}
if ($i == self::WAIT_FACTOR)
{
return false;
}
}
return file_put_contents($filePath, $data, LOCK_EX);
}
/**
* Delete a file
* @param string $fileName
* @return bool
*/
static public function delete($fileName)
{
return unlink(STORAGE_PATH . DIRECTORY_SEPARATOR . $fileName);
}
}
/**
* Index
*/
class Index
{
/**
* Root name
* @var string
*/
private $root;
/**
* Root index
* @param string $root
*/
public function __construct($root)
{
$this->root = $root;
$this->load();
}
/**
* Load index in memory
*/
private function load()
{
$rootPath = './' . $this->root;
if ( ! Cache::exists($rootPath) )
{
$content = Storage::read('_' . $this->root);
$indexNames = array ();
if ($content !== false)
{
$index = json_decode($content, true);
foreach ($index as $name => $keys)
{
$indexKeys = array();
foreach ($keys as $unique => $values)
{
$indexKeys[] = $unique;
Cache::set($rootPath . '/' . $name . '/' . $unique, $values);
}
$indexNames[] = $name;
Cache::set($rootPath . '/' . $name, $indexKeys);
}
}
else
{
$indexNames[] = 'id';
}
Cache::set($rootPath, $indexNames);
}
}
/**
* Save index in file system
*/
public function save()
{
$rootPath = './' . $this->root;
$indexes = array ();
if ( Cache::exists($rootPath) )
{
$indexNames = Cache::get($rootPath);
foreach ($indexNames as $name)
{
if ( Cache::exists($rootPath . '/' . $name) )
{
$indexes[$name] = array ();
$keys = Cache::get($rootPath . '/' . $name);
foreach ($keys as $key)
{
$indexes[$name][$key] = Cache::get($rootPath . '/' . $name . '/' . $key);
}
}
}
}
$content = json_encode($indexes);
Storage::write('_' . $this->root, $content);
}
/**
* Drop index from specific path
* @param string $path
* @param string $index
* @param string $value
*/
public function dropIndexFromPath($path, $index, $value)
{
$indexName = $path . '/' . $index;
$keys = Cache::get($indexName);
$position = array_search($value, $keys);
if ($position !== false)
{
unset ($keys[$position]);
if ( empty ($keys) )
{
if ($path != '.')
{
xcache_unset($indexName);
$value = $index;
$index = basename($path);
$path = dirname($path);
if ($path != $this->root)
{
$this->dropIndexFromPath($path, $index, $value);
}
}
}
else
{
Cache::set($indexName, $keys);
}
}
}
/**
* Drop index
* @param string $index
* @return bool
*/
public function dropIndex($index)
{
$indexPath = './' . $this->root . '/' . $index;
if ( Cache::exists($indexPath) )
{
Cache::deleteByTag($indexPath);
$this->dropIndexFromPath('.', $this->root, $index);
return true;
}
return false;
}
}
/**
* Object collection
*/
class Collection
{
/**
* Index object
* @var Index
*/
private $index;
/**
* Initialize index
* @param string $filePath
*/
private function init()
{
if ( ! Cache::exists('_VERSION') )
{
$content = Storage::read('_rev');
if ($content !== false)
{
Cache::set('_VERSION', intval($content));
}
else
{
Cache::set('_VERSION', 0);
}
}
}
/**
* Update collection version
*/
private function commit()
{
Storage::write('_rev', xcache_inc('_VERSION'));
}
/**
* Normalize identifier
* @param string $id
* @return string
*/
private function normalizeId($id)
{
$id = preg_replace('/[^\wа-я]+/ui', '-', $id);
$id = trim($id, '-');
return mb_strtolower($id, 'UTF-8');
}
/**
* Constructor init configuration
* @param string $objectName
*/
public function __construct()
{
$this->index = new Index('index');
$this->init();
}
/**
* Add document properties
* @param array[string]mixed $properties
* @return array(int,array[string]mixed)
*/
public function put($properties)
{
if ( ! array_key_exists('id', $properties) )
{
$properties['id'] = md5( uniqid() );
}
else
{
$properties['id'] = $this->normalizeId($properties['id']);
}
$id = $properties['id']; // unique key
$properties['_rev'] = time();
// try merge with existed document...
if ( Cache::exists('./documents/' . $id) )
{
$document = Cache::get('./documents/' . $id);
if ($document['_rev'] > $properties['_rev'])
{
return array ($document['_rev'], false); //---------------- RETURN
}
else
{
$properties = array_merge($document, $properties);
}
}
// save in cache...
Cache::set('./documents/' . $id, $properties, 3600);
// save in file system...
$data = json_encode($properties);
Storage::write($id, $data);
// reindex document and save in file system
$this->reindex($id, $properties, $document);
// save version
$this->commit();
return array ($properties['_rev'], $properties);
}
/**
* Fetch document by id
* @param string $id
* @return array[string]mixed
*/
public function get($id)
{
if ( Cache::exists('./documents/' . $id) )
{
return Cache::get('./documents/' . $id);
}
else
{
$data = Storage::read($id);
if ($data !== false)
{
$data = json_decode($data, true);
Cache::set('./documents/' . $id, $data);
return $data;
}
return false;
}
}
/**
* Delete document from collection
* @param string $id
*/
public function delete($id)
{
$document = $this->get($id);
if ($document !== false)
{
$indexes = Cache::get('./index');
foreach ($indexes as $index)
{
$fields = explode('+', $index);
$documentIndex = $this->getIndexForDocument($document, $fields);
$this->index->dropIndexFromPath('./index/' . $index, $documentIndex, $id);
}
$this->index->save();
// drop document
xcache_unset('./documents/' . $id);
Storage::delete($id);
// save version
$this->commit();
}
}
//-------------------------------- INDEXES LOGIC
/**
* Get index for document
* @param array[string]mixed $document
* @param array[int]string $fields
* @return string|false
*/
private function getIndexForDocument(&$document, $fields)
{
foreach ($fields as $field)
{
if ( array_key_exists($field, $document) )
{
$index[] = $document[$field];
}
else
{
return false; //------------------ RETURN
}
}
return implode('+', $index);
}
/**
* Reindex document
* @param string $id
* @param array[string]mixed $newDocument
* @param array[string]mixed $lastDocument
*/
private function reindex($id, &$newDocument, &$lastDocument)
{
$indexes = Cache::get('./index');
$totalChanges = 0;
foreach ($indexes as $index)
{
$fields = explode('+', $index);
$newIndex = $this->getIndexForDocument($newDocument, $fields);
if ($newIndex !== false)
{
if ( ! empty ($lastDocument) )
{
$lastIndex = $this->getIndexForDocument($lastDocument, $fields);
if ($newIndex != $lastIndex)
{
$this->index->dropIndexFromPath($index, $lastIndex, $id);
}
else
{
continue; //------------------- CONTINUE
}
}
Cache::tagKey('./index/' . $index, $newIndex);
Cache::tagKey('./index/' . $index . '/' . $newIndex, $id);
$totalChanges++;
}
}
if ($totalChanges > 0)
{
$this->index->save();
}
}
/**
* Create index for documents
* @param string|array[int]string $index
*/
public function createIndex($index)
{
if ( Cache::exists('./index/id') )
{
$ids = Cache::get('./index/id');
if ( ! is_array($index) )
{
$index = array ($index);
}
$totalChanges = 0;
foreach ($index as $indexRule)
{
if ( ! Cache::exists('./index/' . $indexRule) )
{
$indexes = array ();
$fields = explode('+', $indexRule);
foreach ($ids as $id)
{
$documentIndex = $this->getIndexForDocument($this->get($id), $fields);
if ($documentIndex !== false)
{
$indexes[] = $documentIndex;
Cache::tagKey('./index/' . $indexRule . '/' . $documentIndex, $id);
}
}
if ( ! empty ($indexes) )
{
Cache::set('./index/' . $indexRule, $indexes);
Cache::tagKey('./index', $indexRule);
$totalChanges++;
}
}
}
if ($totalChanges > 0)
{
$this->index->save();
}
}
}
/**
* Delete an index
* @param string|array[int]string $index
*/
public function deleteIndex($index)
{
if ( ! is_array($index) )
{
$index = array ($index);
}
$totalChanges = 0;
foreach ($index as $indexRule)
{
if ( $this->index->dropIndex($index) )
{
$totalChanges++;
}
}
if ($totalChanges > 0)
{
$this->index->save();
}
}
}
Show details
Hide details
Change log
r96
by regedaster on Jan 10, 2010
Diff
add storage class
Go to:
/branches/jim2.php
Project members,
sign in
to write a code review
Older revisions
r95
by regedaster on Jan 8, 2010
Diff
collection framework
All revisions of this file
File info
Size: 11632 bytes, 620 lines
View raw file
Powered by
Google Project Hosting