mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-10-17 19:50:18 +00:00
PacketBatch: added a getPackets() method which encapsulates some logic
This commit is contained in:
@@ -98,7 +98,6 @@ use pocketmine\player\Player;
|
||||
use pocketmine\player\PlayerInfo;
|
||||
use pocketmine\Server;
|
||||
use pocketmine\timings\Timings;
|
||||
use pocketmine\utils\BinaryDataException;
|
||||
use pocketmine\utils\TextFormat;
|
||||
use pocketmine\utils\Utils;
|
||||
use pocketmine\world\Position;
|
||||
@@ -328,24 +327,18 @@ class NetworkSession{
|
||||
Timings::$playerNetworkReceiveDecompressTimer->stopTiming();
|
||||
}
|
||||
|
||||
$count = 0;
|
||||
while(!$stream->feof() and $this->connected){
|
||||
if($count++ >= 500){
|
||||
throw new BadPacketException("Too many packets in a single batch");
|
||||
}
|
||||
try{
|
||||
$pk = $stream->getPacket($this->packetPool);
|
||||
}catch(BinaryDataException $e){
|
||||
$this->logger->debug("Packet batch: " . base64_encode($stream->getBuffer()));
|
||||
throw BadPacketException::wrap($e, "Packet batch decode error");
|
||||
}
|
||||
|
||||
try{
|
||||
$this->handleDataPacket($pk);
|
||||
}catch(BadPacketException $e){
|
||||
$this->logger->debug($pk->getName() . ": " . base64_encode($pk->getSerializer()->getBuffer()));
|
||||
throw BadPacketException::wrap($e, "Error processing " . $pk->getName());
|
||||
try{
|
||||
foreach($stream->getPackets($this->packetPool, 500) as $packet){
|
||||
try{
|
||||
$this->handleDataPacket($packet);
|
||||
}catch(BadPacketException $e){
|
||||
$this->logger->debug($packet->getName() . ": " . base64_encode($packet->getSerializer()->getBuffer()));
|
||||
throw BadPacketException::wrap($e, "Error processing " . $packet->getName());
|
||||
}
|
||||
}
|
||||
}catch(PacketDecodeException $e){
|
||||
$this->logger->logException($e);
|
||||
throw BadPacketException::wrap($e, "Packet batch decode error");
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user