PluginProbe ʕ •ᴥ•ʔ
Tutor LMS – eLearning and online course solution / trunk
Tutor LMS – eLearning and online course solution vtrunk
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 4.0.2 4.0.1 4.0.0 3.9.15 3.9.14 3.9.13 3.9.12 3.9.11 trunk 1.0.0 1.0.0-alpha 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.2.0 1.2.1 1.2.11 1.2.12 1.2.13 1.2.20 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.6.8 1.6.9 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8.0 1.8.1 1.8.10 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9.0 1.9.1 1.9.10 1.9.11 1.9.12 1.9.13 1.9.14 1.9.15 1.9.16 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.10 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.10 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.3.0 2.4.0 2.5.0 2.6.0 2.6.1 2.6.2 2.7.0 2.7.1 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 3.0.0 3.0.1 3.0.2 3.1.0 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.3 3.6.4 3.7.0 3.7.1 3.7.2 3.7.3 3.7.4 3.8.0 3.8.1 3.8.2 3.8.3 3.9.0 3.9.1 3.9.10 3.9.2 3.9.3 3.9.4 3.9.5 3.9.6 3.9.7 3.9.8 3.9.9
tutor / ecommerce / PaymentGateways / Paypal / vendor / guzzlehttp / psr7 / src / FnStream.php
tutor / ecommerce / PaymentGateways / Paypal / vendor / guzzlehttp / psr7 / src Last commit date
Exception 1 year ago AppendStream.php 2 months ago BufferStream.php 2 months ago CachingStream.php 2 months ago DroppingStream.php 2 months ago FnStream.php 2 months ago Header.php 2 months ago HttpFactory.php 1 year ago InflateStream.php 1 year ago LazyOpenStream.php 1 year ago LimitStream.php 2 months ago Message.php 2 months ago MessageTrait.php 2 months ago MimeType.php 2 months ago MultipartStream.php 2 months ago NoSeekStream.php 2 months ago PumpStream.php 2 months ago Query.php 1 year ago Request.php 2 months ago Response.php 2 months ago Rfc3986.php 2 months ago Rfc7230.php 2 months ago ServerRequest.php 2 months ago Stream.php 2 months ago StreamDecoratorTrait.php 2 months ago StreamWrapper.php 2 months ago UploadedFile.php 2 months ago Uri.php 2 months ago UriComparator.php 2 months ago UriNormalizer.php 2 months ago UriResolver.php 2 months ago Utils.php 2 months ago
FnStream.php
226 lines
1 <?php
2
3 declare(strict_types=1);
4
5 namespace GuzzleHttp\Psr7;
6
7 use Psr\Http\Message\StreamInterface;
8
9 /**
10 * Compose stream implementations based on a hash of callables.
11 *
12 * Allows for easy testing and extension of a provided stream without needing
13 * to create a concrete class for a simple extension point.
14 */
15 #[\AllowDynamicProperties]
16 final class FnStream implements StreamInterface
17 {
18 private const SLOTS = [
19 '__toString', 'close', 'detach', 'rewind',
20 'getSize', 'tell', 'eof', 'isSeekable', 'seek', 'isWritable', 'write',
21 'isReadable', 'read', 'getContents', 'getMetadata',
22 ];
23
24 /** @var array<string, callable> */
25 private $methods;
26
27 /**
28 * @param array<string, callable> $methods Hash of method name to a callable.
29 */
30 public function __construct(array $methods)
31 {
32 $this->methods = $methods;
33
34 // Create the callables on the class
35 foreach ($methods as $name => $fn) {
36 $this->{'_fn_'.$name} = $fn;
37 }
38 }
39
40 /**
41 * Lazily determine which methods are not implemented.
42 *
43 * @throws \BadMethodCallException
44 */
45 public function __get(string $name): void
46 {
47 throw new \BadMethodCallException(str_replace('_fn_', '', $name)
48 .'() is not implemented in the FnStream');
49 }
50
51 /**
52 * The close method is called on the underlying stream only if possible.
53 */
54 public function __destruct()
55 {
56 if (isset($this->_fn_close)) {
57 ($this->_fn_close)();
58 }
59 }
60
61 /**
62 * An unserialize would allow the __destruct to run when the unserialized value goes out of scope.
63 *
64 * @throws \LogicException
65 */
66 public function __wakeup(): void
67 {
68 throw new \LogicException('FnStream should never be unserialized');
69 }
70
71 /**
72 * Adds custom functionality to an underlying stream by intercepting
73 * specific method calls.
74 *
75 * @param StreamInterface $stream Stream to decorate
76 * @param array<string, callable> $methods Hash of method name to a callable
77 *
78 * @return FnStream
79 */
80 public static function decorate(StreamInterface $stream, array $methods)
81 {
82 // If any of the required methods were not provided, then simply
83 // proxy to the decorated stream.
84 foreach (array_diff(self::SLOTS, array_keys($methods)) as $diff) {
85 /** @var callable $callable */
86 $callable = [$stream, $diff];
87 $methods[$diff] = $callable;
88 }
89
90 return new self($methods);
91 }
92
93 public function __toString(): string
94 {
95 try {
96 /** @var string */
97 return ($this->_fn___toString)();
98 } catch (\Throwable $e) {
99 if (\PHP_VERSION_ID >= 70400) {
100 throw $e;
101 }
102 trigger_error(sprintf('%s::__toString exception: %s', self::class, (string) $e), E_USER_ERROR);
103
104 return '';
105 }
106 }
107
108 public function close(): void
109 {
110 ($this->_fn_close)();
111 }
112
113 public function detach()
114 {
115 return ($this->_fn_detach)();
116 }
117
118 public function getSize(): ?int
119 {
120 return ($this->_fn_getSize)();
121 }
122
123 public function tell(): int
124 {
125 return ($this->_fn_tell)();
126 }
127
128 public function eof(): bool
129 {
130 return ($this->_fn_eof)();
131 }
132
133 public function isSeekable(): bool
134 {
135 return ($this->_fn_isSeekable)();
136 }
137
138 public function rewind(): void
139 {
140 ($this->_fn_rewind)();
141 }
142
143 public function seek($offset, $whence = SEEK_SET): void
144 {
145 if (!\is_int($offset)) {
146 \trigger_deprecation(
147 'guzzlehttp/psr7',
148 '2.11',
149 'Passing %s to StreamInterface::seek() is deprecated; guzzlehttp/psr7 3.0 requires int for $offset.',
150 \get_debug_type($offset)
151 );
152 }
153
154 if (!\is_int($whence)) {
155 \trigger_deprecation(
156 'guzzlehttp/psr7',
157 '2.11',
158 'Passing %s to StreamInterface::seek() is deprecated; guzzlehttp/psr7 3.0 requires int for $whence.',
159 \get_debug_type($whence)
160 );
161 }
162
163 ($this->_fn_seek)($offset, $whence);
164 }
165
166 public function isWritable(): bool
167 {
168 return ($this->_fn_isWritable)();
169 }
170
171 public function write($string): int
172 {
173 if (!\is_string($string)) {
174 \trigger_deprecation(
175 'guzzlehttp/psr7',
176 '2.11',
177 'Passing %s to StreamInterface::write() is deprecated; guzzlehttp/psr7 3.0 requires string for $string.',
178 \get_debug_type($string)
179 );
180 }
181
182 return ($this->_fn_write)($string);
183 }
184
185 public function isReadable(): bool
186 {
187 return ($this->_fn_isReadable)();
188 }
189
190 public function read($length): string
191 {
192 if (!\is_int($length)) {
193 \trigger_deprecation(
194 'guzzlehttp/psr7',
195 '2.11',
196 'Passing %s to StreamInterface::read() is deprecated; guzzlehttp/psr7 3.0 requires int for $length.',
197 \get_debug_type($length)
198 );
199 }
200
201 return ($this->_fn_read)($length);
202 }
203
204 public function getContents(): string
205 {
206 return ($this->_fn_getContents)();
207 }
208
209 /**
210 * @return mixed
211 */
212 public function getMetadata($key = null)
213 {
214 if ($key !== null && !\is_string($key)) {
215 \trigger_deprecation(
216 'guzzlehttp/psr7',
217 '2.11',
218 'Passing %s to StreamInterface::getMetadata() is deprecated; guzzlehttp/psr7 3.0 requires string|null for $key.',
219 \get_debug_type($key)
220 );
221 }
222
223 return ($this->_fn_getMetadata)($key);
224 }
225 }
226