|
3 | 3 |
|
4 | 4 | if(!class_exists("\\Rackem\Server"))
|
5 | 5 | {
|
6 |
| - try { |
7 |
| - require_once dirname(__DIR__).'/rackem.php'; |
8 |
| - }catch(Exception $e) |
9 |
| - { |
10 |
| - echo "Failed to load Rack'em library. Is rackem installed in the proper location?\n"; |
11 |
| - } |
| 6 | + try { |
| 7 | + require_once dirname(__DIR__).'/rackem.php'; |
| 8 | + } catch(Exception $e) { |
| 9 | + echo "Failed to load Rack'em library. Is rackem installed in the proper location?\n"; |
| 10 | + } |
12 | 11 | }
|
13 | 12 |
|
14 | 13 | if(function_exists("date_default_timezone_set"))
|
15 |
| - date_default_timezone_set('UTC'); |
| 14 | + date_default_timezone_set('UTC'); |
16 | 15 |
|
17 | 16 | $argv = $GLOBALS['argv'];
|
18 | 17 | array_shift($argv);
|
19 | 18 |
|
20 | 19 | $flags = array('h','basic','v','version');
|
21 | 20 | $args = array();
|
22 | 21 | $opts = array();
|
23 |
| -while(list($k,$arg) = each($argv)) |
24 |
| -{ |
25 |
| - $opt_regex = '/-{1,2}(\w*)(=.*)?/'; |
26 |
| - if(preg_match($opt_regex,$arg,$m) !== 1) |
27 |
| - { |
28 |
| - $args[] = $arg; |
29 |
| - continue; |
30 |
| - } |
31 |
| - $opts[$m[1]] = true; |
32 |
| - if(!empty($m[2])) |
33 |
| - { |
34 |
| - $opts[$m[1]] = ltrim($m[2],'='); |
35 |
| - continue; |
36 |
| - } |
37 |
| - if(in_array($m[1],$flags)) continue; |
38 |
| - if(($next = current($argv)) === false) continue; |
39 |
| - if(preg_match($opt_regex,$next) === 1) continue; |
40 |
| - $opts[$m[1]] = $next; |
41 |
| - each($argv); |
| 22 | +while( list($k,$arg) = each($argv) ) { |
| 23 | + $opt_regex = '/-{1,2}(\w*)(=.*)?/'; |
| 24 | + if(preg_match($opt_regex,$arg,$m) !== 1) { |
| 25 | + $args[] = $arg; |
| 26 | + continue; |
| 27 | + } |
| 28 | + $opts[$m[1]] = true; |
| 29 | + if(!empty($m[2])) { |
| 30 | + $opts[$m[1]] = ltrim($m[2],'='); |
| 31 | + continue; |
| 32 | + } |
| 33 | + if(in_array($m[1],$flags)) continue; |
| 34 | + if(($next = current($argv)) === false) continue; |
| 35 | + if(preg_match($opt_regex,$next) === 1) continue; |
| 36 | + $opts[$m[1]] = $next; |
| 37 | + each($argv); |
42 | 38 | }
|
43 | 39 |
|
44 |
| -if(isset($opts['h'])) |
45 |
| -{ |
46 |
| - $server = new \Rackem\Server(); |
47 |
| - $server->help(); |
48 |
| - exit(0); |
| 40 | + |
| 41 | +if(isset($opts['h'])) { |
| 42 | + $server = new \Rackem\Server(); |
| 43 | + $server->help(); |
| 44 | + exit(0); |
49 | 45 | }
|
50 | 46 |
|
51 |
| -if(isset($opts['v']) || isset($opts['version'])) |
52 |
| -{ |
53 |
| - echo "Rack'em version ".implode(".", \Rackem::version())."\n"; |
54 |
| - exit(0); |
| 47 | +if(isset($opts['v']) || isset($opts['version'])) { |
| 48 | + echo "Rack'em version ".implode(".", \Rackem::version())."\n"; |
| 49 | + exit(0); |
55 | 50 | }
|
56 | 51 |
|
57 | 52 | $app = count($argv) > 0? $argv[0] : 'config.php';
|
58 | 53 |
|
59 |
| -if(isset($opts['basic'])) $app = dirname(__DIR__).'/script/basic.php'; |
60 |
| - |
61 |
| -if(!file_exists($app)) |
62 |
| -{ |
63 |
| - echo "configuration {$app} not found\n"; |
64 |
| - exit(1); |
| 54 | +if(isset($opts['basic'])) { |
| 55 | + $app = "\Rackem::run(\"\Rackem\BasicWebServer\")"; |
| 56 | +}elseif(!file_exists($app)) { |
| 57 | + echo "configuration {$app} not found\n"; |
| 58 | + exit(1); |
65 | 59 | }
|
66 | 60 |
|
67 | 61 | $host = isset($opts['host'])? $opts['host'] : '0.0.0.0';
|
|
0 commit comments