Server.php
10 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
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<?php
/**
* Created by PhpStorm.
* User: Zip
* Date: 14/12/7
* Time: 上午12:11
*/
namespace Hood\Core;
use Hood\Debug\DebugException;
class Server extends Root
{
/**
* 服务器随机选择模式
* @var Integer
*/
const SERVER_SELECT_MODEL_RAND = 1;
/**
* 服务器选择静态
* @var Integer
*/
const SERVER_SELECT_MODEL_STATIC = 2;
/**
* @var string
*/
protected $_sectionSeparator = ':';
/**
* 字符分割
* @var string
*/
protected $_nestSeparator = '.';
/**
* 服务器选择模式
* @var int
*/
private $serverSelectModel = 1;
/**
* ini 数组
* @var array
*/
private $iniArray = array();
/**
* 检查服务状态
* @var bool
*/
private $checkServerStatus = true;
public function __construct($filename)
{
$this->iniArray = $this->_loadIniFile($filename);
}
/**
* 设置服务器选择模式
* @param $model
* @return $this
*/
public function setSelectModel($model)
{
$this->serverSelectModel = $model;
return $this;
}
/**
* 获取服务器地址
* @param $section
* @param $node
* @param int $model
* @return array|mixed
* @throws DebugException
*/
public function getServerConfig($section, $node = null)
{
$sectionArray = $this->_processSection($section);
if ($node == null) {
return $sectionArray;
} elseif (isset($sectionArray[$node])) {
return $sectionArray[$node];
}
return array();
}
/**
* 选择服务器
* @param $servers
* @param $model
* @return array|mixed
* @throws DebugException
*/
public function getServer($servers, $model = 1)
{
$serverArray = $this->_parseServer($servers);
switch ($model) {
case 1:
if (count($serverArray) <= 1) {
$servers = $serverArray;
} else {
$servers = $this->_randServer($serverArray);
}
break;
case 2:
$servers = $serverArray;
break;
default:
throw new DebugException('Server select model not ' . $model);
}
return $servers;
}
/**
* 获取服务器Map
* @param $section
* @param $node
* @param int $model
* @return array
* @throws DebugException
*/
public function getServerMap($servers, $model = 1)
{
$_servers = $this->getServer($servers, $model);
if (empty($_servers)) {
return array();
}
$_serversMap = array();
if ($model == 1 && count($_servers) == 1) {
$_serversMap = $this->_processHost($_servers[0]);
} elseif ($model == 2) {
foreach ($_servers as $key => $host) {
$_serversMap[] = $this->_processHost($host);
}
}
return $_serversMap;
}
/**
* 获取所有配置Map
* @param $section
* @param $node
* @return array
*/
public function getSectionConfig($section, $node)
{
$servers = $this->getServerConfig($section, $node);
$_serversMap = array();
foreach ($servers as $key => $host) {
$_serversMap[] = $this->_processHost($host);
}
return $_serversMap;
}
/**
* 随机&权重随机
* @param array $server
* @return mixed
*/
private function _randServer(array $server)
{
if (substr_count($server[0], ':') == 2) {
$_domain = array();
foreach ($server as $key => $domain) {
$_domain[] = $this->_processHost($domain);
}
$_server = $this->_countWeight($_domain);
$_server = $_server['host'] . ':' . $_server['port'] . ':' . $_server['weight'];
} else {
$_server = $server[array_rand($server)];
}
return $_server;
}
/**
* 权重计算
* @param array $data
* @return mixed
*/
private function _countWeight(array $data)
{
$weight = 0;
$tempArray = array();
foreach ($data as $v) {
$weight += (int)$v['weight'];
for ($i = 0; $i < $v['weight']; $i++) {
$tempArray[] = $v;//放大数组
}
}
$int = mt_rand(0, $weight - 1);//获取一个随机数
return $tempArray[$int];
}
/**
* 解析host
* @param $domain
* @return array
*/
private function _processHost($domain)
{
$_hostMap = array();
$domainArray = explode(':', $domain);
switch (count($domainArray)) {
case 2 :
list($host, $port) = $domainArray;
$_hostMap = array(
'host' => (string)$host,
'port' => (int)intval($port)
);
break;
case 3 :
list($host, $port, $weight) = $domainArray;
$_hostMap = array(
'host' => (string)$host,
'port' => (int)intval($port),
'weight' => (int)intval($weight)
);
break;
}
return $_hostMap;
}
/**
* 设置检测服务状态
* @param $check
* @return $this
*/
public function setCheckServer($check)
{
$this->checkServerStatus = $check;
return $this;
}
/**
* 检查服务
* @param array $servers
* @return array
*/
public function checkServer(array $servers)
{
$_servers = array();
foreach ($servers as $key => $val) {
$status = $this->ping($val['host'], $val['port']);
if ($status > 0) {
$_servers[] = $val;
}
}
return $_servers;
}
/**
* 解析Server
* @param $ips
* @return array|mixed
*/
protected function _parseServer($serverString)
{
return explode(',', str_replace(array(
' ',
"\n"
), '', $serverString));
}
public function getSection($section)
{
return $this->_processSection($section);
}
public function get($name, $section = null)
{
return $this->_processSection($section);
}
/**
* 加载ini
* @param $filename
* @return array
* @throws DebugException
*/
private function _loadIniFile($filename)
{
$loaded = $this->_parseIniFile($filename);
$iniArray = array();
foreach ($loaded as $key => $data) {
$pieces = explode($this->_sectionSeparator, $key);
$thisSection = trim($pieces[0]);
switch (count($pieces)) {
case 1:
$iniArray[$thisSection] = $data;
break;
case 2:
$extendedSection = trim($pieces[1]);
$iniArray[$thisSection] = array_merge(array(';extends' => $extendedSection), $data);
break;
default:
throw new DebugException("Section '$thisSection' may not extend multiple sections in $filename");
}
}
return $iniArray;
}
/**
* 解析ini
* @param $filename
* @return array
*/
private function _parseIniFile($filename)
{
if (!file_exists($filename)) {
throw new DebugException($filename . ' Not Find,');
}
$iniArray = parse_ini_file($filename, true);
if ($iniArray == false) {
throw new DebugException($filename . ' Not Array.');
}
return $iniArray;
}
/**
* 解析节点
* @param $section
* @return array
* @throws DebugException
*/
protected function _processSection($section)
{
$config = array();
$thisSection = array();
if (isset($this->iniArray[$section])) {
$thisSection = $this->iniArray[$section];
}
foreach ($thisSection as $key => $value) {
if (strtolower($key) == ';extends') {
if (isset($this->iniArray[$value])) {
$config = $this->iniArray[$value] + $config;
} else {
throw new DebugException("Parent section '$section' cannot be found");
}
} else {
$config = $this->_processKey($config, $key, $value);
}
}
return $config;
}
/**
* 解析键值
* @param array $config
* @param $key
* @param string $val
* @return array
*/
protected function _processKey(array $config, $key, $val = '')
{
if (strpos($key, $this->_nestSeparator) !== false) {
$pieces = explode($this->_nestSeparator, $key, 2);
if (strlen($pieces[0]) && strlen($pieces[1])) {
if (!isset($config[$pieces[0]])) {
if ($pieces[0] === '0' && !empty($config)) {
$config = array($pieces[0] => $config);
} else {
$config[$pieces[0]] = array();
}
}
$config[$pieces[0]] = $this->_processKey($config[$pieces[0]], $pieces[1], $val);
}
} else {
$config[$key] = $val;
}
return $config;
}
/**
* ping
* @param $domain
* @param $port
* @param int $timeout
* @return float|int|mixed
*/
public function ping($domain, $port, $timeout = 3)
{
$starttime = microtime(true);
$file = @fsockopen($domain, $port, $errno, $errstr, $timeout);
$stoptime = microtime(true);
$status = -1;
if ($file) {
stream_set_blocking($file, false);//非堵塞
stream_set_timeout($file, 3);
fclose($file);
$status = ($stoptime - $starttime) * 1000;
$status = floor($status);
}
return $status;
}
}