|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace BigFileTools\Driver; |
|
4
|
|
|
use Brick\Math\BigInteger; |
|
5
|
|
|
use Brick\Math\Exception\ArithmeticException; |
|
6
|
|
|
|
|
7
|
|
|
class ExecDriver implements ISizeDriver |
|
8
|
|
|
{ |
|
9
|
|
|
private $os; |
|
10
|
|
|
const OS_WINDOWS = "Windows"; |
|
11
|
|
|
const OS_LINUX = "Linux"; |
|
12
|
|
|
const OS_MAC = "Mac"; |
|
13
|
|
|
|
|
14
|
|
|
public function __construct() |
|
15
|
|
|
{ |
|
16
|
|
|
if (!function_exists("exec")) { |
|
17
|
|
|
throw new PrerequisiteException("Exec function is disabled"); |
|
18
|
|
|
} |
|
19
|
|
|
|
|
20
|
|
|
if(strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { |
|
21
|
|
|
$this->os = self::OS_WINDOWS; |
|
22
|
|
|
} elseif (strtoupper(PHP_OS) == "DARWIN") { |
|
23
|
|
|
$this->os = self::OS_MAC; |
|
24
|
|
|
} else { |
|
25
|
|
|
$this->os = self::OS_LINUX; |
|
26
|
|
|
} |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* Returns file size by using system shell/cmd commands |
|
31
|
|
|
* @inheritdoc |
|
32
|
|
|
* @link http://stackoverflow.com/questions/5501451/php-x86-how-to-get-filesize-of-2gb-file-without-external-program/5502328#5502328 |
|
33
|
|
|
* @return BigInteger |
|
34
|
|
|
*/ |
|
35
|
|
|
public function getFileSize($path) |
|
36
|
|
|
{ |
|
37
|
|
|
switch($this->os) { |
|
38
|
|
|
case self::OS_WINDOWS: return $this->getFileSizeWindows($path); break; |
|
|
|
|
|
|
39
|
|
|
case self::OS_LINUX: return $this->getFileSizeLinux($path); break; |
|
|
|
|
|
|
40
|
|
|
case self::OS_MAC: return $this->getFileSizeMac($path); break; |
|
|
|
|
|
|
41
|
|
|
default: throw new Exception("OS not detected"); |
|
|
|
|
|
|
42
|
|
|
} |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* Convert string into integer |
|
47
|
|
|
* Must be precise number, otherwise you will see and exception. |
|
48
|
|
|
* |
|
49
|
|
|
* @param $valueAsString |
|
50
|
|
|
* @return BigInteger |
|
51
|
|
|
* @throws Exception |
|
52
|
|
|
*/ |
|
53
|
|
|
private function convertToInteger($valueAsString) { |
|
54
|
|
|
if(!is_string($valueAsString)) { |
|
55
|
|
|
throw new Exception("Cannot convert to integer. Expected string, but got " . gettype($valueAsString). "."); |
|
56
|
|
|
} |
|
57
|
|
|
$trimmedInput = trim($valueAsString); |
|
58
|
|
|
|
|
59
|
|
|
try { |
|
60
|
|
|
return BigInteger::of($trimmedInput); |
|
61
|
|
|
|
|
62
|
|
|
} catch (ArithmeticException $e) { |
|
63
|
|
|
throw new Exception("Returned value cannot be converted to an integer.",0, $e); |
|
64
|
|
|
} |
|
65
|
|
|
|
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
|
|
private function getFileSizeWindows($path) |
|
69
|
|
|
{ |
|
70
|
|
|
$escapedPath = escapeshellarg($path); |
|
71
|
|
|
return $this->convertToInteger( |
|
72
|
|
|
exec("for %F in ($escapedPath) do @echo %~zF") |
|
73
|
|
|
); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
private function getFileSizeLinux($path) |
|
77
|
|
|
{ |
|
78
|
|
|
$escapedPath = escapeshellarg($path); |
|
79
|
|
|
return $this->convertToInteger( |
|
80
|
|
|
exec("stat -Lc%s $escapedPath") |
|
81
|
|
|
); |
|
82
|
|
|
} |
|
83
|
|
|
|
|
84
|
|
|
private function getFileSizeMac($path) |
|
85
|
|
|
{ |
|
86
|
|
|
$escapedPath = escapeshellarg($path); |
|
87
|
|
|
return $this->convertToInteger( |
|
88
|
|
|
exec("stat -f%z $escapedPath") |
|
89
|
|
|
); |
|
90
|
|
|
} |
|
91
|
|
|
} |
The break statement is not necessary if it is preceded for example by a return statement:
If you would like to keep this construct to be consistent with other case statements, you can safely mark this issue as a false-positive.