/WindowsAzure/ServiceRuntime/Internal/RuntimeKernel.php

http://github.com/WindowsAzure/azure-sdk-for-php · PHP · 254 lines · 86 code · 30 blank · 138 comment · 2 complexity · d505d343778f0e8a926f712e54488a8c MD5 · raw file

  1. <?php
  2. /**
  3. * LICENSE: Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * PHP version 5
  15. *
  16. * @category Microsoft
  17. * @package WindowsAzure\ServiceRuntime\Internal
  18. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  19. * @copyright 2012 Microsoft Corporation
  20. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  21. * @link https://github.com/windowsazure/azure-sdk-for-php
  22. */
  23. namespace WindowsAzure\ServiceRuntime\Internal;
  24. /**
  25. * The runtime kernel.
  26. *
  27. * @category Microsoft
  28. * @package WindowsAzure\ServiceRuntime\Internal
  29. * @author Azure PHP SDK <azurephpsdk@microsoft.com>
  30. * @copyright 2012 Microsoft Corporation
  31. * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
  32. * @version Release: @package_version@
  33. * @link https://github.com/windowsazure/azure-sdk-for-php
  34. */
  35. class RuntimeKernel
  36. {
  37. /**
  38. * The singleton instance of the runtime kernel.
  39. *
  40. * @var type
  41. */
  42. private static $_theKernel;
  43. /**
  44. * The current state serializer.
  45. *
  46. * @var type
  47. */
  48. private $_currentStateSerializer;
  49. /**
  50. * The goal state deserializer.
  51. *
  52. * @var type
  53. */
  54. private $_goalStateDeserializer;
  55. /**
  56. * The input channel.
  57. *
  58. * @var IInputChannel
  59. */
  60. private $_inputChannel;
  61. /**
  62. * The output channel.
  63. *
  64. * @var IOutputChannel
  65. */
  66. private $_outputChannel;
  67. /**
  68. * The runtime current state client.
  69. *
  70. * @var Protocol1RuntimeCurrentStateClient
  71. */
  72. private $_protocol1RuntimeCurrentStateClient;
  73. /**
  74. * The role environment data deserializer.
  75. *
  76. * @var IRoleEnvironmentDataDeserializer
  77. */
  78. private $_roleEnvironmentDataDeserializer;
  79. /**
  80. * The runtime goal state client.
  81. *
  82. * @var Protocol1RuntimeGoalStateClient
  83. */
  84. private $_protocol1RuntimeGoalStateClient;
  85. /**
  86. * The runtime version protocol client.
  87. *
  88. * @var RuntimeVersionProtocolClient
  89. */
  90. private $_runtimeVersionProtocolClient;
  91. /**
  92. * The runtime version manager.
  93. *
  94. * @var RuntimeVersionManager
  95. */
  96. private $_runtimeVersionManager;
  97. /**
  98. * Constructor
  99. */
  100. private function __construct()
  101. {
  102. $this->_currentStateSerializer = new XmlCurrentStateSerializer();
  103. $this->_goalStateDeserializer = new ChunkedGoalStateDeserializer();
  104. $this->_inputChannel = new FileInputChannel();
  105. $this->_outputChannel = new FileOutputChannel();
  106. $this->_protocol1RuntimeCurrentStateClient = new
  107. Protocol1RuntimeCurrentStateClient(
  108. $this->_currentStateSerializer,
  109. $this->_outputChannel
  110. );
  111. $this->_roleEnvironmentDataDeserializer = new
  112. XmlRoleEnvironmentDataDeserializer();
  113. $this->_protocol1RuntimeGoalStateClient = new
  114. Protocol1RuntimeGoalStateClient(
  115. $this->_protocol1RuntimeCurrentStateClient,
  116. $this->_goalStateDeserializer,
  117. $this->_roleEnvironmentDataDeserializer,
  118. $this->_inputChannel
  119. );
  120. $this->_runtimeVersionProtocolClient = new RuntimeVersionProtocolClient(
  121. $this->_inputChannel
  122. );
  123. $this->_runtimeVersionManager = new RuntimeVersionManager(
  124. $this->_runtimeVersionProtocolClient
  125. );
  126. }
  127. /**
  128. * Gets the current kernel instance.
  129. *
  130. * @param boolean $forceNewInstance Boolean value indicating if a new instance
  131. * should be obtained even if a previous one exists.
  132. *
  133. * @return RuntimeKernel
  134. */
  135. public static function getKernel($forceNewInstance = false)
  136. {
  137. if (is_null(self::$_theKernel) || $forceNewInstance) {
  138. self::$_theKernel = new RuntimeKernel();
  139. }
  140. return self::$_theKernel;
  141. }
  142. /**
  143. * Gets the current state serializer.
  144. *
  145. * @return ICurrentStateSerializer
  146. */
  147. public function getCurrentStateSerializer()
  148. {
  149. return $this->_currentStateSerializer;
  150. }
  151. /**
  152. * Gets the goal state deserializer.
  153. *
  154. * @return IGoalStateDeserializer
  155. */
  156. public function getGoalStateDeserializer()
  157. {
  158. return $this->_goalStateDeserializer;
  159. }
  160. /**
  161. * Gets the input channel.
  162. *
  163. * @return IInputChannel
  164. */
  165. public function getInputChannel()
  166. {
  167. return $this->_inputChannel;
  168. }
  169. /**
  170. * Gets the output channel.
  171. *
  172. * @return IOutputChannel
  173. */
  174. public function getOutputChannel()
  175. {
  176. return $this->_outputChannel;
  177. }
  178. /**
  179. * Gets the runtime current state client.
  180. *
  181. * @return Protocol1RuntimeCurrentStateClient
  182. */
  183. public function getProtocol1RuntimeCurrentStateClient()
  184. {
  185. return $this->_protocol1RuntimeCurrentStateClient;
  186. }
  187. /**
  188. * Gets the role environment data deserializer.
  189. *
  190. * @return IRoleEnvironmentDataDeserializer
  191. */
  192. public function getRoleEnvironmentDataDeserializer()
  193. {
  194. return $this->_roleEnvironmentDataDeserializer;
  195. }
  196. /**
  197. * Gets the runtime goal state client.
  198. *
  199. * @return Protocol1RuntimeGoalStateClient
  200. */
  201. public function getProtocol1RuntimeGoalStateClient()
  202. {
  203. return $this->_protocol1RuntimeGoalStateClient;
  204. }
  205. /**
  206. * Gets the runtime version protocol client.
  207. *
  208. * @return RuntimeVersionProtocolClient
  209. */
  210. public function getRuntimeVersionProtocolClient()
  211. {
  212. return $this->_runtimeVersionProtocolClient;
  213. }
  214. /**
  215. * Gets the runtime version manager.
  216. *
  217. * @return RuntimeVersionManager
  218. */
  219. public function getRuntimeVersionManager()
  220. {
  221. return $this->_runtimeVersionManager;
  222. }
  223. }
  224. ?>