-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAutoLoader.php
85 lines (81 loc) · 2.35 KB
/
AutoLoader.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
<?php
#
# This file is part of SwooleGateway.
#
# Licensed under The MIT License
# For full copyright and license information, please see the MIT-LICENSE.txt
# Redistributions of files must retain the above copyright notice.
#
# @author mingming<[email protected]>
# @copyright mingming<[email protected]>
# @link xxxx
# @license http://www.opensource.org/licenses/mit-license.php MIT License
#
namespace SwooleGateway;
/**
*
*/
class AutoLoader
{
/**
* Autoload root path.
*
* @var string
*/
protected static $_autoloadRootPath = '';
/**
* Set autoload root path.
*
* @param string $root_path
* @return void
*/
public static function setRootPath($root_path)
{
self::$_autoloadRootPath = $root_path;
}
/**
* Load files by namespace.
* 此处自动加载添加了src目录
*
* @param string $name
* @return boolean
*/
public static function loadByNamespace($name)
{
$class_path = str_replace('\\', DIRECTORY_SEPARATOR, $name);
if(strpos($name, 'SwooleGateway\\') === 0)
{
$class_file = __DIR__ . DIRECTORY_SEPARATOR . 'src' . substr($class_path, strlen('SwooleGateway')) . '.php';
}
else if(strpos($name, 'Logic\\') === 0)
{
$class_file = __DIR__ . DIRECTORY_SEPARATOR . 'logic' . substr($class_path, strlen('Logic')) . '.php';
}
else if(strpos($name, 'GPBMetadata\\') === 0)
{
//此处是为了处理Protobuf协议的
$class_file = __DIR__ . DIRECTORY_SEPARATOR . 'logic' . DIRECTORY_SEPARATOR . 'Protocol' . DIRECTORY_SEPARATOR . $class_path . '.php';
}
else
{
if(self::$_autoloadRootPath)
{
$class_file = self::$_autoloadRootPath . DIRECTORY_SEPARATOR . $class_path . '.php';
}
if(empty($class_file) || !is_file($class_file))
{
$class_file = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . "$class_path.php";
}
}
if(is_file($class_file))
{
require_once($class_file);
if(class_exists($name, false))
{
return true;
}
}
return false;
}
}
spl_autoload_register('\SwooleGateway\Autoloader::loadByNamespace');