RetryableMalformedResponseParser.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. namespace Aws\S3;
  3. use Aws\Api\Parser\AbstractParser;
  4. use Aws\Api\StructureShape;
  5. use Aws\Api\Parser\Exception\ParserException;
  6. use Aws\CommandInterface;
  7. use Aws\Exception\AwsException;
  8. use Psr\Http\Message\ResponseInterface;
  9. use Psr\Http\Message\StreamInterface;
  10. /**
  11. * Converts malformed responses to a retryable error type.
  12. *
  13. * @internal
  14. */
  15. class RetryableMalformedResponseParser extends AbstractParser
  16. {
  17. /** @var string */
  18. private $exceptionClass;
  19. public function __construct(
  20. callable $parser,
  21. $exceptionClass = AwsException::class
  22. ) {
  23. $this->parser = $parser;
  24. $this->exceptionClass = $exceptionClass;
  25. }
  26. public function __invoke(
  27. CommandInterface $command,
  28. ResponseInterface $response
  29. ) {
  30. $fn = $this->parser;
  31. try {
  32. return $fn($command, $response);
  33. } catch (ParserException $e) {
  34. throw new $this->exceptionClass(
  35. "Error parsing response for {$command->getName()}:"
  36. . " AWS parsing error: {$e->getMessage()}",
  37. $command,
  38. ['connection_error' => true, 'exception' => $e],
  39. $e
  40. );
  41. }
  42. }
  43. public function parseMemberFromStream(
  44. StreamInterface $stream,
  45. StructureShape $member,
  46. $response
  47. ) {
  48. return $this->parser->parseMemberFromStream($stream, $member, $response);
  49. }
  50. }