mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-06 20:07:09 +00:00
Fixed AsyncTask publishProgress() race condition on task exit
It's possible for a progress update to be lost due to the task finishing before the main thread found the progress update.
This commit is contained in:
parent
32836cbfb8
commit
2858db430e
@ -289,12 +289,20 @@ class AsyncPool{
|
|||||||
*/
|
*/
|
||||||
public function collectTasks() : void{
|
public function collectTasks() : void{
|
||||||
foreach($this->tasks as $task){
|
foreach($this->tasks as $task){
|
||||||
if(!$task->isGarbage()){
|
$task->checkProgressUpdates($this->server);
|
||||||
$task->checkProgressUpdates($this->server);
|
|
||||||
}
|
|
||||||
if($task->isGarbage() and !$task->isRunning() and !$task->isCrashed()){
|
if($task->isGarbage() and !$task->isRunning() and !$task->isCrashed()){
|
||||||
if(!$task->hasCancelledRun()){
|
if(!$task->hasCancelledRun()){
|
||||||
try{
|
try{
|
||||||
|
/*
|
||||||
|
* It's possible for a task to submit a progress update and then finish before the progress
|
||||||
|
* update is detected by the parent thread, so here we consume any missed updates.
|
||||||
|
*
|
||||||
|
* When this happens, it's possible for a progress update to arrive between the previous
|
||||||
|
* checkProgressUpdates() call and the next isGarbage() call, causing progress updates to be
|
||||||
|
* lost. Thus, it's necessary to do one last check here to make sure all progress updates have
|
||||||
|
* been consumed before completing.
|
||||||
|
*/
|
||||||
|
$task->checkProgressUpdates($this->server);
|
||||||
$task->onCompletion($this->server);
|
$task->onCompletion($this->server);
|
||||||
if($task->removeDanglingStoredObjects()){
|
if($task->removeDanglingStoredObjects()){
|
||||||
$this->logger->notice("AsyncTask " . get_class($task) . " stored local complex data but did not remove them after completion");
|
$this->logger->notice("AsyncTask " . get_class($task) . " stored local complex data but did not remove them after completion");
|
||||||
|
@ -44,7 +44,8 @@ class Main extends PluginBase implements Listener{
|
|||||||
|
|
||||||
$this->waitingTests = [
|
$this->waitingTests = [
|
||||||
new tests\AsyncTaskMemoryLeakTest($this),
|
new tests\AsyncTaskMemoryLeakTest($this),
|
||||||
new tests\AsyncTaskMainLoggerTest($this)
|
new tests\AsyncTaskMainLoggerTest($this),
|
||||||
|
new tests\AsyncTaskPublishProgressRaceTest($this)
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -0,0 +1,68 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
* ____ _ _ __ __ _ __ __ ____
|
||||||
|
* | _ \ ___ ___| | _____| |_| \/ (_)_ __ ___ | \/ | _ \
|
||||||
|
* | |_) / _ \ / __| |/ / _ \ __| |\/| | | '_ \ / _ \_____| |\/| | |_) |
|
||||||
|
* | __/ (_) | (__| < __/ |_| | | | | | | | __/_____| | | | __/
|
||||||
|
* |_| \___/ \___|_|\_\___|\__|_| |_|_|_| |_|\___| |_| |_|_|
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Lesser General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* @author PocketMine Team
|
||||||
|
* @link http://www.pocketmine.net/
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace pmmp\TesterPlugin\tests;
|
||||||
|
|
||||||
|
use pmmp\TesterPlugin\Test;
|
||||||
|
use pocketmine\scheduler\AsyncTask;
|
||||||
|
use pocketmine\Server;
|
||||||
|
|
||||||
|
class AsyncTaskPublishProgressRaceTest extends Test{
|
||||||
|
|
||||||
|
public function getName() : string{
|
||||||
|
return "Verify progress updates work as expected when finishing task";
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getDescription() : string{
|
||||||
|
return "Progress updates would be lost when finishing a task before its remaining progress updates were detected.";
|
||||||
|
}
|
||||||
|
|
||||||
|
public function run() : void{
|
||||||
|
//this test is racy, but it should fail often enough to be a pest if something is broken
|
||||||
|
|
||||||
|
$this->getPlugin()->getServer()->getAsyncPool()->submitTask(new class($this) extends AsyncTask{
|
||||||
|
private static $success = false;
|
||||||
|
|
||||||
|
public function __construct(AsyncTaskPublishProgressRaceTest $t){
|
||||||
|
$this->storeLocal($t);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function onRun() : void{
|
||||||
|
$this->publishProgress("hello");
|
||||||
|
}
|
||||||
|
|
||||||
|
public function onProgressUpdate(Server $server, $progress) : void{
|
||||||
|
if($progress === "hello"){
|
||||||
|
// thread local on main thread
|
||||||
|
self::$success = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public function onCompletion(Server $server) : void{
|
||||||
|
/** @var AsyncTaskPublishProgressRaceTest $t */
|
||||||
|
$t = $this->fetchLocal();
|
||||||
|
$t->setResult(self::$success ? Test::RESULT_OK : Test::RESULT_FAILED);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user