Core.class.php
4.06 KB
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
<?php
class Util_Common_Core
{
const WHICHFILE = 'release'; // local, test, release
/**
* 获取配置文件所在目录
*
* @return string
*/
private static function getConfigPath()
{
return defined('SITE_CONFIG_PATH') ? SITE_CONFIG_PATH : '';
}
/**
* 返回分词配置文件位置
*
* @return string
*/
public static function loadDw()
{
return self::getConfigPath() . '/dw.' . self::_checkip() . 'config.php';
}
/**
* 返回邮件服务器配置文件位置
*
* @return string
*/
public static function loadMail()
{
return self::getConfigPath() . '/mail.' . self::_checkip() . 'config.php';
}
/**
* 返回分搜索引擎配置文件
*
* @return string
*/
public static function loadSe()
{
return self::getConfigPath() . '/search.' . self::_checkip() . 'config.php';
}
/**
* 返回缓存配置文件位置
*
* @return string
*/
public static function loadCacheMem()
{
return self::getConfigPath() . '/cache.' . self::_checkip() . 'config.php';
}
/**
* 返回数据库配置文件位置
*
* @return string
*/
public static function loadDbMysql()
{
$dbConfig = array('local'=> 'local.', 'test'=> 'test.','release'=> 'rls.','releasebg'=> 'rlsbg.');
$dbEnv = strtolower(defined('RELEASE_DB_ENV') ? RELEASE_DB_ENV :'');
$checkip = isset($dbConfig[$dbEnv]) ? $dbConfig[$dbEnv] : self::_checkip();
return self::getConfigPath() . '/db.' . $checkip . 'config.php';
}
/**
* 返回Mogile文件系统配置文件位置
*
* @return string
*/
public static function loadFileMogile()
{
return self::getConfigPath() . '/file.' . self::_checkip() . 'config.php';
}
/**
* 返回Ext, Nfs文件系统配置文件位置
*
* @return string
*/
public static function loadFileExt()
{
return self::getConfigPath() . '/file.' . self::_checkip() . 'config.php';
}
/**
* 返回Gearman系统配置文件位置
*
* @return string
*/
public static function loadGearman()
{
return self::getConfigPath() . '/gearman.' . self::_checkip() . 'config.php';
}
/**
* 返回分词系统配置文件位置
*
* @return string
*/
public static function loadWs()
{
return self::getConfigPath() . '/ws.' . self::_checkip() . 'config.php';
}
/**
* 检查当前环境
*
* @return string
*/
private static function _checkip()
{
$env = defined('RELEASE_ENV') ? RELEASE_ENV : self::WHICHFILE;
switch (strtolower($env))
{
case 'test':
return 'test.';
break;
case 'local':
return 'local.';
break;
case 'release':
return 'rls.';
break;
default:
return '';
}
}
/**
* 获取服务器配置文件
*
* @param String $config
* @param String $section
*/
public static function loadConfig($configfn, $section)
{
$file = new Util_Common_Io_File($configfn);
$lastModified = $file->lastModified();
$configFile = "file://" . $configfn;
if (Util_Cache_Adapter_Apc::isEnabled())
{
$apcFileObj = Util_Cache_Adapter_Apc::get($configFile);
if ($apcFileObj['config'] != null && $lastModified == $apcFileObj['lastModified'])
{
return $apcFileObj['config'];
}
}
$svrobj = new Util_Common_Config_Ini($configfn, $section);
if (Util_Cache_Adapter_Apc::isEnabled())
{
$val = array(
'config' => $svrobj,
'lastModified' => $lastModified
);
Util_Cache_Adapter_Apc::set($configFile, new ArrayObject($val));
}
return $svrobj;
}
}