✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ webm004.cluster127.gra.hosting.ovh.net ​🇻​♯➤ 6.18.42-ovh-vps-grsec-zfs+ #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 54.36.91.62 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.191
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ _dyuweyrj4,_dyuweyrj4r,dl

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/docteuh/www/2023-20260911045434/serverhttpson/third-party/guzzlehttp/psr7/src//PumpStream.php
<?php

namespace Google\Site_Kit_Dependencies\GuzzleHttp\Psr7;

use Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface;
/**
 * Provides a read only stream that pumps data from a PHP callable.
 *
 * When invoking the provided callable, the PumpStream will pass the amount of
 * data requested to read to the callable. The callable can choose to ignore
 * this value and return fewer or more bytes than requested. Any extra data
 * returned by the provided callable is buffered internally until drained using
 * the read() function of the PumpStream. The provided callable MUST return
 * false when there is no more data to read.
 *
 * @final
 */
class PumpStream implements \Google\Site_Kit_Dependencies\Psr\Http\Message\StreamInterface
{
    /** @var callable */
    private $source;
    /** @var int */
    private $size;
    /** @var int */
    private $tellPos = 0;
    /** @var array */
    private $metadata;
    /** @var BufferStream */
    private $buffer;
    /**
     * @param callable $source  Source of the stream data. The callable MAY
     *                          accept an integer argument used to control the
     *                          amount of data to return. The callable MUST
     *                          return a string when called, or false on error
     *                          or EOF.
     * @param array    $options Stream options:
     *                          - metadata: Hash of metadata to use with stream.
     *                          - size: Size of the stream, if known.
     */
    public function __construct(callable $source, array $options = [])
    {
        $this->source = $source;
        $this->size = isset($options['size']) ? $options['size'] : null;
        $this->metadata = isset($options['metadata']) ? $options['metadata'] : [];
        $this->buffer = new \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\BufferStream();
    }
    public function __toString()
    {
        try {
            return \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::copyToString($this);
        } catch (\Exception $e) {
            return '';
        }
    }
    public function close()
    {
        $this->detach();
    }
    public function detach()
    {
        $this->tellPos = \false;
        $this->source = null;
        return null;
    }
    public function getSize()
    {
        return $this->size;
    }
    public function tell()
    {
        return $this->tellPos;
    }
    public function eof()
    {
        return !$this->source;
    }
    public function isSeekable()
    {
        return \false;
    }
    public function rewind()
    {
        $this->seek(0);
    }
    public function seek($offset, $whence = \SEEK_SET)
    {
        throw new \RuntimeException('Cannot seek a PumpStream');
    }
    public function isWritable()
    {
        return \false;
    }
    public function write($string)
    {
        throw new \RuntimeException('Cannot write to a PumpStream');
    }
    public function isReadable()
    {
        return \true;
    }
    public function read($length)
    {
        $data = $this->buffer->read($length);
        $readLen = \strlen($data);
        $this->tellPos += $readLen;
        $remaining = $length - $readLen;
        if ($remaining) {
            $this->pump($remaining);
            $data .= $this->buffer->read($remaining);
            $this->tellPos += \strlen($data) - $readLen;
        }
        return $data;
    }
    public function getContents()
    {
        $result = '';
        while (!$this->eof()) {
            $result .= $this->read(1000000);
        }
        return $result;
    }
    public function getMetadata($key = null)
    {
        if (!$key) {
            return $this->metadata;
        }
        return isset($this->metadata[$key]) ? $this->metadata[$key] : null;
    }
    private function pump($length)
    {
        if ($this->source) {
            do {
                $data = \call_user_func($this->source, $length);
                if ($data === \false || $data === null) {
                    $this->source = null;
                    return;
                }
                $this->buffer->write($data);
                $length -= \strlen($data);
            } while ($length > 0);
        }
    }
}


Current_dir [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
12 Sep 2026 5.53 AM
docteuh / users
0755
AppendStream.php
5.759 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
BufferStream.php
3.098 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
CachingStream.php
4.659 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
DroppingStream.php
1.212 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
FnStream.php
3.982 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Header.php
2.162 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
InflateStream.php
2.221 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
LazyOpenStream.php
1.066 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
LimitStream.php
4.176 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Message.php
8.422 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
MessageTrait.php
7.651 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
MimeType.php
3.8 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
MultipartStream.php
4.943 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
NoSeekStream.php
0.53 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
PumpStream.php
4.164 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Query.php
3.443 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Request.php
3.883 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Response.php
4.359 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Rfc7230.php
0.685 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
ServerRequest.php
9.816 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Stream.php
6.707 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
StreamDecoratorTrait.php
3.331 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
StreamWrapper.php
3.326 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
UploadedFile.php
7.619 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Uri.php
22.406 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
UriComparator.php
1.338 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
UriNormalizer.php
8.38 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
UriResolver.php
8.963 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
Utils.php
14.825 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
functions.php
14.619 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
functions_include.php
0.226 KB
6 Dec 2023 8.16 PM
docteuh / users
0644
icon-redirect-manager-20260827192224.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644
icon-redirect-manager.svg
1.299 KB
23 Jun 2026 6.19 PM
docteuh / users
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF