ShapeMap.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. namespace Aws\Api;
  3. /**
  4. * Builds shape based on shape references.
  5. */
  6. class ShapeMap
  7. {
  8. /** @var array */
  9. private $definitions;
  10. /** @var Shape[] */
  11. private $simple;
  12. /**
  13. * @param array $shapeModels Associative array of shape definitions.
  14. */
  15. public function __construct(array $shapeModels)
  16. {
  17. $this->definitions = $shapeModels;
  18. }
  19. /**
  20. * Get an array of shape names.
  21. *
  22. * @return array
  23. */
  24. public function getShapeNames()
  25. {
  26. return array_keys($this->definitions);
  27. }
  28. /**
  29. * Resolve a shape reference
  30. *
  31. * @param array $shapeRef Shape reference shape
  32. *
  33. * @return Shape
  34. * @throws \InvalidArgumentException
  35. */
  36. public function resolve(array $shapeRef)
  37. {
  38. $shape = $shapeRef['shape'];
  39. if (!isset($this->definitions[$shape])) {
  40. throw new \InvalidArgumentException('Shape not found: ' . $shape);
  41. }
  42. $isSimple = count($shapeRef) == 1;
  43. if ($isSimple && isset($this->simple[$shape])) {
  44. return $this->simple[$shape];
  45. }
  46. $definition = $shapeRef + $this->definitions[$shape];
  47. $definition['name'] = $definition['shape'];
  48. if (isset($definition['shape'])) {
  49. unset($definition['shape']);
  50. }
  51. $result = Shape::create($definition, $this);
  52. if ($isSimple) {
  53. $this->simple[$shape] = $result;
  54. }
  55. return $result;
  56. }
  57. }