2015-08-07 22:32:18 +02:00
|
|
|
<?php
|
|
|
|
|
2016-08-18 18:04:48 +02:00
|
|
|
namespace Amp\Tests\Concurrent\Threading;
|
|
|
|
|
|
|
|
use Amp\Concurrent\Sync\Semaphore as SyncSemaphore;
|
|
|
|
use Amp\Concurrent\Threading\{Semaphore, Thread};
|
|
|
|
use Amp\Coroutine;
|
|
|
|
use Amp\Loop;
|
|
|
|
use Amp\Tests\Concurrent\Sync\AbstractSemaphoreTest;
|
2015-08-07 22:32:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @group threading
|
2015-08-28 22:09:07 +02:00
|
|
|
* @requires extension pthreads
|
2015-08-07 22:32:18 +02:00
|
|
|
*/
|
2015-09-04 06:23:12 +02:00
|
|
|
class SemaphoreTest extends AbstractSemaphoreTest
|
2015-08-07 22:32:18 +02:00
|
|
|
{
|
2015-09-04 06:23:12 +02:00
|
|
|
public function createSemaphore($locks)
|
2015-08-07 22:32:18 +02:00
|
|
|
{
|
2015-09-04 06:23:12 +02:00
|
|
|
return new Semaphore($locks);
|
2015-08-07 22:32:18 +02:00
|
|
|
}
|
|
|
|
|
2015-09-04 01:10:19 +02:00
|
|
|
public function testAcquireInMultipleThreads()
|
|
|
|
{
|
|
|
|
Coroutine\create(function () {
|
2015-09-04 06:23:12 +02:00
|
|
|
$this->semaphore = $this->createSemaphore(1);
|
2015-09-04 01:10:19 +02:00
|
|
|
|
2015-12-05 06:50:32 +01:00
|
|
|
$thread1 = new Thread(function (SyncSemaphore $semaphore) {
|
2016-01-23 07:00:56 +01:00
|
|
|
$lock = yield from $semaphore->acquire();
|
2015-09-04 01:10:19 +02:00
|
|
|
|
|
|
|
usleep(1e5);
|
|
|
|
|
|
|
|
$lock->release();
|
|
|
|
|
2016-01-23 07:00:56 +01:00
|
|
|
return 0;
|
2015-09-04 06:23:12 +02:00
|
|
|
}, $this->semaphore);
|
2015-09-04 01:10:19 +02:00
|
|
|
|
2015-12-05 06:50:32 +01:00
|
|
|
$thread2 = new Thread(function (SyncSemaphore $semaphore) {
|
2016-01-23 07:00:56 +01:00
|
|
|
$lock = yield from $semaphore->acquire();
|
2015-09-04 01:10:19 +02:00
|
|
|
|
|
|
|
usleep(1e5);
|
|
|
|
|
|
|
|
$lock->release();
|
|
|
|
|
2016-01-23 07:00:56 +01:00
|
|
|
return 1;
|
2015-09-04 06:23:12 +02:00
|
|
|
}, $this->semaphore);
|
2015-09-04 01:10:19 +02:00
|
|
|
|
|
|
|
$start = microtime(true);
|
|
|
|
|
|
|
|
$thread1->start();
|
|
|
|
$thread2->start();
|
|
|
|
|
2016-01-25 06:03:45 +01:00
|
|
|
yield from $thread1->join();
|
|
|
|
yield from $thread2->join();
|
2015-09-04 01:10:19 +02:00
|
|
|
|
|
|
|
$this->assertGreaterThan(1, microtime(true) - $start);
|
|
|
|
});
|
|
|
|
|
|
|
|
Loop\run();
|
|
|
|
}
|
2015-08-07 22:32:18 +02:00
|
|
|
}
|