-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathsfAutoload.class.php
206 lines (176 loc) · 5.64 KB
/
sfAutoload.class.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
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* sfAutoload class.
*
* This class is a singleton as PHP seems to be unable to register 2 autoloaders that are instances
* of the same class (why?).
*
* @author Fabien Potencier <[email protected]>
*/
class sfAutoload
{
protected static $freshCache = false;
protected static $instance;
protected $overriden = [];
protected $classes = [];
protected function __construct()
{
}
/**
* Retrieves the singleton instance of this class.
*
* @return sfAutoload a sfAutoload implementation instance
*/
public static function getInstance()
{
if (!isset(self::$instance)) {
self::$instance = new sfAutoload();
}
return self::$instance;
}
/**
* Register sfAutoload in spl autoloader.
*
* @throws sfException
*/
public static function register()
{
ini_set('unserialize_callback_func', 'spl_autoload_call');
if (false === spl_autoload_register([self::getInstance(), 'autoload'])) {
throw new sfException(sprintf('Unable to register %s::autoload as an autoloading method.', get_class(self::getInstance())));
}
}
/**
* Unregister sfAutoload from spl autoloader.
*/
public static function unregister()
{
spl_autoload_unregister([self::getInstance(), 'autoload']);
}
/**
* Sets the path for a particular class.
*
* @param string $class A PHP class name
* @param string $path An absolute path
*/
public function setClassPath($class, $path)
{
$class = strtolower($class);
$this->overriden[$class] = $path;
$this->classes[$class] = $path;
}
/**
* Returns the path where a particular class can be found.
*
* @param string $class A PHP class name
*
* @return string|null An absolute path
*/
public function getClassPath($class)
{
$class = strtolower($class);
return $this->classes[$class] ?? null;
}
/**
* Reloads the autoloader.
*
* @param bool $force Whether to force a reload
*
* @return bool True if the reload was successful, otherwise false
*/
public function reloadClasses($force = false)
{
// only (re)load the autoloading cache once per request
if (self::$freshCache && !$force) {
return false;
}
$configuration = sfProjectConfiguration::getActive();
if (!$configuration || !$configuration instanceof sfApplicationConfiguration) {
return false;
}
self::$freshCache = true;
if (is_file($configuration->getConfigCache()->getCacheName('config/autoload.yml'))) {
self::$freshCache = false;
if ($force) {
if (file_exists($configuration->getConfigCache()->getCacheName('config/autoload.yml'))) {
unlink($configuration->getConfigCache()->getCacheName('config/autoload.yml'));
}
}
}
$file = $configuration->getConfigCache()->checkConfig('config/autoload.yml');
if ($force && defined('HHVM_VERSION')) {
// workaround for https://github.com/facebook/hhvm/issues/1447
$this->classes = eval(str_replace('<?php', '', file_get_contents($file)));
} else {
$this->classes = include $file;
}
foreach ($this->overriden as $class => $path) {
$this->classes[$class] = $path;
}
return true;
}
/**
* Handles autoloading of classes that have been specified in autoload.yml.
*
* @param string $class a class name
*
* @return bool Returns true if the class has been loaded
*/
public function autoload($class)
{
// load the list of autoload classes
if (!$this->classes) {
self::reloadClasses();
}
return self::loadClass($class);
}
/**
* Tries to load a class that has been specified in autoload.yml.
*
* @param string $class a class name
*
* @return bool Returns true if the class has been loaded
*/
public function loadClass($class)
{
$class = strtolower($class);
// class already exists
if (class_exists($class, false) || interface_exists($class, false) || (function_exists('trait_exists') && trait_exists($class, false))) {
return true;
}
// we have a class path, let's include it
if (isset($this->classes[$class])) {
try {
require $this->classes[$class];
} catch (sfException $e) {
$e->printStackTrace();
} catch (Exception $e) {
sfException::createFromException($e)->printStackTrace();
}
return true;
}
// see if the file exists in the current module lib directory
if (
sfContext::hasInstance()
&& ($module = sfContext::getInstance()->getModuleName())
&& isset($this->classes[$module.'/'.$class])
) {
try {
require $this->classes[$module.'/'.$class];
} catch (sfException $e) {
$e->printStackTrace();
} catch (Exception $e) {
sfException::createFromException($e)->printStackTrace();
}
return true;
}
return false;
}
}