/ODataConnectorForMySQL/Common/ServiceConfig.php

http://odatamysqlphpconnect.codeplex.com · PHP · 123 lines · 85 code · 3 blank · 35 comment · 31 complexity · 3a388ebe165d9bbc1831a7269d33769a MD5 · raw file

  1. <?php
  2. /**
  3. * Defines the ServiceConfig class
  4. *
  5. * PHP version 5.3
  6. *
  7. * @category ODataConnectorForMySQLException
  8. * @package ODataConnectorForMySQLException_Common
  9. * @author Yash K. Kothari <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
  14. *
  15. */
  16. namespace ODataConnectorForMySQL\Common;
  17. use ODataConnectorForMySQL\Common\ODataConnectorForMySQLException;
  18. /**
  19. * Helper class to read and velidate the service config file
  20. *
  21. * @category ODataConnectorForMySQL
  22. * @package ODataConnectorForMySQL_Common
  23. * @author Yash K. Kothari <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
  28. */
  29. class ServiceConfig
  30. {
  31. /**
  32. * Read and validates the configuration for the given service.
  33. *
  34. * @param string $configFile config filename for all the services
  35. *
  36. * @return void
  37. *
  38. * @throws MySQLProducerException If configuration file
  39. * does not exists or malformed.
  40. */
  41. public static function validateAndGetsServiceInfo(
  42. $configFile = '../service.config.xml'
  43. ) {
  44. $xml = simplexml_load_file(
  45. dirname(__FILE__)."/".$configFile,
  46. null,
  47. LIBXML_NOCDATA
  48. );
  49. if (!$xml) {
  50. die('service.config file is not in proper XML format');
  51. }
  52. if (count($xml->children()) != 1) {
  53. die("Config file has more than one root entries");
  54. }
  55. $pathResult = $xml->xpath("/configuration/rules");
  56. if (empty($pathResult)) {
  57. die("No rules info found in service config");
  58. }
  59. $pathResult = $xml->xpath("/configuration/rules/viewManyToManyRelationship");
  60. if (empty($pathResult)) {
  61. die("The mendatory configuration info 'viewManyToManyRelationship' is"
  62. ." missing in the config file");
  63. } else if ((strtolower(strval($pathResult[0]))) != "true"
  64. and (strtolower(strval($pathResult[0]))) != "false"
  65. ) {
  66. die("Value: ".strval($pathResult[0])." is not valid for "
  67. ."'viewManyToManyRelationship' option");
  68. } else {
  69. $serviceInfo['viewManyToManyRelationship'] = strval($pathResult[0]);
  70. }
  71. unset($pathResult);
  72. $serviceInfo['followPularizeSingularizeRule'] = "true";
  73. $pathResult = $xml->xpath(
  74. "/configuration/rules/queryProviderVersion"
  75. );
  76. if (empty($pathResult)) {
  77. die("The mendatory configuration info 'queryProviderVersion' is missing"
  78. ." in the config file");
  79. } else if (strval($pathResult[0]) != "1" and strval($pathResult[0]) != "2") {
  80. die("Value: ".strval($pathResult[0])." is not valid for "
  81. ."'queryProviderVersion' option");
  82. } else {
  83. $serviceInfo['queryProviderVersion'] = strval($pathResult[0]);
  84. }
  85. unset($pathResult);
  86. $pathResult = $xml->xpath(
  87. "/configuration/rules/acceptCountRequest"
  88. );
  89. if (!empty($pathResult) and strtolower(strval($pathResult[0])) != "true"
  90. and strtolower(strval($pathResult[0])) != "false"
  91. and strtolower(strval($pathResult[0])) != "null"
  92. ) {
  93. die("Value: ".strval($pathResult[0])." is not valid for "
  94. ."'acceptCountRequest' option");
  95. }
  96. unset($pathResult);
  97. $pathResult = $xml->xpath(
  98. "/configuration/rules/acceptProjectionRequest"
  99. );
  100. if (!empty($pathResult) and strtolower(strval($pathResult[0])) != "true"
  101. and strtolower(strval($pathResult[0])) != "false"
  102. and strtolower(strval($pathResult[0])) != "null"
  103. ) {
  104. die("Value: ".strval($pathResult[0])." is not valid for"
  105. ."'acceptProjectionRequest' option");
  106. }
  107. unset($pathResult);
  108. $pathResult = $xml->xpath(
  109. "/configuration/rules/maxDataServiceVersion"
  110. );
  111. if ( !empty($pathResult) and strval($pathResult[0]) != "V1"
  112. and strval($pathResult[0]) != "V2" and strval($pathResult[0]) != "V3"
  113. ) {
  114. die("Value: ".strval($pathResult[0])." is not valid for"
  115. ."'maxDataServiceVersion' option");
  116. }
  117. unset($pathResult);
  118. return $serviceInfo;
  119. }
  120. }