forked from flourishlib/flourish-classes
-
Notifications
You must be signed in to change notification settings - Fork 10
/
fFilesystem.php
739 lines (632 loc) · 21.2 KB
/
fFilesystem.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
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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
<?php
/**
* Handles filesystem-level tasks including filesystem transactions and the reference map to keep all fFile and fDirectory objects in sync
*
* @copyright Copyright (c) 2008-2010 Will Bond, others
* @author Will Bond [wb] <will@flourishlib.com>
* @author Alex Leeds [al] <alex@kingleeds.com>
* @author Will Bond, iMarc LLC [wb-imarc] <will@imarc.net>
* @license http://flourishlib.com/license
*
* @package Flourish
* @link http://flourishlib.com/fFilesystem
*
*/
class fFilesystem
{
// The following constants allow for nice looking callbacks to static methods
const addWebPathTranslation = 'fFilesystem::addWebPathTranslation';
const begin = 'fFilesystem::begin';
const commit = 'fFilesystem::commit';
const convertToBytes = 'fFilesystem::convertToBytes';
const createObject = 'fFilesystem::createObject';
const formatFilesize = 'fFilesystem::formatFilesize';
const getPathInfo = 'fFilesystem::getPathInfo';
const hookDeletedMap = 'fFilesystem::hookDeletedMap';
const hookFilenameMap = 'fFilesystem::hookFilenameMap';
const isInsideTransaction = 'fFilesystem::isInsideTransaction';
const makeUniqueName = 'fFilesystem::makeUniqueName';
const recordAppend = 'fFilesystem::recordAppend';
const recordCreate = 'fFilesystem::recordCreate';
const recordDelete = 'fFilesystem::recordDelete';
const recordDuplicate = 'fFilesystem::recordDuplicate';
const recordRename = 'fFilesystem::recordRename';
const recordWrite = 'fFilesystem::recordWrite';
const reset = 'fFilesystem::reset';
const rollback = 'fFilesystem::rollback';
const translateToWebPath = 'fFilesystem::translateToWebPath';
const updateDeletedMap = 'fFilesystem::updateDeletedMap';
const updateFilenameMap = 'fFilesystem::updateFilenameMap';
const updateFilenameMapForDirectory = 'fFilesystem::updateFilenameMapForDirectory';
/**
* Stores the operations to perform when a commit occurs
*
* @var array
*/
static private $commit_operations = NULL;
/**
* Maps deletion backtraces to all instances of a file or directory, providing consistency
*
* @var array
*/
static private $deleted_map = array();
/**
* Stores file and directory names by reference, allowing all object instances to be updated at once
*
* @var array
*/
static private $filename_map = array();
/**
* Stores the operations to perform if a rollback occurs
*
* @var array
*/
static private $rollback_operations = NULL;
/**
* Enables or disables the file checks
*
* @var boolean
*/
static private $skip_checks = false;
/**
* Stores a list of search => replace strings for web path translations
*
* @var array
*/
static private $web_path_translations = array();
/**
* Adds a directory to the web path translation list
*
* The web path conversion list is a list of directory paths that will be
* converted (from the beginning of filesystem paths) when preparing a path
* for output into HTML.
*
* By default the `$_SERVER['DOCUMENT_ROOT']` will be converted to a blank
* string, in essence stripping it from filesystem paths.
*
* @param string $search_path The path to look for
* @param string $replace_path The path to replace with
* @return void
*/
static public function addWebPathTranslation($search_path, $replace_path)
{
// Ensure we have the correct kind of slash for the OS being used
$search_path = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $search_path);
$replace_path = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $replace_path);
self::$web_path_translations[$search_path] = $replace_path;
}
/**
* Starts a filesystem pseudo-transaction, should only be called when no transaction is in progress.
*
* Flourish filesystem transactions are NOT full ACID-compliant
* transactions, but rather more of an filesystem undo buffer which can
* return the filesystem to the state when ::begin() was called. If your PHP
* script dies in the middle of an operation this functionality will do
* nothing for you and all operations will be retained, except for deletes
* which only occur once the transaction is committed.
*
* @return void
*/
static public function begin()
{
if (self::$commit_operations !== NULL) {
throw new fProgrammerException(
'There is already a filesystem transaction in progress'
);
}
self::$commit_operations = array();
self::$rollback_operations = array();
}
/**
* Commits a filesystem transaction, should only be called when a transaction is in progress
*
* @return void
*/
static public function commit()
{
if (!self::isInsideTransaction()) {
throw new fProgrammerException(
'There is no filesystem transaction in progress to commit'
);
}
$commit_operations = self::$commit_operations;
self::$commit_operations = NULL;
self::$rollback_operations = NULL;
$commit_operations = array_reverse($commit_operations);
foreach ($commit_operations as $operation) {
// Commit operations only include deletes, however it could be a filename or object
if (isset($operation['filename'])) {
unlink($operation['filename']);
} else {
$operation['object']->delete();
}
}
}
/**
* Takes a file size including a unit of measure (i.e. kb, GB, M) and converts it to bytes
*
* Sizes are interpreted using base 2, not base 10. Sizes above 2GB may not
* be accurately represented on 32 bit operating systems.
*
* @param string $size The size to convert to bytes
* @return integer The number of bytes represented by the size
*/
static public function convertToBytes($size)
{
if (!preg_match('#^(\d+(?:\.\d+)?)\s*(k|m|g|t)?(ilo|ega|era|iga)?( )?b?(yte(s)?)?$#D', strtolower(trim($size)), $matches)) {
throw new fProgrammerException(
'The size specified, %s, does not appears to be a valid size',
$size
);
}
if (empty($matches[2])) {
$matches[2] = 'b';
}
$size_map = array('b' => 1,
'k' => 1024,
'm' => 1048576,
'g' => 1073741824,
't' => 1099511627776);
return round($matches[1] * $size_map[$matches[2]]);
}
/**
* Takes a filesystem path and creates either an fDirectory, fFile or fImage object from it
*
* @throws fValidationException When no path was specified or the path specified does not exist
*
* @param string $path The path to the filesystem object
* @return fDirectory|fFile|fImage
*/
static public function createObject($path)
{
if (empty($path)) {
throw new fValidationException(
'No path was specified'
);
}
if (!self::$skip_checks) {
if (!is_readable($path)) {
throw new fValidationException(
'The path specified, %s, does not exist or is not readable',
$path
);
}
}
if (is_dir($path)) {
return new fDirectory($path, TRUE);
}
if (fImage::isImageCompatible($path)) {
return new fImage($path, TRUE);
}
return new fFile($path, TRUE);
}
/**
* Takes the size of a file in bytes and returns a friendly size in B/K/M/G/T
*
* @param integer $bytes The size of the file in bytes
* @param integer $decimal_places The number of decimal places to display
* @return string
*/
static public function formatFilesize($bytes, $decimal_places=1)
{
if ($bytes < 0) {
$bytes = 0;
}
$suffixes = array('B', 'K', 'M', 'G', 'T');
$sizes = array(1, 1024, 1048576, 1073741824, 1099511627776);
$suffix = (!$bytes) ? 0 : floor(log($bytes)/6.9314718);
return number_format($bytes/$sizes[$suffix], ($suffix == 0) ? 0 : $decimal_places) . ' ' . $suffixes[$suffix];
}
/**
* Returns info about a path including dirname, basename, extension and filename
*
* @param string $path The file/directory path to retrieve information about
* @param string $element The piece of information to return: `'dirname'`, `'basename'`, `'extension'`, or `'filename'`
* @return array The file's dirname, basename, extension and filename
*/
static public function getPathInfo($path, $element=NULL)
{
$valid_elements = array('dirname', 'basename', 'extension', 'filename');
if ($element !== NULL && !in_array($element, $valid_elements)) {
throw new fProgrammerException(
'The element specified, %1$s, is invalid. Must be one of: %2$s.',
$element,
join(', ', $valid_elements)
);
}
$path_info = pathinfo($path);
if (!isset($path_info['extension'])) {
$path_info['extension'] = NULL;
}
if (!isset($path_info['filename'])) {
$path_info['filename'] = preg_replace('#\.' . preg_quote($path_info['extension'], '#') . '$#D', '', $path_info['basename']);
}
$path_info['dirname'] .= DIRECTORY_SEPARATOR;
if ($element) {
return $path_info[$element];
}
return $path_info;
}
/**
* Hooks a file/directory into the deleted backtrace map entry for that filename
*
* Since the value is returned by reference, all objects that represent
* this file/directory always see the same backtrace.
*
* @internal
*
* @param string $file The name of the file or directory
* @return mixed Will return `NULL` if no match, or the backtrace array if a match occurs
*/
static public function &hookDeletedMap($file)
{
if (!isset(self::$deleted_map[$file])) {
self::$deleted_map[$file] = NULL;
}
return self::$deleted_map[$file];
}
/**
* Hooks a file/directory name to the filename map
*
* Since the value is returned by reference, all objects that represent
* this file/directory will always be update on a rename.
*
* @internal
*
* @param string $file The name of the file or directory
* @return mixed Will return `NULL` if no match, or the exception object if a match occurs
*/
static public function &hookFilenameMap($file)
{
if (!isset(self::$filename_map[$file])) {
self::$filename_map[$file] = $file;
}
return self::$filename_map[$file];
}
/**
* Indicates if a transaction is in progress
*
* @return void
*/
static public function isInsideTransaction()
{
return is_array(self::$commit_operations);
}
/**
* Changes a filename to be safe for URLs by making it all lower case and changing everything but letters, numers, - and . to _
*
* @param string $filename The filename to clean up
* @return string The cleaned up filename
*/
static public function makeURLSafe($filename)
{
$filename = strtolower(trim($filename));
$filename = str_replace("'", '', $filename);
return preg_replace('#[^a-z0-9\-\.]+#', '_', $filename);
}
/**
* Returns a unique name for a file
*
* @param string $file The filename to check
* @param string $new_extension The new extension for the filename, should not include `.`
* @return string The unique file name
*/
static public function makeUniqueName($file, $new_extension=NULL)
{
$info = self::getPathInfo($file);
// Change the file extension
if ($new_extension !== NULL) {
$new_extension = ($new_extension) ? '.' . $new_extension : $new_extension;
$file = $info['dirname'] . $info['filename'] . $new_extension;
$info = self::getPathInfo($file);
}
// If there is an extension, be sure to add . before it
$extension = (!empty($info['extension'])) ? '.' . $info['extension'] : '';
// Remove _copy# from the filename to start
$file = preg_replace('#_copy(\d+)' . preg_quote($extension, '#') . '$#D', $extension, $file);
// Look for a unique name by adding _copy# to the end of the file
while (file_exists($file)) {
$info = self::getPathInfo($file);
if (preg_match('#_copy(\d+)' . preg_quote($extension, '#') . '$#D', $file, $match)) {
$file = preg_replace('#_copy(\d+)' . preg_quote($extension, '#') . '$#D', '_copy' . ($match[1]+1) . $extension, $file);
} else {
$file = $info['dirname'] . $info['filename'] . '_copy1' . $extension;
}
}
return $file;
}
/**
* Set whether or not to skip checks
*
* @param boolean
*/
static public function setSkipChecks($check = true)
{
return self::$skip_checks = $check;
}
/**
* Updates the deleted backtrace for a file or directory
*
* @internal
*
* @param string $file A file or directory name, directories should end in `/` or `\`
* @param array $backtrace The backtrace for this file/directory
* @return void
*/
static public function updateDeletedMap($file, $backtrace)
{
self::$deleted_map[$file] = $backtrace;
}
/**
* Updates the filename map, causing all objects representing a file/directory to be updated
*
* @internal
*
* @param string $existing_filename The existing filename
* @param string $new_filename The new filename
* @return void
*/
static public function updateFilenameMap($existing_filename, $new_filename)
{
if ($existing_filename == $new_filename) {
return;
}
self::$filename_map[$new_filename] =& self::$filename_map[$existing_filename];
self::$deleted_map[$new_filename] =& self::$deleted_map[$existing_filename];
unset(self::$filename_map[$existing_filename]);
unset(self::$deleted_map[$existing_filename]);
self::$filename_map[$new_filename] = $new_filename;
}
/**
* Updates the filename map recursively, causing all objects representing a directory to be updated
*
* Also updates all files and directories in the specified directory to the new paths.
*
* @internal
*
* @param string $existing_dirname The existing directory name
* @param string $new_dirname The new dirname
* @return void
*/
static public function updateFilenameMapForDirectory($existing_dirname, $new_dirname)
{
if ($existing_dirname == $new_dirname) {
return;
}
// Handle the directory name
self::$filename_map[$new_dirname] =& self::$filename_map[$existing_dirname];
self::$deleted_map[$new_dirname] =& self::$deleted_map[$existing_dirname];
unset(self::$filename_map[$existing_dirname]);
unset(self::$deleted_map[$existing_dirname]);
self::$filename_map[$new_dirname] = $new_dirname;
// Handle all of the directories and files inside this directory
foreach (self::$filename_map as $filename => $ignore) {
if (preg_match('#^' . preg_quote($existing_dirname, '#') . '#', $filename)) {
$new_filename = preg_replace(
'#^' . preg_quote($existing_dirname, '#') . '#',
strtr($new_dirname, array('\\' => '\\\\', '$' => '\\$')),
$filename
);
self::$filename_map[$new_filename] =& self::$filename_map[$filename];
self::$deleted_map[$new_filename] =& self::$deleted_map[$filename];
unset(self::$filename_map[$filename]);
unset(self::$deleted_map[$filename]);
self::$filename_map[$new_filename] = $new_filename;
}
}
}
/**
* Stores what data has been added to a file so it can be removed if there is a rollback
*
* @internal
*
* @param fFile $file The file that is being written to
* @param string $data The data being appended to the file
* @return void
*/
static public function recordAppend($file, $data)
{
self::$rollback_operations[] = array(
'action' => 'append',
'filename' => $file->getPath(),
'length' => strlen($data)
);
}
/**
* Keeps a record of created files so they can be deleted up in case of a rollback
*
* @internal
*
* @param object $object The new file or directory to get rid of on rollback
* @return void
*/
static public function recordCreate($object)
{
self::$rollback_operations[] = array(
'action' => 'delete',
'object' => $object
);
}
/**
* Keeps track of file and directory names to delete when a transaction is committed
*
* @internal
*
* @param fFile|fDirectory $object The filesystem object to delete
* @return void
*/
static public function recordDelete($object)
{
self::$commit_operations[] = array(
'action' => 'delete',
'object' => $object
);
}
/**
* Keeps a record of duplicated files so they can be cleaned up in case of a rollback
*
* @internal
*
* @param fFile $file The duplicate file to get rid of on rollback
* @return void
*/
static public function recordDuplicate($file)
{
self::$rollback_operations[] = array(
'action' => 'delete',
'filename' => $file->getPath()
);
}
/**
* Keeps a temp file in place of the old filename so the file can be restored during a rollback
*
* @internal
*
* @param string $old_name The old file or directory name
* @param string $new_name The new file or directory name
* @return void
*/
static public function recordRename($old_name, $new_name)
{
self::$rollback_operations[] = array(
'action' => 'rename',
'old_name' => $old_name,
'new_name' => $new_name
);
// Create the file with no content to prevent overwriting by another process
file_put_contents($old_name, '');
self::$commit_operations[] = array(
'action' => 'delete',
'filename' => $old_name
);
}
/**
* Keeps backup copies of files so they can be restored if there is a rollback
*
* @internal
*
* @param fFile $file The file that is being written to
* @return void
*/
static public function recordWrite($file)
{
self::$rollback_operations[] = array(
'action' => 'write',
'filename' => $file->getPath(),
'old_data' => file_get_contents($file->getPath())
);
}
/**
* Resets the configuration of the class
*
* @internal
*
* @return void
*/
static public function reset()
{
self::rollback();
self::$commit_operations = NULL;
self::$deleted_map = array();
self::$filename_map = array();
self::$rollback_operations = NULL;
self::$web_path_translations = array();
}
/**
* Rolls back a filesystem transaction, it is safe to rollback when no transaction is in progress
*
* @return void
*/
static public function rollback()
{
if (self::$rollback_operations === NULL) {
return;
}
self::$rollback_operations = array_reverse(self::$rollback_operations);
$clear_cache = FALSE;
foreach (self::$rollback_operations as $operation) {
switch($operation['action']) {
case 'append':
$current_length = filesize($operation['filename']);
$handle = fopen($operation['filename'], 'r+');
ftruncate($handle, $current_length - $operation['length']);
fclose($handle);
$clear_cache = TRUE;
break;
case 'delete':
self::updateDeletedMap(
$operation['filename'],
debug_backtrace()
);
unlink($operation['filename']);
fFilesystem::updateFilenameMap($operation['filename'], '*DELETED at ' . time() . ' with token ' . uniqid('', TRUE) . '* ' . $operation['filename']);
break;
case 'write':
file_put_contents($operation['filename'], $operation['old_data']);
$clear_cache = TRUE;
break;
case 'rename':
fFilesystem::updateFilenameMap($operation['new_name'], $operation['old_name']);
rename($operation['new_name'], $operation['old_name']);
break;
}
}
// All files to be deleted should have their backtraces erased
foreach (self::$commit_operations as $operation) {
if (isset($operation['object'])) {
self::updateDeletedMap($operation['object']->getPath(), NULL);
fFilesystem::updateFilenameMap($operation['object']->getPath(), preg_replace('#*DELETED at \d+ with token [\w.]+* #', '', $operation['filename']));
}
}
self::$commit_operations = NULL;
self::$rollback_operations = NULL;
if ($clear_cache) {
clearstatcache();
}
}
/**
* Takes a filesystem path and translates it to a web path using the rules added
*
* @param string $path The path to translate
* @return string The filesystem path translated to a web path
*/
static public function translateToWebPath($path)
{
$translations = array(realpath($_SERVER['DOCUMENT_ROOT']) => '') + self::$web_path_translations;
foreach ($translations as $search => $replace) {
$path = preg_replace(
'#^' . preg_quote($search, '#') . '#',
strtr($replace, array('\\' => '\\\\', '$' => '\\$')),
$path
);
}
return str_replace('\\', '/', $path);
}
/**
* Forces use as a static class
*
* @return fFilesystem
*/
private function __construct() { }
}
/**
* Copyright (c) 2008-2010 Will Bond <will@flourishlib.com>, others
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/