-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMigratorUtil.php
75 lines (64 loc) · 2.08 KB
/
MigratorUtil.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
<?php
/*
* This file is part of the PHPCR Migrations package
*
* (c) Daniel Leech <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPCR\Migrations;
class MigratorUtil
{
/**
* Return the class name from a file.
*
* Taken from http://stackoverflow.com/questions/7153000/get-class-name-from-file
*
* @param string $file
*
* @return string
*/
public static function getClassNameFromFile($file)
{
$fp = fopen($file, 'rb');
$class = $namespace = $buffer = '';
$i = 0;
while (!$class) {
if (feof($fp)) {
break;
}
// Read entire lines to prevent keyword truncation
for ($line = 0; $line <= 20; ++$line) {
$buffer .= fgets($fp);
}
$tokens = @token_get_all($buffer);
$tokensCount = count($tokens);
if (false === strpos($buffer, '{')) {
continue;
}
for (; $i < $tokensCount; ++$i) {
if (T_NAMESPACE === $tokens[$i][0]) {
for ($j = $i + 1; $j < $tokensCount; ++$j) {
if (T_STRING === $tokens[$j][0] || (\defined('T_NAME_QUALIFIED') && T_NAME_QUALIFIED === $tokens[$j][0])) {
$namespace .= '\\'.$tokens[$j][1];
} elseif ('{' === $tokens[$j] || ';' === $tokens[$j]) {
break;
}
}
}
if (T_CLASS === $tokens[$i][0]) {
for ($j = $i + 1; $j < $tokensCount; ++$j) {
if ('{' === $tokens[$j]) {
$class = $tokens[$i + 2][1];
}
}
}
}
}
if (!$class) {
throw new \RuntimeException('Could not determine class for migration');
}
return $namespace.'\\'.$class;
}
}