1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 18:47:50 +01:00
parallel/src/Threading/Parcel.php

86 lines
1.7 KiB
PHP
Raw Normal View History

<?php
namespace Icicle\Concurrent\Threading;
use Icicle\Concurrent\Sync\ParcelInterface;
/**
* A thread-safe container that shares a value between multiple threads.
*/
class Parcel implements ParcelInterface
{
2015-09-03 00:23:22 +02:00
/**
* @var \Icicle\Concurrent\Threading\Mutex
*/
private $mutex;
2015-09-03 00:23:22 +02:00
/**
* @var \Icicle\Concurrent\Threading\Internal\Storage
*/
private $storage;
/**
* Creates a new shared object container.
*
* @param mixed $value The value to store in the container.
*/
public function __construct($value)
2015-09-04 01:11:58 +02:00
{
$this->init($value);
}
/**
* @param mixed $value
*/
private function init($value)
{
$this->mutex = new Mutex();
2015-09-04 01:11:58 +02:00
$this->storage = new Internal\Storage($value);
}
/**
* {@inheritdoc}
*/
public function unwrap()
{
return $this->storage->get();
}
/**
* {@inheritdoc}
*/
public function wrap($value)
{
$this->storage->set($value);
}
/**
* @coroutine
*
2015-09-04 01:11:58 +02:00
* Asynchronously invokes a callable while maintaining an exclusive lock on the container.
*
2015-09-04 01:11:58 +02:00
* @param callable<mixed> $callback The function to invoke. The value in the container will be passed as the first
* argument.
*
* @return \Generator
*/
2015-09-04 01:11:58 +02:00
public function synchronized(callable $callback)
{
/** @var \Icicle\Concurrent\Sync\Lock $lock */
$lock = (yield $this->mutex->acquire());
try {
2015-09-04 01:11:58 +02:00
yield $callback($this);
} finally {
$lock->release();
}
}
/**
* {@inheritdoc}
*/
public function __clone()
{
2015-09-04 01:11:58 +02:00
$this->init($this->unwrap());
}
}