-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathsfAutoload.class.php
178 lines (148 loc) · 4.52 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
<?php
/*
* This file is part of the symfony package.
* (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* @deprecated
*/
class sfAutoload
{
protected static $freshCache = false;
protected static $instance;
protected $overriden = [];
protected $classes = [];
protected function __construct()
{
}
/**
* @deprecated
*/
public static function getInstance()
{
if (!isset(self::$instance)) {
self::$instance = new sfAutoload();
}
return self::$instance;
}
/**
* @deprecated
*/
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())));
}
}
/**
* @deprecated
*/
public static function unregister()
{
spl_autoload_unregister([self::getInstance(), 'autoload']);
}
/**
* @deprecated
*/
public function setClassPath($class, $path)
{
$class = strtolower($class);
$this->overriden[$class] = $path;
$this->classes[$class] = $path;
}
/**
* @deprecated
*/
public function getClassPath($class)
{
$class = strtolower($class);
return isset($this->classes[$class]) ? $this->classes[$class] : null;
}
/**
* @deprecated
*/
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;
}
/**
* @deprecated
*/
public function autoload($class)
{
// load the list of autoload classes
if (!$this->classes) {
self::reloadClasses();
}
return self::loadClass($class);
}
/**
* @deprecated
*/
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;
}
}