-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClassLoader.php
222 lines (200 loc) · 7.54 KB
/
ClassLoader.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
<?php
namespace WebStream\ClassLoader;
use RecursiveIteratorIterator;
use WebStream\DI\Injector;
use WebStream\IO\File;
use WebStream\IO\FileInputStream;
/**
* クラスローダ
* @author Ryuichi TANAKA.
* @since 2013/09/02
* @version 0.7
*/
class ClassLoader
{
use Injector;
/**
* @var Psr\Log\LoggerInterface
*/
private $logger;
/**
* @var string アプリケーションルートパス
*/
private string $applicationRoot;
/**
* constructor
* @param string アプリケーションルートパス
*/
public function __construct(string $applicationRoot)
{
$this->logger = new class () { public function __call($name, $args) {} };
$this->applicationRoot = $applicationRoot;
}
/**
* クラスをロードする
* @param mixed クラスまたはクラスリスト
* @return array<string> ロード済みクラスリスト
*/
public function load($target): array
{
return is_array($target) ? $this->loadClassList($target) : $this->loadClass($target);
}
/**
* ファイルをインポートする
* @param string ファイルパス
* @param callable|null $filter フィルタリング無名関数 trueを返すとインポート
* @return bool インポート結果
* @throws \WebStream\Exception\Extend\IOException
*/
public function import($filepath, callable $filter = null): bool
{
$file = new File($this->applicationRoot . "/" . $filepath);
if ($file->isFile()) {
if ($file->getFileExtension() === 'php') {
if ($filter === null || (is_callable($filter) && $filter($file->getFilePath()) === true)) {
include_once $file->getFilePath();
$this->logger->debug($file->getAbsoluteFilePath() . " import success.");
}
}
return true;
}
return false;
}
/**
* 指定ディレクトリのファイルをインポートする
* @param string ディレクトリパス
* @param callable|null $filter フィルタリング無名関数 trueを返すとインポート
* @return bool インポート結果
* @throws \WebStream\Exception\Extend\IOException
*/
public function importAll($dirPath, callable $filter = null): bool
{
$dir = new File($this->applicationRoot . "/" . $dirPath);
$isSuccess = true;
if ($dir->isDirectory()) {
$iterator = $this->getFileSearchIterator($dir->getAbsoluteFilePath());
foreach ($iterator as $filepath => $fileObject) {
if (preg_match("/(?:\/\.|\/\.\.|\.DS_Store)$/", $filepath)) {
continue;
}
$file = new File($filepath);
if ($file->isFile()) {
if ($file->getFileExtension() === 'php') {
if ($filter === null || (is_callable($filter) && $filter($file->getFilePath()) === true)) {
include_once $file->getFilePath();
$this->logger->debug($file->getAbsoluteFilePath() . " import success.");
}
}
} else {
$this->logger->warn($filepath . " import failure.");
$isSuccess = false;
}
}
}
return $isSuccess;
}
/**
* 名前空間リストを返却する
* @param string ファイル名
* @return array<string> 名前空間リスト
* @throws \WebStream\Exception\Extend\IOException
* @throws \WebStream\Exception\Extend\InvalidArgumentException
*/
public function getNamespaces($fileName): array
{
$dir = new File($this->applicationRoot);
$namespaces = [];
if ($dir->isDirectory()) {
$iterator = $this->getFileSearchIterator($dir->getAbsoluteFilePath());
foreach ($iterator as $filepath => $fileObject) {
if (preg_match("/(?:\/\.|\/\.\.|\.DS_Store)$/", $filepath)) {
continue;
}
$file = new File($filepath);
if ($file->isFile() && $file->getFileName() === $fileName) {
$fis = new FileInputStream($file);
while (($line = $fis->readLine()) !== null) {
if (preg_match("/^namespace\s(.*);$/", $line, $matches)) {
$namespaces[] = $matches[1];
}
}
$fis->close();
}
}
}
return $namespaces;
}
/**
* ロード可能なクラスを返却する
* @param string クラス名(フルパス指定の場合はクラスパス)
* @return array<string> ロード可能クラス
* @throws \WebStream\Exception\Extend\IOException
*/
private function loadClass(string $className): array
{
$rootDir = $this->applicationRoot;
$logger = $this->logger;
// 名前空間セパレータをパスセパレータに置換
if (DIRECTORY_SEPARATOR === '/') {
$className = str_replace("\\", DIRECTORY_SEPARATOR, $className);
}
$search = function ($dirPath, $searchFilePath) use ($logger) {
$includeList = [];
$dir = new File($dirPath);
if (!$dir->isDirectory()) {
$logger->error("Invalid search directory path: " . $dir->getFilePath());
return $includeList;
}
$iterator = $this->getFileSearchIterator($dir->getAbsoluteFilePath());
foreach ($iterator as $filepath => $fileObject) {
if (!$fileObject->isFile()) {
continue;
}
if (strpos($filepath, $searchFilePath) !== false) {
$file = new File($filepath);
$absoluteFilePath = $file->getAbsoluteFilePath();
include_once $absoluteFilePath;
$includeList[] = $absoluteFilePath;
$logger->debug($absoluteFilePath . " load success. (search from " . $dir->getAbsoluteFilePath() . ")");
}
}
return $includeList;
};
return $search("${rootDir}", DIRECTORY_SEPARATOR . "${className}.php");
}
/**
* ロード可能なクラスを複数返却する
* @param array クラス名
* @return array<string> ロード済みクラスリスト
* @throws \WebStream\Exception\Extend\IOException
*/
private function loadClassList(array $classList): array
{
$includedList = [];
foreach ($classList as $className) {
$result = $this->loadClass($className);
if (is_array($result)) {
$includedList = array_merge($includedList, $result);
}
}
return $includedList;
}
/**
* ファイル検索イテレータを返却する
* @param string ディレクトリパス
* @return RecursiveIteratorIterator イテレータ
*/
private function getFileSearchIterator(string $path): \RecursiveIteratorIterator
{
$iterator = [];
$file = new File($path);
if ($file->isDirectory()) {
$iterator = new \RecursiveIteratorIterator(
new \RecursiveDirectoryIterator($path),
\RecursiveIteratorIterator::LEAVES_ONLY,
\RecursiveIteratorIterator::CATCH_GET_CHILD // for Permission deny
);
}
return $iterator;
}
}