1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/PrivatePromisor.php

74 lines
2.2 KiB
PHP

<?php
namespace Amp;
/**
* A PrivatePromisor creates read-only Promise instances that can only be
* resolved by holders of the PrivatePromisor instance. This creates an
* additional layer of API protection beyond the PublicPromisor.
*/
trait PrivatePromisor {
private $resolver;
private $updater;
private $promise;
public function __construct() {
$placeholder = new PrivatePlaceholder;
$resolver = function($error = null, $result = null) {
// bound to private PrivatePlaceholder::resolve()
$this->resolve($error, $result);
};
$updater = function($progress) {
// bound to private PrivatePlaceholder::update()
\call_user_func_array([$this, "update"], func_get_args());
};
$this->resolver = $resolver->bindTo($placeholder, $placeholder);
$this->updater = $updater->bindTo($placeholder, $placeholder);
$this->promise = $placeholder;
}
/**
* Promise future fulfillment of the returned placeholder value
*
* @return \Amp\Promise
*/
public function promise() {
return $this->promise;
}
/**
* Update watchers of progress resolving the promised value
*
* @param mixed $progress1, $progress2, ... $progressN
* @return void
*/
public function update($progress) {
\call_user_func_array($this->updater, func_get_args());
}
/**
* Resolve the associated promise placeholder as a success
*
* @param mixed $result
* @return void
*/
public function succeed($result = null) {
\call_user_func($this->resolver, $error = null, $result);
}
/**
* Resolve the associated promise placeholder as a failure
*
* The error parameter used to fail a promisor must always be an exception
* instance. However, we cannot typehint this parameter in environments
* where PHP5.x compatibility is required because PHP7 BaseException
* instances will break the typehint.
*
* @param mixed $error An Exception or BaseException in PHP7 environments
* @return void
*/
public function fail($error) {
\call_user_func($this->resolver, $error, $result = null);
}
}