??????????????
<?php
namespace App\Libs\Sdk;

/**
 * Class BodyHandler
 * A utility class that can be used to support binary responses. Its handleBodyPart method can be used as
 * callback to methods that require a body handler callable.
 *
 * @package OnlinePayments\Sdk
 */
class BodyHandler
{
    /** @var bool */
    private bool $initialized = false;

    /**
     * Initializes this body handler if not done yet, then calls doHandleBodyPart.
     * @param string $bodyPart
     * @param array $headers
     */
    final public function handleBodyPart(string $bodyPart, array $headers): void
    {
        if (!$this->initialized) {
            $this->initialize($headers);
            $this->initialized = true;
        }
        $this->doHandleBodyPart($bodyPart);
    }

    /**
     * Calls doCleanup, then marks this body handler as not initialized.
     * Afterwards this instance can be reused again.
     */
    final public function close(): void
    {
        $this->doCleanup();
        $this->initialized = false;
    }

    /**
     * Can be used to initialize this body handler based on the given headers.
     * The default implementation does nothing.
     * @param array $headers
     */
    protected function initialize(array $headers): void
    {
    }

    /**
     * Can be used to handle a single body part.
     * The default implementation does nothing.
     * @param string $bodyPart
     */
    protected function doHandleBodyPart(string $bodyPart): void
    {
    }

    /**
     * Can be used to do cleanup resources allocated by this body handler.
     * The default implementation does nothing.
     */
    protected function doCleanup(): voi