-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp_parser.php
134 lines (117 loc) · 4.95 KB
/
php_parser.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
<?php
require 'vendor/autoload.php';
use PhpParser\ParserFactory;
use PhpParser\NodeTraverser;
use PhpParser\NodeVisitorAbstract;
use PhpParser\Node;
use PhpParser\PrettyPrinter;
class DependencyVisitor extends NodeVisitorAbstract {
public $dependencies = [];
public $namespace = null;
public $classes = [];
public $functions = [];
private $prettyPrinter;
private $currentClass = null;
public function __construct() {
$this->prettyPrinter = new PrettyPrinter\Standard();
}
public function enterNode(Node $node) {
try {
// Сбор зависимостей (use statements)
if ($node instanceof Node\Stmt\Use_) {
foreach ($node->uses as $use) {
$this->dependencies[] = $use->name->toString();
}
}
// Сбор пространства имен
if ($node instanceof Node\Stmt\Namespace_) {
$this->namespace = $node->name ? $node->name->toString() : null;
}
// Сбор классов
if ($node instanceof Node\Stmt\Class_) {
// Сохраняем текущий класс
$this->currentClass = [
'name' => $node->name->toString(),
'code' => $this->prettyPrinter->prettyPrint([$node]),
'methods' => [],
'properties' => []
];
}
// Сбор свойств текущего класса
if ($this->currentClass && $node instanceof Node\Stmt\Property) {
foreach ($node->props as $prop) {
$this->currentClass['properties'][] = [
'name' => $prop->name->toString(),
'type' => $node->type ? $node->type->toString() : null,
'modifiers' => $this->getModifiers($node),
'default_value' => $prop->default ? $this->prettyPrinter->prettyPrintExpr($prop->default) : null
];
}
}
// Сбор методов текущего класса
if ($this->currentClass && $node instanceof Node\Stmt\ClassMethod) {
$this->currentClass['methods'][] = [
'name' => $node->name->toString(),
'modifiers' => $this->getModifiers($node),
'code' => $this->prettyPrinter->prettyPrint([$node]),
'start_line' => $node->getStartLine(),
'end_line' => $node->getEndLine()
];
}
// Сбор глобальных функций
if ($node instanceof Node\Stmt\Function_) {
$this->functions[] = [
'name' => $node->name->toString(),
'code' => $this->prettyPrinter->prettyPrint([$node]),
'start_line' => $node->getStartLine(),
'end_line' => $node->getEndLine()
];
}
} catch (Throwable $e) {
error_log("Error processing node: " . $e->getMessage());
error_log("Node type: " . get_class($node));
}
}
public function leaveNode(Node $node) {
// Завершение обработки класса
if ($node instanceof Node\Stmt\Class_) {
$this->classes[] = $this->currentClass;
$this->currentClass = null; // Сброс текущего класса
}
}
private function getModifiers($node) {
$modifiers = [];
if ($node instanceof Node\Stmt\ClassMethod || $node instanceof Node\Stmt\Property) {
if ($node->isPublic()) $modifiers[] = 'public';
if ($node->isProtected()) $modifiers[] = 'protected';
if ($node->isPrivate()) $modifiers[] = 'private';
if ($node->isStatic()) $modifiers[] = 'static';
}
return $modifiers;
}
}
try {
// Получаем путь к анализируемому файлу из аргументов
$file = $argv[1];
$code = file_get_contents($file);
// Создаем парсер
$parserFactory = new ParserFactory();
$parser = $parserFactory->createForHostVersion();
// Парсим исходный код
$stmts = $parser->parse($code);
// Создаем обходчик для анализа AST
$traverser = new NodeTraverser();
$visitor = new DependencyVisitor();
$traverser->addVisitor($visitor);
$traverser->traverse($stmts);
// Вывод результатов в формате JSON
echo json_encode([
'namespace' => $visitor->namespace,
'dependencies' => $visitor->dependencies,
'classes' => $visitor->classes,
'functions' => $visitor->functions
], JSON_PRETTY_PRINT);
} catch (PhpParser\Error $e) {
// Вывод ошибок парсинга
echo json_encode(['error' => $e->getMessage()]);
}