-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathAbstractTraceableResponse.php
More file actions
150 lines (125 loc) · 4.04 KB
/
Copy pathAbstractTraceableResponse.php
File metadata and controls
150 lines (125 loc) · 4.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?php
declare(strict_types=1);
namespace Sentry\SentryBundle\Tracing\HttpClient;
use Sentry\Tracing\Span;
use Sentry\Tracing\SpanStatus;
use Symfony\Contracts\HttpClient\ChunkInterface;
use Symfony\Contracts\HttpClient\HttpClientInterface;
use Symfony\Contracts\HttpClient\ResponseInterface;
/**
* @internal
*/
abstract class AbstractTraceableResponse implements ResponseInterface
{
/**
* @var ResponseInterface
*/
protected $response;
/**
* @var HttpClientInterface
*/
protected $client;
/**
* @var Span|null
*/
protected $span;
public function __construct(HttpClientInterface $client, ResponseInterface $response, ?Span $span)
{
$this->client = $client;
$this->response = $response;
$this->span = $span;
}
public function __destruct()
{
try {
if (method_exists($this->response, '__destruct')) {
$this->response->__destruct();
}
} finally {
$this->finishSpan();
}
}
public function __sleep(): array
{
throw new \BadMethodCallException('Serializing instances of this class is forbidden.');
}
public function __wakeup()
{
throw new \BadMethodCallException('Unserializing instances of this class is forbidden.');
}
public function getStatusCode(): int
{
return $this->response->getStatusCode();
}
public function getHeaders(bool $throw = true): array
{
return $this->response->getHeaders($throw);
}
public function getContent(bool $throw = true): string
{
try {
return $this->response->getContent($throw);
} finally {
$this->finishSpan();
}
}
public function toArray(bool $throw = true): array
{
try {
return $this->response->toArray($throw);
} finally {
$this->finishSpan();
}
}
public function cancel(): void
{
$this->response->cancel();
$this->finishSpan();
}
/**
* @param iterable<AbstractTraceableResponse> $responses
*
* @return \Generator<AbstractTraceableResponse, ChunkInterface>
*
* @internal
*/
public static function stream(HttpClientInterface $client, iterable $responses, ?float $timeout): \Generator
{
/** @var \SplObjectStorage<ResponseInterface, AbstractTraceableResponse> $traceableMap */
$traceableMap = new \SplObjectStorage();
$wrappedResponses = [];
foreach ($responses as $response) {
if (!$response instanceof self) {
throw new \TypeError(\sprintf('"%s::stream()" expects parameter 1 to be an iterable of TraceableResponse objects, "%s" given.', TraceableHttpClient::class, get_debug_type($response)));
}
$traceableMap[$response->response] = $response;
$wrappedResponses[] = $response->response;
}
foreach ($client->stream($wrappedResponses, $timeout) as $response => $chunk) {
$traceableResponse = $traceableMap[$response];
$traceableResponse->finishSpan();
yield $traceableResponse => $chunk;
}
}
private function finishSpan(): void
{
if (null === $this->span) {
return;
}
// We finish the span (which means setting the span end timestamp) first
// to ensure the measured time is as close as possible to the duration of
// the HTTP request
$this->span->finish();
/** @var int $statusCode */
$statusCode = $this->response->getInfo('http_code');
// If the returned status code is 0, it means that this info isn't available
// yet (e.g. an error happened before the request was sent), hence we cannot
// determine what happened.
if (0 === $statusCode) {
$this->span->setStatus(SpanStatus::unknownError());
} else {
$this->span->setStatus(SpanStatus::createFromHttpStatusCode($statusCode));
}
$this->span = null;
}
}