Shape.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace Aws\Api;
  3. /**
  4. * Base class representing a modeled shape.
  5. */
  6. class Shape extends AbstractModel
  7. {
  8. /**
  9. * Get a concrete shape for the given definition.
  10. *
  11. * @param array $definition
  12. * @param ShapeMap $shapeMap
  13. *
  14. * @return mixed
  15. * @throws \RuntimeException if the type is invalid
  16. */
  17. public static function create(array $definition, ShapeMap $shapeMap)
  18. {
  19. static $map = [
  20. 'structure' => StructureShape::class,
  21. 'map' => MapShape::class,
  22. 'list' => ListShape::class,
  23. 'timestamp' => TimestampShape::class,
  24. 'integer' => Shape::class,
  25. 'double' => Shape::class,
  26. 'float' => Shape::class,
  27. 'long' => Shape::class,
  28. 'string' => Shape::class,
  29. 'byte' => Shape::class,
  30. 'character' => Shape::class,
  31. 'blob' => Shape::class,
  32. 'boolean' => Shape::class
  33. ];
  34. if (isset($definition['shape'])) {
  35. return $shapeMap->resolve($definition);
  36. }
  37. if (!isset($map[$definition['type']])) {
  38. throw new \RuntimeException('Invalid type: '
  39. . print_r($definition, true));
  40. }
  41. $type = $map[$definition['type']];
  42. return new $type($definition, $shapeMap);
  43. }
  44. /**
  45. * Get the type of the shape
  46. *
  47. * @return string
  48. */
  49. public function getType()
  50. {
  51. return $this->definition['type'];
  52. }
  53. /**
  54. * Get the name of the shape
  55. *
  56. * @return string
  57. */
  58. public function getName()
  59. {
  60. return $this->definition['name'];
  61. }
  62. /**
  63. * Get a context param definition.
  64. */
  65. public function getContextParam()
  66. {
  67. return $this->contextParam;
  68. }
  69. }