History.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. namespace Aws;
  3. use Psr\Http\Message\RequestInterface;
  4. use Aws\Exception\AwsException;
  5. /**
  6. * Represents a history container that is required when using the history
  7. * middleware.
  8. */
  9. class History implements \Countable, \IteratorAggregate
  10. {
  11. private $maxEntries;
  12. private $entries = array();
  13. /**
  14. * @param int $maxEntries Maximum number of entries to store.
  15. */
  16. public function __construct($maxEntries = 10)
  17. {
  18. $this->maxEntries = $maxEntries;
  19. }
  20. /**
  21. * @return int
  22. */
  23. #[\ReturnTypeWillChange]
  24. public function count()
  25. {
  26. return count($this->entries);
  27. }
  28. #[\ReturnTypeWillChange]
  29. public function getIterator()
  30. {
  31. return new \ArrayIterator(array_values($this->entries));
  32. }
  33. /**
  34. * Get the last finished command seen by the history container.
  35. *
  36. * @return CommandInterface
  37. * @throws \LogicException if no commands have been seen.
  38. */
  39. public function getLastCommand()
  40. {
  41. if (!$this->entries) {
  42. throw new \LogicException('No commands received');
  43. }
  44. return end($this->entries)['command'];
  45. }
  46. /**
  47. * Get the last finished request seen by the history container.
  48. *
  49. * @return RequestInterface
  50. * @throws \LogicException if no requests have been seen.
  51. */
  52. public function getLastRequest()
  53. {
  54. if (!$this->entries) {
  55. throw new \LogicException('No requests received');
  56. }
  57. return end($this->entries)['request'];
  58. }
  59. /**
  60. * Get the last received result or exception.
  61. *
  62. * @return ResultInterface|AwsException
  63. * @throws \LogicException if no return values have been received.
  64. */
  65. public function getLastReturn()
  66. {
  67. if (!$this->entries) {
  68. throw new \LogicException('No entries');
  69. }
  70. $last = end($this->entries);
  71. if (isset($last['result'])) {
  72. return $last['result'];
  73. }
  74. if (isset($last['exception'])) {
  75. return $last['exception'];
  76. }
  77. throw new \LogicException('No return value for last entry.');
  78. }
  79. /**
  80. * Initiate an entry being added to the history.
  81. *
  82. * @param CommandInterface $cmd Command be executed.
  83. * @param RequestInterface $req Request being sent.
  84. *
  85. * @return string Returns the ticket used to finish the entry.
  86. */
  87. public function start(CommandInterface $cmd, RequestInterface $req)
  88. {
  89. $ticket = uniqid();
  90. $this->entries[$ticket] = [
  91. 'command' => $cmd,
  92. 'request' => $req,
  93. 'result' => null,
  94. 'exception' => null,
  95. ];
  96. return $ticket;
  97. }
  98. /**
  99. * Finish adding an entry to the history container.
  100. *
  101. * @param string $ticket Ticket returned from the start call.
  102. * @param mixed $result The result (an exception or AwsResult).
  103. */
  104. public function finish($ticket, $result)
  105. {
  106. if (!isset($this->entries[$ticket])) {
  107. throw new \InvalidArgumentException('Invalid history ticket');
  108. }
  109. if (isset($this->entries[$ticket]['result'])
  110. || isset($this->entries[$ticket]['exception'])
  111. ) {
  112. throw new \LogicException('History entry is already finished');
  113. }
  114. if ($result instanceof \Exception) {
  115. $this->entries[$ticket]['exception'] = $result;
  116. } else {
  117. $this->entries[$ticket]['result'] = $result;
  118. }
  119. if (count($this->entries) >= $this->maxEntries) {
  120. $this->entries = array_slice($this->entries, -$this->maxEntries, null, true);
  121. }
  122. }
  123. /**
  124. * Flush the history
  125. */
  126. public function clear()
  127. {
  128. $this->entries = [];
  129. }
  130. /**
  131. * Converts the history to an array.
  132. *
  133. * @return array
  134. */
  135. public function toArray()
  136. {
  137. return array_values($this->entries);
  138. }
  139. }