/OData Producer for PHP/library/ODataProducer/Providers/Metadata/ResourceAssociationSetEnd.php

# · PHP · 153 lines · 65 code · 10 blank · 78 comment · 17 complexity · 7dbeb3fcd804da18551f0aa0f90d3d45 MD5 · raw file

  1. <?php
  2. /**
  3. * Type to represent association (relationship) set end.
  4. *
  5. * PHP version 5.3
  6. *
  7. * @category ODataProducer
  8. * @package ODataProducer_Providers_Metadata
  9. * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>
  10. * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)
  11. * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)
  12. * @version SVN: 1.0
  13. * @link http://odataphpproducer.codeplex.com
  14. *
  15. */
  16. namespace ODataProducer\Providers\Metadata;
  17. use ODataProducer\Common\Messages;
  18. /**
  19. * Type to represent association (relationship) set end.
  20. *
  21. * @category ODataProducer
  22. * @package ODataProducer_Providers_Metadata
  23. * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>
  24. * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)
  25. * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)
  26. * @version Release: 1.0
  27. * @link http://odataphpproducer.codeplex.com
  28. */
  29. class ResourceAssociationSetEnd
  30. {
  31. /**
  32. * Resource set for the association end.
  33. * @var ResourceSet
  34. */
  35. private $_resourceSet;
  36. /**
  37. * Resource type for the association end.
  38. * @var ResourceType
  39. */
  40. private $_resourceType;
  41. /**
  42. * Resource property for the association end.
  43. * @var ResourceProperty
  44. */
  45. private $_resourceProperty;
  46. /**
  47. * Construct new instance of ResourceAssociationSetEnd
  48. * Note: The $resourceSet represents collection of an entity, The
  49. * $resourceType can be this entity's type or type of any of the
  50. * base resource of this entity, on which the navigation property
  51. * represented by $resourceProperty is defined.
  52. *
  53. * @param ResourceSet $resourceSet Resource set for the association end
  54. * @param ResourceType $resourceType Resource type for the association end
  55. * @param ResourceProperty $resourceProperty Resource property for the association end
  56. *
  57. * @throws \InvalidArgumentException
  58. */
  59. public function __construct(ResourceSet $resourceSet,
  60. ResourceType $resourceType, $resourceProperty
  61. ) {
  62. if (!is_null($resourceProperty)
  63. && !($resourceProperty instanceof ResourceProperty)
  64. ) {
  65. throw new \InvalidArgumentException(
  66. Messages::resourceAssociationSetPropertyMustBeNullOrInsatnceofResourceProperty(
  67. '$resourceProperty'
  68. )
  69. );
  70. }
  71. if (!is_null($resourceProperty)
  72. && (is_null($resourceType->tryResolvePropertyTypeByName($resourceProperty->getName())) || (($resourceProperty->getKind() != ResourcePropertyKind::RESOURCE_REFERENCE) && ($resourceProperty->getKind() != ResourcePropertyKind::RESOURCESET_REFERENCE)))
  73. ) {
  74. throw new \InvalidArgumentException(
  75. Messages::resourceAssociationSetEndPropertyMustBeNavigationProperty(
  76. $resourceProperty->getName(), $resourceType->getFullName()
  77. )
  78. );
  79. }
  80. if (!$resourceSet->getResourceType()->isAssignableFrom($resourceType)
  81. && !$resourceType->isAssignableFrom($resourceSet->getResourceType())
  82. ) {
  83. throw new \InvalidArgumentException(
  84. Messages::resourceAssociationSetEndResourceTypeMustBeAssignableToResourceSet(
  85. $resourceType->getFullName(), $resourceSet->getName()
  86. )
  87. );
  88. }
  89. $this->_resourceSet = $resourceSet;
  90. $this->_resourceType = $resourceType;
  91. $this->_resourceProperty = $resourceProperty;
  92. }
  93. /**
  94. * To check this relationship belongs to a specfic resource set, type
  95. * and property
  96. *
  97. * @param ResourceSet $resourceSet Resource set for the association
  98. * end
  99. * @param ResourceType $resourceType Resource type for the association
  100. * end
  101. * @param ResourceProperty $resourceProperty Resource property for the
  102. * association end
  103. *
  104. * @return boolean
  105. */
  106. public function isBelongsTo(ResourceSet $resourceSet,
  107. ResourceType $resourceType, ResourceProperty $resourceProperty
  108. ) {
  109. return (strcmp($resourceSet->getName(), $this->_resourceSet->getName()) == 0
  110. && $this->_resourceType->isAssignableFrom($resourceType)
  111. && ((is_null($resourceProperty) && is_null($this->_resourceProperty)) ||
  112. (!is_null($resourceProperty) && !is_null($this->_resourceProperty) && (strcmp($resourceProperty->getName(), $this->_resourceProperty->getName()) == 0)))
  113. );
  114. }
  115. /**
  116. * Gets reference to resource set
  117. *
  118. * @return ResourceSet
  119. */
  120. public function getResourceSet()
  121. {
  122. return $this->_resourceSet;
  123. }
  124. /**
  125. * Gets reference to resource type
  126. *
  127. * @return ResourceType
  128. */
  129. public function getResourceType()
  130. {
  131. return $this->_resourceType;
  132. }
  133. /**
  134. * Gets reference to resource property
  135. *
  136. * @return ResourceProperty
  137. */
  138. public function getResourceProperty()
  139. {
  140. return $this->_resourceProperty;
  141. }
  142. }
  143. ?>