RetryTrait.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?php
  2. namespace AlibabaCloud\Client\Request\Traits;
  3. use Exception;
  4. use AlibabaCloud\Client\Support\Stringy;
  5. use AlibabaCloud\Client\Result\Result;
  6. use AlibabaCloud\Client\Filter\ClientFilter;
  7. use AlibabaCloud\Client\Exception\ClientException;
  8. /**
  9. * Trait RetryTrait
  10. *
  11. * @package AlibabaCloud\Client\Request\Traits
  12. */
  13. trait RetryTrait
  14. {
  15. /**
  16. * Server Retry Times
  17. *
  18. * @var int
  19. */
  20. private $serverRetry = 0;
  21. /**
  22. * Server Retry Strings
  23. *
  24. * @var string[]
  25. */
  26. private $serverRetryStrings = [];
  27. /**
  28. * Server Retry Codes
  29. *
  30. * @var int[]
  31. */
  32. private $serverRetryStatusCodes = [];
  33. /**
  34. * Client Retry Times
  35. *
  36. * @var int
  37. */
  38. private $clientRetry = 0;
  39. /**
  40. * Client Retry Strings
  41. *
  42. * @var string[]
  43. */
  44. private $clientRetryStrings = [];
  45. /**
  46. * Client Retry Codes
  47. *
  48. * @var int[]
  49. */
  50. private $clientRetryStatusCodes = [];
  51. /**
  52. * @param int $times
  53. * @param array $strings
  54. * @param array $statusCodes
  55. *
  56. * @return $this
  57. * @throws ClientException
  58. */
  59. public function retryByServer($times, array $strings, array $statusCodes = [])
  60. {
  61. $this->serverRetry = ClientFilter::retry($times);
  62. $this->serverRetryStrings = $strings;
  63. $this->serverRetryStatusCodes = $statusCodes;
  64. return $this;
  65. }
  66. /**
  67. * @param int $times
  68. * @param array $strings
  69. * @param array $codes
  70. *
  71. * @return $this
  72. * @throws ClientException
  73. */
  74. public function retryByClient($times, array $strings, array $codes = [])
  75. {
  76. $this->clientRetry = ClientFilter::retry($times);
  77. $this->clientRetryStrings = $strings;
  78. $this->clientRetryStatusCodes = $codes;
  79. return $this;
  80. }
  81. /**
  82. * @param Result $result
  83. *
  84. * @return bool
  85. */
  86. private function shouldServerRetry(Result $result)
  87. {
  88. if ($this->serverRetry <= 0) {
  89. return false;
  90. }
  91. if (in_array($result->getStatusCode(), $this->serverRetryStatusCodes)) {
  92. $this->serverRetry--;
  93. return true;
  94. }
  95. foreach ($this->serverRetryStrings as $message) {
  96. if (Stringy::contains($result->getBody(), $message)) {
  97. $this->serverRetry--;
  98. return true;
  99. }
  100. }
  101. return false;
  102. }
  103. /**
  104. * @param Exception $exception
  105. *
  106. * @return bool
  107. */
  108. private function shouldClientRetry(Exception $exception)
  109. {
  110. if ($this->clientRetry <= 0) {
  111. return false;
  112. }
  113. if (in_array($exception->getCode(), $this->clientRetryStatusCodes, true)) {
  114. $this->clientRetry--;
  115. return true;
  116. }
  117. foreach ($this->clientRetryStrings as $message) {
  118. if (Stringy::contains($exception->getMessage(), $message)) {
  119. $this->clientRetry--;
  120. return true;
  121. }
  122. }
  123. return false;
  124. }
  125. }