-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.php
More file actions
executable file
·428 lines (360 loc) · 8.51 KB
/
Copy pathrun.php
File metadata and controls
executable file
·428 lines (360 loc) · 8.51 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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#!/usr/bin/env -S php -d extension=webkitgtk.so -d extension=pdo_sqlite.so -d short_open_tag=on -d open_basedir='' -n
<?php
chdir(__DIR__);
/**
* Handle instances of php built-in webserver.
*/
class PHPServer
{
/**
* @var string
*/
protected $hostname;
/**
* @var int
*/
protected $port;
/**
* @var resource
*/
protected $process;
/**
* @var int
*/
protected $proccess_id;
/**
* @var array
*/
protected $pipes;
/**
* @var string
*/
protected $router;
/**
* @var string
*/
protected $working_dir;
/**
* @var string
*/
protected $output_log;
/**
* @var string
*/
protected $error_log;
/**
* @var array
*/
protected $descriptors_spec;
/**
* Constructor
*/
public function __construct()
{
$this->router = "";
$this->working_dir = "";
$this->output_log = "";
$this->error_log = "";
$this->descriptors_spec = [
0 => ["pipe", "r"], //STDIN
1 => ["pipe", "w"], //STDOUT
2 => ["pipe", "w"], //STDERR
];
}
/**
* Start a new insctance of the PHP built-in server. If the given
* port is already in use it will increment it to the next one until
* an open port is found.
*
* @param string $hostname
* @param integer $port
* @param string $executable Path to php binary
*
* @return PHPServer
*/
public function start(
string $hostname="localhost",
int $port=8080,
string $executable=PHP_BINARY
): self
{
if($this->isRunning())
$this->stop();
while(@fsockopen($hostname, $port))
{
$port++;
}
$this->hostname = $hostname;
$this->port = $port;
$cwd = $this->working_dir ? "-t {$this->working_dir}" : "";
$this->process = proc_open(
"$executable -S $hostname:$port $cwd {$this->router}",
$this->descriptors_spec,
$this->pipes
);
// Set reading from the streams as non-blocking
stream_set_blocking($this->pipes[0], 0);
if($this->descriptors_spec[1][0] == "pipe")
{
stream_set_blocking($this->pipes[1], 0);
}
if($this->descriptors_spec[2][0] == "pipe")
{
stream_set_blocking($this->pipes[2], 0);
}
$this->proccess_id = $this->getStatus()["pid"];
return $this;
}
/**
* Terminate the running instance of the web server.
*
* @return PHPServer
*/
public function stop(): self
{
if(is_resource($this->pipes[0]))
{
fclose($this->pipes[0]);
}
if(is_resource($this->pipes[1]))
{
fclose($this->pipes[1]);
}
if(is_resource($this->pipes[2]))
{
fclose($this->pipes[2]);
}
if(is_resource($this->process))
{
proc_terminate($this->process);
}
return $this;
}
/**
* Check if the webserver is currently running.
*
* @return boolean
*/
public function isRunning(): bool
{
if($data = $this->getStatus())
{
return $data["running"];
}
return false;
}
/**
* Get the status of the instance as returned by proc_get_status().
*
* @return array
*/
public function getStatus(): array
{
if(!is_resource($this->process))
return [];
// Flush buffers to prevent blocking
if(is_resource($this->pipes[0]))
{
stream_get_contents($this->pipes[0]);
}
if(is_resource($this->pipes[1]))
{
stream_get_contents($this->pipes[1]);
}
if(is_resource($this->pipes[2]))
{
stream_get_contents($this->pipes[2]);
}
if($status = proc_get_status($this->process))
{
return $status;
}
return [];
}
/**
* Hostname used to listen for connections.
*
* @return string
*/
public function getHostname(): string
{
return $this->hostname;
}
/**
* Port used to listen for connections. Use this after calling start().
*
* @return string
*/
public function getPort(): int
{
return $this->port;
}
/**
* Get the std output of the instance from the pipe or log file.
*
* @return string
*/
public function getOutput(): string
{
if($this->output_log)
return file_get_contents($this->output_log);
return $this->readPipe(1);
}
/**
* Get the std errors of the instance from the pipes or log file.
*
* @return string
*/
public function getErrors(): string
{
if($this->error_log)
return file_get_contents($this->error_log);
return $this->readPipe(2);
}
/**
* Get the instance process id.
*
* @return integer
*/
public function getPID(): int
{
return $this->proccess_id;
}
/**
* Set the php router file for the server.
*
* @param string $file
*
* @return PHPServer
*/
public function setRouter(string $file): self
{
if(!file_exists($file))
{
throw new Exception("Router file does not exists.");
}
$this->router = $file;
return $this;
}
/**
* Set the working directory path for the server.
*
* @param string $path
*
* @return PHPServer
*/
public function setWorkingDir(string $path): self
{
if(!is_dir($path))
{
throw new Exception("The path is not a valid directory.");
}
$this->working_dir = $path;
return $this;
}
/**
* Use a file for std error logging.
*
* @param string $file
* @return PHPServer
*/
public function setErrorLog(string $file): self
{
if(!file_exists($file))
{
if(file_put_contents($file, "") === false)
{
throw new Exception("Can not create error log file.");
}
unlink($file);
}
elseif(!is_writable($file))
{
throw new Exception("Can not write to error log file.");
}
$this->error_log = $file;
$this->descriptors_spec[2] = ["file", $file, "a"];
return $this;
}
/**
* Use a file for std output logging.
*
* @param string $file
* @return void
*/
public function setOutputLog(string $file): void
{
if(!file_exists($file))
{
if(file_put_contents($file, "") === false)
{
throw new Exception("Can not create log file.");
}
unlink($file);
}
elseif(!is_writable($file))
{
throw new Exception("Can not write to log file.");
}
$this->output_log = $file;
$this->descriptors_spec[1] = ["file", $file, "a"];
}
/**
* Delete log files of previously started instance, this should be
* called after stop().
*
* @return void
*/
public function deleteLogs(): void
{
if(file_exists($this->output_log))
{
unlink($this->output_log);
}
if(file_exists($this->error_log))
{
unlink($this->error_log);
}
}
/**
* Read any of the pipes from the process,
* especially 1 (STDOUT) and 2 (STDERR).
*
* @param integer $number Pipe number
*
* @return string
*/
private function readPipe(int $number): string
{
$output = "";
while($data = fread($this->pipes[$number], 4096))
{
$output .= $data;
}
return $output;
}
}
if($argv[1] == "ui")
{
$server = new PHPServer();
$server->start();
$hostname = $server->getHostname();
$port = $server->getPort();
if(class_exists("\\WebKitGtk\\WebView"))
{
$view = new WebKitGtk\WebView("Blue Control");
$view->loadURI("http://$hostname:$port");
$view->resize(1200, 760);
$view->setIcon("images/icon.svg");
$view->show();
}
else
{
passthru("chromium --app=\"http://$hostname:$port\" 2>&1 > /dev/null");
}
$server->stop();
}
else
{
include "service.php";
}