2017-07-21 21:15:43 +00:00
|
|
|
<?php
|
2017-11-17 01:23:18 +00:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-07-21 21:15:43 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\Service\Forking;
|
2017-08-29 14:50:31 +00:00
|
|
|
|
2017-07-21 21:15:43 +00:00
|
|
|
use JKingWeb\Arsse\Arsse;
|
|
|
|
|
|
|
|
class Driver implements \JKingWeb\Arsse\Service\Driver {
|
|
|
|
protected $queue = [];
|
2018-10-26 18:58:04 +00:00
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public static function driverName(): string {
|
2017-07-21 21:15:43 +00:00
|
|
|
return Arsse::$lang->msg("Driver.Service.Forking.Name");
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public static function requirementsMet(): bool {
|
2017-07-21 21:15:43 +00:00
|
|
|
return function_exists("popen");
|
|
|
|
}
|
2018-10-26 18:58:04 +00:00
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function __construct() {
|
2017-07-21 21:15:43 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function queue(int ...$feeds): int {
|
2017-07-21 21:15:43 +00:00
|
|
|
$this->queue = array_merge($this->queue, $feeds);
|
|
|
|
return sizeof($this->queue);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function exec(): int {
|
2017-07-21 21:15:43 +00:00
|
|
|
$pp = [];
|
2017-08-29 14:50:31 +00:00
|
|
|
while ($this->queue) {
|
2017-07-21 21:15:43 +00:00
|
|
|
$id = (int) array_shift($this->queue);
|
2017-07-22 19:29:12 +00:00
|
|
|
$php = '"'.\PHP_BINARY.'"';
|
|
|
|
$arsse = '"'.$_SERVER['argv'][0].'"';
|
|
|
|
array_push($pp, popen("$php $arsse feed refresh $id", "r"));
|
2017-07-21 21:15:43 +00:00
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
while ($pp) {
|
2017-07-21 21:15:43 +00:00
|
|
|
$p = array_pop($pp);
|
|
|
|
fgets($p); // TODO: log output
|
|
|
|
pclose($p);
|
|
|
|
}
|
|
|
|
return Arsse::$conf->serviceQueueWidth - sizeof($this->queue);
|
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function clean(): bool {
|
2017-07-21 21:15:43 +00:00
|
|
|
$this->queue = [];
|
|
|
|
return true;
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|