mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-15 02:09:42 +00:00
Network: clean up ticking handling, RakLib only processes on Snooze notification
This commit is contained in:
parent
7560880168
commit
e43496e7e4
@ -2537,7 +2537,7 @@ class Server{
|
||||
++$this->tickCounter;
|
||||
|
||||
Timings::$connectionTimer->startTiming();
|
||||
$this->network->processInterfaces();
|
||||
$this->network->tickInterfaces();
|
||||
Timings::$connectionTimer->stopTiming();
|
||||
|
||||
Timings::$schedulerTimer->startTiming();
|
||||
|
@ -80,26 +80,22 @@ class Network{
|
||||
return $this->interfaces;
|
||||
}
|
||||
|
||||
public function processInterfaces() : void{
|
||||
public function tickInterfaces() : void{
|
||||
foreach($this->interfaces as $interface){
|
||||
$this->processInterface($interface);
|
||||
}
|
||||
}
|
||||
try{
|
||||
$interface->tick();
|
||||
}catch(\Exception $e){
|
||||
$logger = $this->server->getLogger();
|
||||
if(\pocketmine\DEBUG > 1){
|
||||
$logger->logException($e);
|
||||
}
|
||||
|
||||
public function processInterface(NetworkInterface $interface) : void{
|
||||
try{
|
||||
$interface->process();
|
||||
}catch(\Throwable $e){
|
||||
$logger = $this->server->getLogger();
|
||||
if(\pocketmine\DEBUG > 1){
|
||||
$logger->logException($e);
|
||||
$this->server->getPluginManager()->callEvent(new NetworkInterfaceCrashEvent($interface, $e));
|
||||
|
||||
$interface->emergencyShutdown();
|
||||
$this->unregisterInterface($interface);
|
||||
$logger->critical($this->server->getLanguage()->translateString("pocketmine.server.networkError", [get_class($interface), $e->getMessage()]));
|
||||
}
|
||||
|
||||
$this->server->getPluginManager()->callEvent(new NetworkInterfaceCrashEvent($interface, $e));
|
||||
|
||||
$interface->emergencyShutdown();
|
||||
$this->unregisterInterface($interface);
|
||||
$logger->critical($this->server->getLanguage()->translateString("pocketmine.server.networkError", [get_class($interface), $e->getMessage()]));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -63,7 +63,7 @@ interface NetworkInterface{
|
||||
/**
|
||||
* Called every tick to process events on the interface.
|
||||
*/
|
||||
public function process() : void;
|
||||
public function tick() : void;
|
||||
|
||||
/**
|
||||
* Gracefully shuts down the network interface.
|
||||
|
@ -71,7 +71,8 @@ class RakLibInterface implements ServerInstance, AdvancedNetworkInterface{
|
||||
|
||||
$this->sleeper = new SleeperNotifier();
|
||||
$server->getTickSleeper()->addNotifier($this->sleeper, function() : void{
|
||||
$this->server->getNetwork()->processInterface($this);
|
||||
//this should not throw any exception. If it does, this should crash the server since it's a fault condition.
|
||||
while($this->interface->handlePacket());
|
||||
});
|
||||
|
||||
$this->rakLib = new RakLibServer(
|
||||
@ -93,9 +94,7 @@ class RakLibInterface implements ServerInstance, AdvancedNetworkInterface{
|
||||
$this->network = $network;
|
||||
}
|
||||
|
||||
public function process() : void{
|
||||
while($this->interface->handlePacket()){}
|
||||
|
||||
public function tick() : void{
|
||||
if(!$this->rakLib->isRunning() and !$this->rakLib->isShutdown()){
|
||||
throw new \Exception("RakLib Thread crashed");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user