Skip to content

Commit c2c514c

Browse files
author
Greg Bowler
authored
HTTPlug compatibility (#3)
* Begin Httplug compatibility - getState * Complete work for HTTPlug compatibility Closes #2 * Fix trait property errors
1 parent 7e994c8 commit c2c514c

9 files changed

+321
-4
lines changed

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"license": "MIT",
55

66
"require": {
7-
"php": ">=7.4"
7+
"php": ">=7.4",
8+
"php-http/httplug": "^2.2.0"
89
},
910
"require-dev": {
1011
"phpunit/phpunit": "9.*",

composer.lock

+213-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/FulfilledPromise.php

+7
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
namespace Gt\Promise;
33

44
use Throwable;
5+
use Http\Promise\Promise as HttpPromiseInterface;
56

67
class FulfilledPromise implements PromiseInterface {
78
use Resolvable;
9+
use Waitable;
810

911
/** @var mixed */
1012
private $value;
13+
private string $state;
1114

1215
/** @param ?mixed $promiseOrValue */
1316
public function __construct($promiseOrValue = null) {
@@ -71,4 +74,8 @@ function($value)
7174
}
7275
);
7376
}
77+
78+
public function getState():string {
79+
return HttpPromiseInterface::FULFILLED;
80+
}
7481
}

src/Promise.php

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@
22
namespace Gt\Promise;
33

44
use Throwable;
5+
use Http\Promise\Promise as HttpPromiseInterface;
56

6-
class Promise implements PromiseInterface {
7+
class Promise implements PromiseInterface, HttpPromiseInterface {
78
use Resolvable;
9+
use Waitable;
810

911
/** @var mixed */
1012
private $result;
1113
/** @var callable[] */
1214
private array $handlers;
15+
private string $state;
1316

1417
/**
1518
* @param callable $executor A function to be executed by the
@@ -22,6 +25,7 @@ class Promise implements PromiseInterface {
2225
public function __construct(callable $executor) {
2326
$this->handlers = [];
2427
$this->call($executor);
28+
$this->state = HttpPromiseInterface::PENDING;
2529
}
2630

2731
public function then(
@@ -73,6 +77,10 @@ function(PromiseInterface $promise) use ($onFulfilled, $onRejected) {
7377
);
7478
}
7579

80+
public function getState():string {
81+
return $this->state;
82+
}
83+
7684
private function resolver(
7785
callable $onFulfilled = null,
7886
callable $onRejected = null
@@ -94,6 +102,7 @@ private function reject(Throwable $reason):void {
94102
return;
95103
}
96104

105+
$this->state = HttpPromiseInterface::REJECTED;
97106
$this->settle(new RejectedPromise($reason));
98107
}
99108

src/PromiseInterface.php

+13
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,17 @@ public function catch(
4848
public function finally(
4949
callable $onFulfilledOrRejected
5050
):PromiseInterface;
51+
52+
/**
53+
* TODO: Documentation.
54+
*/
55+
public function complete(
56+
callable $onFulfilled = null,
57+
callable $onRejected = null
58+
):void;
59+
60+
public function getState():string;
61+
62+
/** @return mixed */
63+
public function wait(bool $unwrap = true);
5164
}

src/RejectedPromise.php

+7
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
namespace Gt\Promise;
33

44
use Throwable;
5+
use Http\Promise\Promise as HttpPromiseInterface;
56

67
class RejectedPromise implements PromiseInterface {
78
use Resolvable;
9+
use Waitable;
810

911
private Throwable $reason;
12+
private string $state;
1013

1114
public function __construct(Throwable $reason) {
1215
$this->reason = $reason;
@@ -72,4 +75,8 @@ function(Throwable $reason)
7275
}
7376
);
7477
}
78+
79+
public function getState():string {
80+
return HttpPromiseInterface::REJECTED;
81+
}
7582
}

src/Resolvable.php

+4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
<?php
22
namespace Gt\Promise;
33

4+
use Http\Promise\Promise as HttpPromiseInterface;
5+
46
trait Resolvable {
57
private function resolve($promiseOrValue = null):PromiseInterface {
68
if ($promiseOrValue instanceof PromiseInterface) {
79
return $promiseOrValue;
810
}
911

12+
$this->state = HttpPromiseInterface::FULFILLED;
13+
1014
return new FulfilledPromise($promiseOrValue);
1115
}
1216
}

0 commit comments

Comments
 (0)