Skip to content

Commit fd94ca3

Browse files
committed
cleaned up server app runner. No longer needs a separate scripts dir.
1 parent 7bb1487 commit fd94ca3

File tree

3 files changed

+37
-47
lines changed

3 files changed

+37
-47
lines changed

bin/rackem

+35-41
Original file line numberDiff line numberDiff line change
@@ -3,65 +3,59 @@
33

44
if(!class_exists("\\Rackem\Server"))
55
{
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+
}
1211
}
1312

1413
if(function_exists("date_default_timezone_set"))
15-
date_default_timezone_set('UTC');
14+
date_default_timezone_set('UTC');
1615

1716
$argv = $GLOBALS['argv'];
1817
array_shift($argv);
1918

2019
$flags = array('h','basic','v','version');
2120
$args = array();
2221
$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);
4238
}
4339

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);
4945
}
5046

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);
5550
}
5651

5752
$app = count($argv) > 0? $argv[0] : 'config.php';
5853

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);
6559
}
6660

6761
$host = isset($opts['host'])? $opts['host'] : '0.0.0.0';

lib/Rackem/Server/Connection.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,12 @@ public function process($app)
152152
$env["HTTP_$env_name"] = is_array($v) ? implode("\n", $v) : $v;
153153
}
154154

155+
$app = file_exists($app)? 'require "'.$app.'";' : 'return '.$app.';';
155156
$dir = dirname(dirname(dirname(__DIR__))).'/rackem.php';
156157
$code = <<<EOT
157158
if (!class_exists("\Rackem\Server")) require_once "$dir";
158159
if(function_exists("date_default_timezone_set")) date_default_timezone_set("UTC");
159-
require "$app";
160+
$app
160161
EOT;
161162

162163
$php = defined("PHP_BINARY") ? PHP_BINARY : PHP_BINDIR."/php";

script/basic.php

-5
This file was deleted.

0 commit comments

Comments
 (0)