1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-27 04:44:56 +01:00
parallel/lib/Sync/ThreadedParcel.php

59 lines
1.3 KiB
PHP
Raw Normal View History

2017-11-29 21:40:07 +01:00
<?php
namespace Amp\Parallel\Sync;
2017-11-29 21:40:07 +01:00
use Amp\Promise;
use Amp\Success;
use Amp\Sync\ThreadedMutex;
use function Amp\call;
/**
* A thread-safe container that shares a value between multiple threads.
*/
class ThreadedParcel implements Parcel {
/** @var \Amp\Sync\ThreadedMutex */
private $mutex;
/** @var \Threaded */
private $storage;
/**
* Creates a new shared object container.
*
* @param mixed $value The value to store in the container.
*/
public function __construct($value) {
$this->mutex = new ThreadedMutex;
2017-11-29 22:05:15 +01:00
$this->storage = new Internal\ParcelStorage($value);
2017-11-29 21:40:07 +01:00
}
/**
* {@inheritdoc}
*/
public function unwrap(): Promise {
return new Success($this->storage->get());
}
/**
* @return \Amp\Promise
*/
public function synchronized(callable $callback): Promise {
return call(function () use ($callback) {
/** @var \Amp\Sync\Lock $lock */
$lock = yield $this->mutex->acquire();
try {
$result = yield call($callback, $this->storage->get());
if ($result !== null) {
$this->storage->set($result);
}
} finally {
$lock->release();
}
return $result;
});
}
}