zeroc-ice 3.6b1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (675) hide show
  1. checksums.yaml +7 -0
  2. data/ICE_LICENSE +54 -0
  3. data/LICENSE +339 -0
  4. data/bin/slice2rb +17 -0
  5. data/ext/Communicator.cpp +596 -0
  6. data/ext/Communicator.h +25 -0
  7. data/ext/Config.h +111 -0
  8. data/ext/Connection.cpp +381 -0
  9. data/ext/Connection.h +26 -0
  10. data/ext/Endpoint.cpp +311 -0
  11. data/ext/Endpoint.h +27 -0
  12. data/ext/ImplicitContext.cpp +152 -0
  13. data/ext/ImplicitContext.h +25 -0
  14. data/ext/Init.cpp +52 -0
  15. data/ext/Logger.cpp +151 -0
  16. data/ext/Logger.h +28 -0
  17. data/ext/ObjectFactory.cpp +140 -0
  18. data/ext/ObjectFactory.h +50 -0
  19. data/ext/Operation.cpp +676 -0
  20. data/ext/Operation.h +36 -0
  21. data/ext/Properties.cpp +369 -0
  22. data/ext/Properties.h +25 -0
  23. data/ext/Proxy.cpp +1354 -0
  24. data/ext/Proxy.h +27 -0
  25. data/ext/Slice.cpp +223 -0
  26. data/ext/Slice.h +22 -0
  27. data/ext/Types.cpp +3160 -0
  28. data/ext/Types.h +545 -0
  29. data/ext/Util.cpp +792 -0
  30. data/ext/Util.h +511 -0
  31. data/ext/extconf.rb +118 -0
  32. data/ext/ice/BZIP_LICENSE +42 -0
  33. data/ext/ice/MCPP_LICENSE +36 -0
  34. data/ext/ice/bzip2/blocksort.c +1094 -0
  35. data/ext/ice/bzip2/bzlib.c +1572 -0
  36. data/ext/ice/bzip2/bzlib.h +282 -0
  37. data/ext/ice/bzip2/bzlib_private.h +509 -0
  38. data/ext/ice/bzip2/compress.c +672 -0
  39. data/ext/ice/bzip2/crctable.c +104 -0
  40. data/ext/ice/bzip2/decompress.c +646 -0
  41. data/ext/ice/bzip2/huffman.c +205 -0
  42. data/ext/ice/bzip2/randtable.c +84 -0
  43. data/ext/ice/cpp/include/Ice/ACMF.h +30 -0
  44. data/ext/ice/cpp/include/Ice/Application.h +156 -0
  45. data/ext/ice/cpp/include/Ice/AsyncResult.h +363 -0
  46. data/ext/ice/cpp/include/Ice/AsyncResultF.h +26 -0
  47. data/ext/ice/cpp/include/Ice/BasicStream.h +1315 -0
  48. data/ext/ice/cpp/include/Ice/Buffer.h +159 -0
  49. data/ext/ice/cpp/include/Ice/BuiltinSequences.h +74 -0
  50. data/ext/ice/cpp/include/Ice/Communicator.h +194 -0
  51. data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +115 -0
  52. data/ext/ice/cpp/include/Ice/CommunicatorF.h +60 -0
  53. data/ext/ice/cpp/include/Ice/Config.h +97 -0
  54. data/ext/ice/cpp/include/Ice/Connection.h +495 -0
  55. data/ext/ice/cpp/include/Ice/ConnectionAsync.h +115 -0
  56. data/ext/ice/cpp/include/Ice/ConnectionF.h +72 -0
  57. data/ext/ice/cpp/include/Ice/ConnectionFactoryF.h +30 -0
  58. data/ext/ice/cpp/include/Ice/ConnectionIF.h +37 -0
  59. data/ext/ice/cpp/include/Ice/Current.h +94 -0
  60. data/ext/ice/cpp/include/Ice/DefaultObjectFactory.h +48 -0
  61. data/ext/ice/cpp/include/Ice/DeprecatedStringConverter.h +62 -0
  62. data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +33 -0
  63. data/ext/ice/cpp/include/Ice/Dispatcher.h +51 -0
  64. data/ext/ice/cpp/include/Ice/DynamicLibrary.h +105 -0
  65. data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +29 -0
  66. data/ext/ice/cpp/include/Ice/Endpoint.h +350 -0
  67. data/ext/ice/cpp/include/Ice/EndpointF.h +97 -0
  68. data/ext/ice/cpp/include/Ice/EndpointTypes.h +74 -0
  69. data/ext/ice/cpp/include/Ice/Exception.h +114 -0
  70. data/ext/ice/cpp/include/Ice/FacetMap.h +56 -0
  71. data/ext/ice/cpp/include/Ice/FactoryTable.h +69 -0
  72. data/ext/ice/cpp/include/Ice/FactoryTableInit.h +87 -0
  73. data/ext/ice/cpp/include/Ice/Format.h +39 -0
  74. data/ext/ice/cpp/include/Ice/Functional.h +138 -0
  75. data/ext/ice/cpp/include/Ice/GCObject.h +73 -0
  76. data/ext/ice/cpp/include/Ice/Handle.h +192 -0
  77. data/ext/ice/cpp/include/Ice/Ice.h +54 -0
  78. data/ext/ice/cpp/include/Ice/Identity.h +160 -0
  79. data/ext/ice/cpp/include/Ice/ImplicitContext.h +96 -0
  80. data/ext/ice/cpp/include/Ice/ImplicitContextF.h +60 -0
  81. data/ext/ice/cpp/include/Ice/Incoming.h +131 -0
  82. data/ext/ice/cpp/include/Ice/IncomingAsync.h +108 -0
  83. data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +35 -0
  84. data/ext/ice/cpp/include/Ice/Initialize.h +141 -0
  85. data/ext/ice/cpp/include/Ice/InstanceF.h +26 -0
  86. data/ext/ice/cpp/include/Ice/Instrumentation.h +377 -0
  87. data/ext/ice/cpp/include/Ice/InstrumentationF.h +71 -0
  88. data/ext/ice/cpp/include/Ice/LocalException.h +1022 -0
  89. data/ext/ice/cpp/include/Ice/LocalObject.h +36 -0
  90. data/ext/ice/cpp/include/Ice/LocalObjectF.h +26 -0
  91. data/ext/ice/cpp/include/Ice/Locator.h +2191 -0
  92. data/ext/ice/cpp/include/Ice/LocatorF.h +89 -0
  93. data/ext/ice/cpp/include/Ice/Logger.h +94 -0
  94. data/ext/ice/cpp/include/Ice/LoggerF.h +60 -0
  95. data/ext/ice/cpp/include/Ice/LoggerUtil.h +153 -0
  96. data/ext/ice/cpp/include/Ice/Makefile +26 -0
  97. data/ext/ice/cpp/include/Ice/Metrics.h +2989 -0
  98. data/ext/ice/cpp/include/Ice/MetricsAdminI.h +662 -0
  99. data/ext/ice/cpp/include/Ice/MetricsFunctional.h +144 -0
  100. data/ext/ice/cpp/include/Ice/MetricsObserverI.h +576 -0
  101. data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +55 -0
  102. data/ext/ice/cpp/include/Ice/Object.h +165 -0
  103. data/ext/ice/cpp/include/Ice/ObjectAdapter.h +162 -0
  104. data/ext/ice/cpp/include/Ice/ObjectAdapterF.h +60 -0
  105. data/ext/ice/cpp/include/Ice/ObjectAdapterFactoryF.h +26 -0
  106. data/ext/ice/cpp/include/Ice/ObjectF.h +26 -0
  107. data/ext/ice/cpp/include/Ice/ObjectFactory.h +86 -0
  108. data/ext/ice/cpp/include/Ice/ObjectFactoryF.h +60 -0
  109. data/ext/ice/cpp/include/Ice/ObjectFactoryManagerF.h +26 -0
  110. data/ext/ice/cpp/include/Ice/ObserverHelper.h +177 -0
  111. data/ext/ice/cpp/include/Ice/Outgoing.h +197 -0
  112. data/ext/ice/cpp/include/Ice/OutgoingAsync.h +264 -0
  113. data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +38 -0
  114. data/ext/ice/cpp/include/Ice/Plugin.h +121 -0
  115. data/ext/ice/cpp/include/Ice/PluginF.h +66 -0
  116. data/ext/ice/cpp/include/Ice/Process.h +568 -0
  117. data/ext/ice/cpp/include/Ice/ProcessF.h +77 -0
  118. data/ext/ice/cpp/include/Ice/Properties.h +130 -0
  119. data/ext/ice/cpp/include/Ice/PropertiesAdmin.h +824 -0
  120. data/ext/ice/cpp/include/Ice/PropertiesF.h +83 -0
  121. data/ext/ice/cpp/include/Ice/Protocol.h +242 -0
  122. data/ext/ice/cpp/include/Ice/Proxy.h +2448 -0
  123. data/ext/ice/cpp/include/Ice/ProxyF.h +78 -0
  124. data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +26 -0
  125. data/ext/ice/cpp/include/Ice/ProxyHandle.h +330 -0
  126. data/ext/ice/cpp/include/Ice/ReferenceF.h +34 -0
  127. data/ext/ice/cpp/include/Ice/RemoteLogger.h +1496 -0
  128. data/ext/ice/cpp/include/Ice/RequestHandlerF.h +29 -0
  129. data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +25 -0
  130. data/ext/ice/cpp/include/Ice/Router.h +1155 -0
  131. data/ext/ice/cpp/include/Ice/RouterF.h +77 -0
  132. data/ext/ice/cpp/include/Ice/ServantLocator.h +90 -0
  133. data/ext/ice/cpp/include/Ice/ServantLocatorF.h +60 -0
  134. data/ext/ice/cpp/include/Ice/ServantManagerF.h +26 -0
  135. data/ext/ice/cpp/include/Ice/Service.h +260 -0
  136. data/ext/ice/cpp/include/Ice/SliceChecksumDict.h +56 -0
  137. data/ext/ice/cpp/include/Ice/SliceChecksums.h +34 -0
  138. data/ext/ice/cpp/include/Ice/SlicedData.h +103 -0
  139. data/ext/ice/cpp/include/Ice/SlicedDataF.h +34 -0
  140. data/ext/ice/cpp/include/Ice/Stream.h +449 -0
  141. data/ext/ice/cpp/include/Ice/StreamF.h +30 -0
  142. data/ext/ice/cpp/include/Ice/StreamHelpers.h +877 -0
  143. data/ext/ice/cpp/include/Ice/ThreadPoolF.h +28 -0
  144. data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +56 -0
  145. data/ext/ice/cpp/include/Ice/Version.h +254 -0
  146. data/ext/ice/cpp/include/IceSSL/Config.h +23 -0
  147. data/ext/ice/cpp/include/IceSSL/ConnectionInfo.h +119 -0
  148. data/ext/ice/cpp/include/IceSSL/EndpointInfo.h +101 -0
  149. data/ext/ice/cpp/include/IceSSL/IceSSL.h +22 -0
  150. data/ext/ice/cpp/include/IceSSL/Makefile +26 -0
  151. data/ext/ice/cpp/include/IceSSL/Plugin.h +558 -0
  152. data/ext/ice/cpp/include/IceUtil/AbstractMutex.h +119 -0
  153. data/ext/ice/cpp/include/IceUtil/Cache.h +362 -0
  154. data/ext/ice/cpp/include/IceUtil/Cond.h +323 -0
  155. data/ext/ice/cpp/include/IceUtil/Config.h +234 -0
  156. data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +50 -0
  157. data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +70 -0
  158. data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +45 -0
  159. data/ext/ice/cpp/include/IceUtil/Exception.h +184 -0
  160. data/ext/ice/cpp/include/IceUtil/Functional.h +389 -0
  161. data/ext/ice/cpp/include/IceUtil/Handle.h +266 -0
  162. data/ext/ice/cpp/include/IceUtil/IceUtil.h +51 -0
  163. data/ext/ice/cpp/include/IceUtil/IconvStringConverter.h +302 -0
  164. data/ext/ice/cpp/include/IceUtil/InputUtil.h +47 -0
  165. data/ext/ice/cpp/include/IceUtil/Iterator.h +36 -0
  166. data/ext/ice/cpp/include/IceUtil/Lock.h +135 -0
  167. data/ext/ice/cpp/include/IceUtil/Makefile +26 -0
  168. data/ext/ice/cpp/include/IceUtil/Monitor.h +249 -0
  169. data/ext/ice/cpp/include/IceUtil/Mutex.h +357 -0
  170. data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +28 -0
  171. data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +83 -0
  172. data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +82 -0
  173. data/ext/ice/cpp/include/IceUtil/Optional.h +322 -0
  174. data/ext/ice/cpp/include/IceUtil/Options.h +141 -0
  175. data/ext/ice/cpp/include/IceUtil/OutputUtil.h +362 -0
  176. data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +19 -0
  177. data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +26 -0
  178. data/ext/ice/cpp/include/IceUtil/Random.h +24 -0
  179. data/ext/ice/cpp/include/IceUtil/RecMutex.h +113 -0
  180. data/ext/ice/cpp/include/IceUtil/SHA1.h +65 -0
  181. data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +44 -0
  182. data/ext/ice/cpp/include/IceUtil/ScopedArray.h +97 -0
  183. data/ext/ice/cpp/include/IceUtil/Shared.h +168 -0
  184. data/ext/ice/cpp/include/IceUtil/StringConverter.h +175 -0
  185. data/ext/ice/cpp/include/IceUtil/StringUtil.h +91 -0
  186. data/ext/ice/cpp/include/IceUtil/Thread.h +181 -0
  187. data/ext/ice/cpp/include/IceUtil/ThreadException.h +108 -0
  188. data/ext/ice/cpp/include/IceUtil/Time.h +209 -0
  189. data/ext/ice/cpp/include/IceUtil/Timer.h +143 -0
  190. data/ext/ice/cpp/include/IceUtil/UUID.h +22 -0
  191. data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +42 -0
  192. data/ext/ice/cpp/include/IceUtil/UniquePtr.h +101 -0
  193. data/ext/ice/cpp/include/Slice/CPlusPlusUtil.h +64 -0
  194. data/ext/ice/cpp/include/Slice/Checksum.h +26 -0
  195. data/ext/ice/cpp/include/Slice/CsUtil.h +92 -0
  196. data/ext/ice/cpp/include/Slice/DotNetNames.h +34 -0
  197. data/ext/ice/cpp/include/Slice/FileTracker.h +71 -0
  198. data/ext/ice/cpp/include/Slice/JavaUtil.h +277 -0
  199. data/ext/ice/cpp/include/Slice/Makefile +26 -0
  200. data/ext/ice/cpp/include/Slice/PHPUtil.h +50 -0
  201. data/ext/ice/cpp/include/Slice/Parser.h +1116 -0
  202. data/ext/ice/cpp/include/Slice/Preprocessor.h +68 -0
  203. data/ext/ice/cpp/include/Slice/PythonUtil.h +64 -0
  204. data/ext/ice/cpp/include/Slice/RubyUtil.h +54 -0
  205. data/ext/ice/cpp/include/Slice/Util.h +33 -0
  206. data/ext/ice/cpp/src/Ice/ACM.cpp +343 -0
  207. data/ext/ice/cpp/src/Ice/ACM.h +117 -0
  208. data/ext/ice/cpp/src/Ice/Acceptor.cpp +16 -0
  209. data/ext/ice/cpp/src/Ice/Acceptor.h +41 -0
  210. data/ext/ice/cpp/src/Ice/AcceptorF.h +30 -0
  211. data/ext/ice/cpp/src/Ice/Application.cpp +760 -0
  212. data/ext/ice/cpp/src/Ice/AsyncResult.cpp +599 -0
  213. data/ext/ice/cpp/src/Ice/Base64.cpp +269 -0
  214. data/ext/ice/cpp/src/Ice/Base64.h +36 -0
  215. data/ext/ice/cpp/src/Ice/BasicStream.cpp +3393 -0
  216. data/ext/ice/cpp/src/Ice/Buffer.cpp +98 -0
  217. data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +34 -0
  218. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +718 -0
  219. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +106 -0
  220. data/ext/ice/cpp/src/Ice/Communicator.cpp +45 -0
  221. data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +38 -0
  222. data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +386 -0
  223. data/ext/ice/cpp/src/Ice/CommunicatorI.h +112 -0
  224. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +546 -0
  225. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +97 -0
  226. data/ext/ice/cpp/src/Ice/Connection.cpp +58 -0
  227. data/ext/ice/cpp/src/Ice/ConnectionF.cpp +38 -0
  228. data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +1639 -0
  229. data/ext/ice/cpp/src/Ice/ConnectionFactory.h +236 -0
  230. data/ext/ice/cpp/src/Ice/ConnectionI.cpp +3876 -0
  231. data/ext/ice/cpp/src/Ice/ConnectionI.h +364 -0
  232. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +115 -0
  233. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +50 -0
  234. data/ext/ice/cpp/src/Ice/Connector.cpp +16 -0
  235. data/ext/ice/cpp/src/Ice/Connector.h +36 -0
  236. data/ext/ice/cpp/src/Ice/ConnectorF.h +26 -0
  237. data/ext/ice/cpp/src/Ice/Current.cpp +38 -0
  238. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +168 -0
  239. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +57 -0
  240. data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +26 -0
  241. data/ext/ice/cpp/src/Ice/DeprecatedStringConverter.cpp +60 -0
  242. data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +49 -0
  243. data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +281 -0
  244. data/ext/ice/cpp/src/Ice/Endpoint.cpp +53 -0
  245. data/ext/ice/cpp/src/Ice/EndpointF.cpp +38 -0
  246. data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +25 -0
  247. data/ext/ice/cpp/src/Ice/EndpointFactory.h +44 -0
  248. data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +26 -0
  249. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +208 -0
  250. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +46 -0
  251. data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +26 -0
  252. data/ext/ice/cpp/src/Ice/EndpointI.cpp +87 -0
  253. data/ext/ice/cpp/src/Ice/EndpointI.h +165 -0
  254. data/ext/ice/cpp/src/Ice/EndpointIF.h +41 -0
  255. data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +38 -0
  256. data/ext/ice/cpp/src/Ice/EventHandler.cpp +35 -0
  257. data/ext/ice/cpp/src/Ice/EventHandler.h +78 -0
  258. data/ext/ice/cpp/src/Ice/EventHandlerF.h +26 -0
  259. data/ext/ice/cpp/src/Ice/EventLoggerMsg.h +53 -0
  260. data/ext/ice/cpp/src/Ice/Exception.cpp +832 -0
  261. data/ext/ice/cpp/src/Ice/FacetMap.cpp +34 -0
  262. data/ext/ice/cpp/src/Ice/FactoryTable.cpp +158 -0
  263. data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +95 -0
  264. data/ext/ice/cpp/src/Ice/GCObject.cpp +444 -0
  265. data/ext/ice/cpp/src/Ice/HashUtil.h +59 -0
  266. data/ext/ice/cpp/src/Ice/HttpParser.cpp +680 -0
  267. data/ext/ice/cpp/src/Ice/HttpParser.h +124 -0
  268. data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +733 -0
  269. data/ext/ice/cpp/src/Ice/IPEndpointI.h +157 -0
  270. data/ext/ice/cpp/src/Ice/IPEndpointIF.h +29 -0
  271. data/ext/ice/cpp/src/Ice/Identity.cpp +42 -0
  272. data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +41 -0
  273. data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +38 -0
  274. data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +639 -0
  275. data/ext/ice/cpp/src/Ice/ImplicitContextI.h +51 -0
  276. data/ext/ice/cpp/src/Ice/Incoming.cpp +757 -0
  277. data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +340 -0
  278. data/ext/ice/cpp/src/Ice/IncomingRequest.h +37 -0
  279. data/ext/ice/cpp/src/Ice/Initialize.cpp +401 -0
  280. data/ext/ice/cpp/src/Ice/Instance.cpp +1928 -0
  281. data/ext/ice/cpp/src/Ice/Instance.h +198 -0
  282. data/ext/ice/cpp/src/Ice/Instrumentation.cpp +68 -0
  283. data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +43 -0
  284. data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +1083 -0
  285. data/ext/ice/cpp/src/Ice/InstrumentationI.h +262 -0
  286. data/ext/ice/cpp/src/Ice/LocalException.cpp +2091 -0
  287. data/ext/ice/cpp/src/Ice/LocalObject.cpp +29 -0
  288. data/ext/ice/cpp/src/Ice/Locator.cpp +1946 -0
  289. data/ext/ice/cpp/src/Ice/LocatorF.cpp +39 -0
  290. data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +917 -0
  291. data/ext/ice/cpp/src/Ice/LocatorInfo.h +193 -0
  292. data/ext/ice/cpp/src/Ice/LocatorInfoF.h +34 -0
  293. data/ext/ice/cpp/src/Ice/Logger.cpp +40 -0
  294. data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +862 -0
  295. data/ext/ice/cpp/src/Ice/LoggerAdminI.h +46 -0
  296. data/ext/ice/cpp/src/Ice/LoggerF.cpp +38 -0
  297. data/ext/ice/cpp/src/Ice/LoggerI.cpp +199 -0
  298. data/ext/ice/cpp/src/Ice/LoggerI.h +57 -0
  299. data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +107 -0
  300. data/ext/ice/cpp/src/Ice/Makefile +190 -0
  301. data/ext/ice/cpp/src/Ice/Metrics.cpp +2159 -0
  302. data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +669 -0
  303. data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +14 -0
  304. data/ext/ice/cpp/src/Ice/Network.cpp +2694 -0
  305. data/ext/ice/cpp/src/Ice/Network.h +291 -0
  306. data/ext/ice/cpp/src/Ice/NetworkF.h +28 -0
  307. data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +325 -0
  308. data/ext/ice/cpp/src/Ice/NetworkProxy.h +74 -0
  309. data/ext/ice/cpp/src/Ice/NetworkProxyF.h +26 -0
  310. data/ext/ice/cpp/src/Ice/Object.cpp +440 -0
  311. data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +41 -0
  312. data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +38 -0
  313. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +241 -0
  314. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +52 -0
  315. data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +1498 -0
  316. data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +155 -0
  317. data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +41 -0
  318. data/ext/ice/cpp/src/Ice/ObjectFactoryF.cpp +38 -0
  319. data/ext/ice/cpp/src/Ice/ObjectFactoryManager.cpp +140 -0
  320. data/ext/ice/cpp/src/Ice/ObjectFactoryManager.h +43 -0
  321. data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +84 -0
  322. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +407 -0
  323. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +70 -0
  324. data/ext/ice/cpp/src/Ice/Outgoing.cpp +737 -0
  325. data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +874 -0
  326. data/ext/ice/cpp/src/Ice/Plugin.cpp +43 -0
  327. data/ext/ice/cpp/src/Ice/PluginF.cpp +38 -0
  328. data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +503 -0
  329. data/ext/ice/cpp/src/Ice/PluginManagerI.h +67 -0
  330. data/ext/ice/cpp/src/Ice/Process.cpp +299 -0
  331. data/ext/ice/cpp/src/Ice/ProcessF.cpp +39 -0
  332. data/ext/ice/cpp/src/Ice/Properties.cpp +45 -0
  333. data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +555 -0
  334. data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +207 -0
  335. data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +45 -0
  336. data/ext/ice/cpp/src/Ice/PropertiesF.cpp +39 -0
  337. data/ext/ice/cpp/src/Ice/PropertiesI.cpp +759 -0
  338. data/ext/ice/cpp/src/Ice/PropertiesI.h +78 -0
  339. data/ext/ice/cpp/src/Ice/PropertyNames.cpp +1293 -0
  340. data/ext/ice/cpp/src/Ice/PropertyNames.h +81 -0
  341. data/ext/ice/cpp/src/Ice/Protocol.cpp +137 -0
  342. data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +98 -0
  343. data/ext/ice/cpp/src/Ice/ProtocolInstance.h +91 -0
  344. data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +26 -0
  345. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +51 -0
  346. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +67 -0
  347. data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +26 -0
  348. data/ext/ice/cpp/src/Ice/Proxy.cpp +1810 -0
  349. data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +305 -0
  350. data/ext/ice/cpp/src/Ice/ProxyFactory.h +57 -0
  351. data/ext/ice/cpp/src/Ice/Reference.cpp +1947 -0
  352. data/ext/ice/cpp/src/Ice/Reference.h +305 -0
  353. data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +937 -0
  354. data/ext/ice/cpp/src/Ice/ReferenceFactory.h +81 -0
  355. data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +24 -0
  356. data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +958 -0
  357. data/ext/ice/cpp/src/Ice/ReplyStatus.h +29 -0
  358. data/ext/ice/cpp/src/Ice/RequestHandler.cpp +40 -0
  359. data/ext/ice/cpp/src/Ice/RequestHandler.h +90 -0
  360. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +70 -0
  361. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +41 -0
  362. data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +20 -0
  363. data/ext/ice/cpp/src/Ice/ResponseHandler.h +39 -0
  364. data/ext/ice/cpp/src/Ice/RetryQueue.cpp +154 -0
  365. data/ext/ice/cpp/src/Ice/RetryQueue.h +69 -0
  366. data/ext/ice/cpp/src/Ice/RetryQueueF.h +24 -0
  367. data/ext/ice/cpp/src/Ice/Router.cpp +849 -0
  368. data/ext/ice/cpp/src/Ice/RouterF.cpp +39 -0
  369. data/ext/ice/cpp/src/Ice/RouterInfo.cpp +381 -0
  370. data/ext/ice/cpp/src/Ice/RouterInfo.h +148 -0
  371. data/ext/ice/cpp/src/Ice/RouterInfoF.h +30 -0
  372. data/ext/ice/cpp/src/Ice/Selector.cpp +926 -0
  373. data/ext/ice/cpp/src/Ice/Selector.h +231 -0
  374. data/ext/ice/cpp/src/Ice/ServantLocator.cpp +41 -0
  375. data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +38 -0
  376. data/ext/ice/cpp/src/Ice/ServantManager.cpp +495 -0
  377. data/ext/ice/cpp/src/Ice/ServantManager.h +74 -0
  378. data/ext/ice/cpp/src/Ice/Service.cpp +1897 -0
  379. data/ext/ice/cpp/src/Ice/SharedContext.h +51 -0
  380. data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +34 -0
  381. data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +80 -0
  382. data/ext/ice/cpp/src/Ice/SlicedData.cpp +80 -0
  383. data/ext/ice/cpp/src/Ice/Stream.cpp +53 -0
  384. data/ext/ice/cpp/src/Ice/StreamI.cpp +832 -0
  385. data/ext/ice/cpp/src/Ice/StreamI.h +198 -0
  386. data/ext/ice/cpp/src/Ice/StreamSocket.cpp +521 -0
  387. data/ext/ice/cpp/src/Ice/StreamSocket.h +85 -0
  388. data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +145 -0
  389. data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +167 -0
  390. data/ext/ice/cpp/src/Ice/SysLoggerI.h +43 -0
  391. data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +235 -0
  392. data/ext/ice/cpp/src/Ice/TcpAcceptor.h +67 -0
  393. data/ext/ice/cpp/src/Ice/TcpConnector.cpp +133 -0
  394. data/ext/ice/cpp/src/Ice/TcpConnector.h +51 -0
  395. data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +397 -0
  396. data/ext/ice/cpp/src/Ice/TcpEndpointI.h +93 -0
  397. data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +127 -0
  398. data/ext/ice/cpp/src/Ice/TcpTransceiver.h +61 -0
  399. data/ext/ice/cpp/src/Ice/ThreadPool.cpp +1357 -0
  400. data/ext/ice/cpp/src/Ice/ThreadPool.h +399 -0
  401. data/ext/ice/cpp/src/Ice/TraceLevels.cpp +43 -0
  402. data/ext/ice/cpp/src/Ice/TraceLevels.h +50 -0
  403. data/ext/ice/cpp/src/Ice/TraceLevelsF.h +26 -0
  404. data/ext/ice/cpp/src/Ice/TraceUtil.cpp +452 -0
  405. data/ext/ice/cpp/src/Ice/TraceUtil.h +28 -0
  406. data/ext/ice/cpp/src/Ice/Transceiver.cpp +24 -0
  407. data/ext/ice/cpp/src/Ice/Transceiver.h +52 -0
  408. data/ext/ice/cpp/src/Ice/TransceiverF.h +38 -0
  409. data/ext/ice/cpp/src/Ice/UdpConnector.cpp +144 -0
  410. data/ext/ice/cpp/src/Ice/UdpConnector.h +51 -0
  411. data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +483 -0
  412. data/ext/ice/cpp/src/Ice/UdpEndpointI.h +95 -0
  413. data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +1156 -0
  414. data/ext/ice/cpp/src/Ice/UdpTransceiver.h +123 -0
  415. data/ext/ice/cpp/src/Ice/Version.cpp +46 -0
  416. data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +103 -0
  417. data/ext/ice/cpp/src/Ice/WSAcceptor.h +61 -0
  418. data/ext/ice/cpp/src/Ice/WSConnector.cpp +113 -0
  419. data/ext/ice/cpp/src/Ice/WSConnector.h +51 -0
  420. data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +441 -0
  421. data/ext/ice/cpp/src/Ice/WSEndpoint.h +97 -0
  422. data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +1728 -0
  423. data/ext/ice/cpp/src/Ice/WSTransceiver.h +149 -0
  424. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +594 -0
  425. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +1035 -0
  426. data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +208 -0
  427. data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +78 -0
  428. data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +308 -0
  429. data/ext/ice/cpp/src/IceDiscovery/LookupI.h +183 -0
  430. data/ext/ice/cpp/src/IceDiscovery/Makefile +61 -0
  431. data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +148 -0
  432. data/ext/ice/cpp/src/IceDiscovery/PluginI.h +39 -0
  433. data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +258 -0
  434. data/ext/ice/cpp/src/IceSSL/AcceptorI.h +66 -0
  435. data/ext/ice/cpp/src/IceSSL/Certificate.cpp +1334 -0
  436. data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +42 -0
  437. data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +151 -0
  438. data/ext/ice/cpp/src/IceSSL/ConnectorI.h +56 -0
  439. data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +397 -0
  440. data/ext/ice/cpp/src/IceSSL/EndpointI.h +96 -0
  441. data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +41 -0
  442. data/ext/ice/cpp/src/IceSSL/Instance.cpp +38 -0
  443. data/ext/ice/cpp/src/IceSSL/Instance.h +42 -0
  444. data/ext/ice/cpp/src/IceSSL/InstanceF.h +34 -0
  445. data/ext/ice/cpp/src/IceSSL/Makefile +82 -0
  446. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +1001 -0
  447. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +607 -0
  448. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +75 -0
  449. data/ext/ice/cpp/src/IceSSL/PluginI.cpp +102 -0
  450. data/ext/ice/cpp/src/IceSSL/PluginI.h +56 -0
  451. data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +541 -0
  452. data/ext/ice/cpp/src/IceSSL/RFC2253.h +67 -0
  453. data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +729 -0
  454. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +1062 -0
  455. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +130 -0
  456. data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +291 -0
  457. data/ext/ice/cpp/src/IceSSL/SSLEngine.h +264 -0
  458. data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +41 -0
  459. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +1514 -0
  460. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +609 -0
  461. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +91 -0
  462. data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +246 -0
  463. data/ext/ice/cpp/src/IceSSL/TrustManager.h +51 -0
  464. data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +26 -0
  465. data/ext/ice/cpp/src/IceSSL/Util.cpp +1423 -0
  466. data/ext/ice/cpp/src/IceSSL/Util.h +136 -0
  467. data/ext/ice/cpp/src/IceUtil/ArgVector.cpp +65 -0
  468. data/ext/ice/cpp/src/IceUtil/ArgVector.h +41 -0
  469. data/ext/ice/cpp/src/IceUtil/Cond.cpp +386 -0
  470. data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +477 -0
  471. data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +144 -0
  472. data/ext/ice/cpp/src/IceUtil/CountDownLatch.cpp +184 -0
  473. data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +273 -0
  474. data/ext/ice/cpp/src/IceUtil/Exception.cpp +782 -0
  475. data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +532 -0
  476. data/ext/ice/cpp/src/IceUtil/FileUtil.h +159 -0
  477. data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +41 -0
  478. data/ext/ice/cpp/src/IceUtil/Makefile +68 -0
  479. data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +24 -0
  480. data/ext/ice/cpp/src/IceUtil/Options.cpp +1049 -0
  481. data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +591 -0
  482. data/ext/ice/cpp/src/IceUtil/Random.cpp +185 -0
  483. data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +257 -0
  484. data/ext/ice/cpp/src/IceUtil/SHA1.cpp +126 -0
  485. data/ext/ice/cpp/src/IceUtil/Shared.cpp +200 -0
  486. data/ext/ice/cpp/src/IceUtil/StopWatch.h +54 -0
  487. data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +450 -0
  488. data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +842 -0
  489. data/ext/ice/cpp/src/IceUtil/Thread.cpp +809 -0
  490. data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +172 -0
  491. data/ext/ice/cpp/src/IceUtil/Time.cpp +306 -0
  492. data/ext/ice/cpp/src/IceUtil/Timer.cpp +251 -0
  493. data/ext/ice/cpp/src/IceUtil/UUID.cpp +174 -0
  494. data/ext/ice/cpp/src/IceUtil/Unicode.cpp +131 -0
  495. data/ext/ice/cpp/src/IceUtil/Unicode.h +49 -0
  496. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +1139 -0
  497. data/ext/ice/cpp/src/Slice/Checksum.cpp +452 -0
  498. data/ext/ice/cpp/src/Slice/CsUtil.cpp +2650 -0
  499. data/ext/ice/cpp/src/Slice/DotNetNames.cpp +146 -0
  500. data/ext/ice/cpp/src/Slice/FileTracker.cpp +203 -0
  501. data/ext/ice/cpp/src/Slice/Grammar.cpp +4755 -0
  502. data/ext/ice/cpp/src/Slice/Grammar.h +98 -0
  503. data/ext/ice/cpp/src/Slice/GrammarUtil.h +234 -0
  504. data/ext/ice/cpp/src/Slice/JavaUtil.cpp +4376 -0
  505. data/ext/ice/cpp/src/Slice/MD5.cpp +57 -0
  506. data/ext/ice/cpp/src/Slice/MD5.h +44 -0
  507. data/ext/ice/cpp/src/Slice/MD5I.cpp +385 -0
  508. data/ext/ice/cpp/src/Slice/MD5I.h +91 -0
  509. data/ext/ice/cpp/src/Slice/Makefile +65 -0
  510. data/ext/ice/cpp/src/Slice/PHPUtil.cpp +156 -0
  511. data/ext/ice/cpp/src/Slice/Parser.cpp +6386 -0
  512. data/ext/ice/cpp/src/Slice/Preprocessor.cpp +686 -0
  513. data/ext/ice/cpp/src/Slice/Python.cpp +675 -0
  514. data/ext/ice/cpp/src/Slice/PythonUtil.cpp +2614 -0
  515. data/ext/ice/cpp/src/Slice/Ruby.cpp +317 -0
  516. data/ext/ice/cpp/src/Slice/RubyUtil.cpp +1774 -0
  517. data/ext/ice/cpp/src/Slice/Scanner.cpp +2426 -0
  518. data/ext/ice/cpp/src/Slice/Util.cpp +325 -0
  519. data/ext/ice/mcpp/config.h.Darwin +227 -0
  520. data/ext/ice/mcpp/config.h.Linux +227 -0
  521. data/ext/ice/mcpp/config.h.MINGW +7 -0
  522. data/ext/ice/mcpp/configed.H +382 -0
  523. data/ext/ice/mcpp/directive.c +1699 -0
  524. data/ext/ice/mcpp/eval.c +1673 -0
  525. data/ext/ice/mcpp/expand.c +2980 -0
  526. data/ext/ice/mcpp/internal.H +564 -0
  527. data/ext/ice/mcpp/main.c +1131 -0
  528. data/ext/ice/mcpp/mbchar.c +869 -0
  529. data/ext/ice/mcpp/mcpp_lib.h +31 -0
  530. data/ext/ice/mcpp/mcpp_out.h +13 -0
  531. data/ext/ice/mcpp/support.c +2811 -0
  532. data/ext/ice/mcpp/system.H +396 -0
  533. data/ext/ice/mcpp/system.c +4940 -0
  534. data/ice.gemspec +41 -0
  535. data/lib/Glacier2.rb +12 -0
  536. data/lib/Glacier2/Metrics.rb +99 -0
  537. data/lib/Glacier2/PermissionsVerifier.rb +168 -0
  538. data/lib/Glacier2/PermissionsVerifierF.rb +34 -0
  539. data/lib/Glacier2/Router.rb +141 -0
  540. data/lib/Glacier2/RouterF.rb +29 -0
  541. data/lib/Glacier2/SSLInfo.rb +79 -0
  542. data/lib/Glacier2/Session.rb +470 -0
  543. data/lib/Ice.rb +659 -0
  544. data/lib/Ice/BuiltinSequences.rb +64 -0
  545. data/lib/Ice/Communicator.rb +93 -0
  546. data/lib/Ice/CommunicatorF.rb +28 -0
  547. data/lib/Ice/Connection.rb +414 -0
  548. data/lib/Ice/ConnectionF.rb +36 -0
  549. data/lib/Ice/Current.rb +152 -0
  550. data/lib/Ice/Endpoint.rb +265 -0
  551. data/lib/Ice/EndpointF.rb +52 -0
  552. data/lib/Ice/EndpointTypes.rb +77 -0
  553. data/lib/Ice/FacetMap.rb +28 -0
  554. data/lib/Ice/Identity.rb +70 -0
  555. data/lib/Ice/ImplicitContext.rb +59 -0
  556. data/lib/Ice/ImplicitContextF.rb +28 -0
  557. data/lib/Ice/Instrumentation.rb +425 -0
  558. data/lib/Ice/InstrumentationF.rb +35 -0
  559. data/lib/Ice/LocalException.rb +1081 -0
  560. data/lib/Ice/Locator.rb +314 -0
  561. data/lib/Ice/LocatorF.rb +34 -0
  562. data/lib/Ice/Logger.rb +57 -0
  563. data/lib/Ice/LoggerF.rb +28 -0
  564. data/lib/Ice/Metrics.rb +696 -0
  565. data/lib/Ice/ObjectAdapterF.rb +28 -0
  566. data/lib/Ice/ObjectFactory.rb +53 -0
  567. data/lib/Ice/ObjectFactoryF.rb +28 -0
  568. data/lib/Ice/Plugin.rb +87 -0
  569. data/lib/Ice/PluginF.rb +32 -0
  570. data/lib/Ice/Process.rb +93 -0
  571. data/lib/Ice/ProcessF.rb +29 -0
  572. data/lib/Ice/Properties.rb +65 -0
  573. data/lib/Ice/PropertiesAdmin.rb +104 -0
  574. data/lib/Ice/PropertiesF.rb +33 -0
  575. data/lib/Ice/Router.rb +163 -0
  576. data/lib/Ice/RouterF.rb +29 -0
  577. data/lib/Ice/SliceChecksumDict.rb +28 -0
  578. data/lib/Ice/Version.rb +100 -0
  579. data/lib/IceBox.rb +10 -0
  580. data/lib/IceBox/IceBox.rb +272 -0
  581. data/lib/IceGrid.rb +17 -0
  582. data/lib/IceGrid/Admin.rb +1076 -0
  583. data/lib/IceGrid/Descriptor.rb +1505 -0
  584. data/lib/IceGrid/Exception.rb +401 -0
  585. data/lib/IceGrid/FileParser.rb +105 -0
  586. data/lib/IceGrid/Locator.rb +105 -0
  587. data/lib/IceGrid/Observer.rb +571 -0
  588. data/lib/IceGrid/Query.rb +168 -0
  589. data/lib/IceGrid/Registry.rb +120 -0
  590. data/lib/IceGrid/Session.rb +114 -0
  591. data/lib/IceGrid/UserAccountMapper.rb +101 -0
  592. data/lib/IcePatch2.rb +10 -0
  593. data/lib/IcePatch2/FileInfo.rb +75 -0
  594. data/lib/IcePatch2/FileServer.rb +141 -0
  595. data/lib/IceStorm.rb +11 -0
  596. data/lib/IceStorm/IceStorm.rb +463 -0
  597. data/lib/IceStorm/Metrics.rb +155 -0
  598. data/slice/Freeze/BackgroundSaveEvictor.ice +111 -0
  599. data/slice/Freeze/CatalogData.ice +49 -0
  600. data/slice/Freeze/Connection.ice +111 -0
  601. data/slice/Freeze/ConnectionF.ice +20 -0
  602. data/slice/Freeze/DB.ice +37 -0
  603. data/slice/Freeze/Evictor.ice +339 -0
  604. data/slice/Freeze/EvictorF.ice +22 -0
  605. data/slice/Freeze/EvictorStorage.ice +72 -0
  606. data/slice/Freeze/Exception.ice +100 -0
  607. data/slice/Freeze/Transaction.ice +57 -0
  608. data/slice/Freeze/TransactionalEvictor.ice +50 -0
  609. data/slice/Glacier2/Metrics.ice +77 -0
  610. data/slice/Glacier2/PermissionsVerifier.ice +105 -0
  611. data/slice/Glacier2/PermissionsVerifierF.ice +21 -0
  612. data/slice/Glacier2/Router.ice +178 -0
  613. data/slice/Glacier2/RouterF.ice +20 -0
  614. data/slice/Glacier2/SSLInfo.ice +50 -0
  615. data/slice/Glacier2/Session.ice +273 -0
  616. data/slice/Ice/BuiltinSequences.ice +48 -0
  617. data/slice/Ice/Communicator.ice +567 -0
  618. data/slice/Ice/CommunicatorF.ice +20 -0
  619. data/slice/Ice/Connection.ice +323 -0
  620. data/slice/Ice/ConnectionF.ice +22 -0
  621. data/slice/Ice/Current.ice +160 -0
  622. data/slice/Ice/Endpoint.ice +227 -0
  623. data/slice/Ice/EndpointF.ice +32 -0
  624. data/slice/Ice/EndpointTypes.ice +38 -0
  625. data/slice/Ice/FacetMap.ice +25 -0
  626. data/slice/Ice/Identity.ice +59 -0
  627. data/slice/Ice/ImplicitContext.ice +109 -0
  628. data/slice/Ice/ImplicitContextF.ice +20 -0
  629. data/slice/Ice/Instrumentation.ice +499 -0
  630. data/slice/Ice/InstrumentationF.ice +26 -0
  631. data/slice/Ice/LocalException.ice +1015 -0
  632. data/slice/Ice/Locator.ice +227 -0
  633. data/slice/Ice/LocatorF.ice +21 -0
  634. data/slice/Ice/Logger.ice +86 -0
  635. data/slice/Ice/LoggerF.ice +20 -0
  636. data/slice/Ice/Metrics.ice +422 -0
  637. data/slice/Ice/ObjectAdapter.ice +673 -0
  638. data/slice/Ice/ObjectAdapterF.ice +20 -0
  639. data/slice/Ice/ObjectFactory.ice +60 -0
  640. data/slice/Ice/ObjectFactoryF.ice +20 -0
  641. data/slice/Ice/Plugin.ice +117 -0
  642. data/slice/Ice/PluginF.ice +21 -0
  643. data/slice/Ice/Process.ice +54 -0
  644. data/slice/Ice/ProcessF.ice +20 -0
  645. data/slice/Ice/Properties.ice +228 -0
  646. data/slice/Ice/PropertiesAdmin.ice +75 -0
  647. data/slice/Ice/PropertiesF.ice +21 -0
  648. data/slice/Ice/RemoteLogger.ice +232 -0
  649. data/slice/Ice/Router.ice +83 -0
  650. data/slice/Ice/RouterF.ice +20 -0
  651. data/slice/Ice/ServantLocator.ice +117 -0
  652. data/slice/Ice/ServantLocatorF.ice +20 -0
  653. data/slice/Ice/SliceChecksumDict.ice +25 -0
  654. data/slice/Ice/Version.ice +39 -0
  655. data/slice/IceBox/IceBox.ice +194 -0
  656. data/slice/IceDiscovery/IceDiscovery.ice +32 -0
  657. data/slice/IceGrid/Admin.ice +1578 -0
  658. data/slice/IceGrid/Descriptor.ice +1079 -0
  659. data/slice/IceGrid/Discovery.ice +73 -0
  660. data/slice/IceGrid/Exception.ice +383 -0
  661. data/slice/IceGrid/FileParser.ice +61 -0
  662. data/slice/IceGrid/Locator.ice +56 -0
  663. data/slice/IceGrid/Observer.ice +394 -0
  664. data/slice/IceGrid/PluginFacade.ice +316 -0
  665. data/slice/IceGrid/Query.ice +130 -0
  666. data/slice/IceGrid/Registry.ice +138 -0
  667. data/slice/IceGrid/Session.ice +124 -0
  668. data/slice/IceGrid/UserAccountMapper.ice +58 -0
  669. data/slice/IcePatch2/FileInfo.ice +49 -0
  670. data/slice/IcePatch2/FileServer.ice +129 -0
  671. data/slice/IceSSL/ConnectionInfo.ice +34 -0
  672. data/slice/IceSSL/EndpointInfo.ice +41 -0
  673. data/slice/IceStorm/IceStorm.ice +405 -0
  674. data/slice/IceStorm/Metrics.ice +71 -0
  675. metadata +737 -0
@@ -0,0 +1,262 @@
1
+ // **********************************************************************
2
+ //
3
+ // Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
4
+ //
5
+ // This copy of Ice is licensed to you under the terms described in the
6
+ // ICE_LICENSE file included in this distribution.
7
+ //
8
+ // **********************************************************************
9
+
10
+ #ifndef ICE_INSTRUMENTATION_I_H
11
+ #define ICE_INSTRUMENTATION_I_H
12
+
13
+ #include <Ice/MetricsObserverI.h>
14
+ #include <Ice/Connection.h>
15
+
16
+ namespace IceInternal
17
+ {
18
+
19
+ template<typename T, typename O> class ObserverWithDelegateT : public IceMX::ObserverT<T>, virtual public O
20
+ {
21
+ public:
22
+
23
+ typedef O ObserverType;
24
+ typedef typename IceInternal::Handle<O> ObserverPtrType;
25
+
26
+ virtual void
27
+ attach()
28
+ {
29
+ IceMX::ObserverT<T>::attach();
30
+ if(_delegate)
31
+ {
32
+ _delegate->attach();
33
+ }
34
+ }
35
+
36
+ virtual void
37
+ detach()
38
+ {
39
+ IceMX::ObserverT<T>::detach();
40
+ if(_delegate)
41
+ {
42
+ _delegate->detach();
43
+ }
44
+ }
45
+
46
+ virtual void
47
+ failed(const std::string& exceptionName)
48
+ {
49
+ IceMX::ObserverT<T>::failed(exceptionName);
50
+ if(_delegate)
51
+ {
52
+ _delegate->failed(exceptionName);
53
+ }
54
+ }
55
+
56
+ ObserverPtrType
57
+ getDelegate() const
58
+ {
59
+ return _delegate;
60
+ }
61
+
62
+ void
63
+ setDelegate(ObserverPtrType delegate)
64
+ {
65
+ _delegate = delegate;
66
+ }
67
+
68
+ template<typename ObserverImpl, typename ObserverMetricsType, typename ObserverPtrType> ObserverPtrType
69
+ getObserverWithDelegate(const std::string& mapName, const IceMX::MetricsHelperT<ObserverMetricsType>& helper,
70
+ const ObserverPtrType& del)
71
+ {
72
+ IceInternal::Handle<ObserverImpl> obsv = IceMX::ObserverT<T>::template getObserver<ObserverImpl>(mapName,
73
+ helper);
74
+ if(obsv)
75
+ {
76
+ obsv->setDelegate(del);
77
+ return obsv;
78
+ }
79
+ return del;
80
+ }
81
+
82
+ protected:
83
+
84
+ ObserverPtrType _delegate;
85
+ };
86
+
87
+ template<typename T> class ObserverFactoryWithDelegateT : public IceMX::ObserverFactoryT<T>
88
+ {
89
+ public:
90
+
91
+ ObserverFactoryWithDelegateT(const IceInternal::MetricsAdminIPtr& metrics, const std::string& name) :
92
+ IceMX::ObserverFactoryT<T>(metrics, name)
93
+ {
94
+ }
95
+
96
+ template<typename ObserverMetricsType, typename ObserverPtrType> ObserverPtrType
97
+ getObserverWithDelegate(const IceMX::MetricsHelperT<ObserverMetricsType>& helper, const ObserverPtrType& del)
98
+ {
99
+ IceInternal::Handle<T> obsv = IceMX::ObserverFactoryT<T>::getObserver(helper);
100
+ if(obsv)
101
+ {
102
+ obsv->setDelegate(del);
103
+ return obsv;
104
+ }
105
+ return del;
106
+ }
107
+
108
+ template<typename ObserverMetricsType, typename ObserverPtrType> ObserverPtrType
109
+ getObserverWithDelegate(const IceMX::MetricsHelperT<ObserverMetricsType>& helper, const ObserverPtrType& del,
110
+ const ObserverPtrType& old)
111
+ {
112
+ IceInternal::Handle<T> obsv = IceMX::ObserverFactoryT<T>::getObserver(helper, old);
113
+ if(obsv)
114
+ {
115
+ obsv->setDelegate(del);
116
+ return obsv;
117
+ }
118
+ return del;
119
+ }
120
+ };
121
+
122
+ template<typename Helper>
123
+ void addEndpointAttributes(typename Helper::Attributes& attrs)
124
+ {
125
+ attrs.add("endpoint", &Helper::getEndpoint);
126
+
127
+ attrs.add("endpointType", &Helper::getEndpointInfo, &Ice::EndpointInfo::type);
128
+ attrs.add("endpointIsDatagram", &Helper::getEndpointInfo, &Ice::EndpointInfo::datagram);
129
+ attrs.add("endpointIsSecure", &Helper::getEndpointInfo, &Ice::EndpointInfo::secure);
130
+ attrs.add("endpointTimeout", &Helper::getEndpointInfo, &Ice::EndpointInfo::timeout);
131
+ attrs.add("endpointCompress", &Helper::getEndpointInfo, &Ice::EndpointInfo::compress);
132
+
133
+ attrs.add("endpointHost", &Helper::getEndpointInfo, &Ice::IPEndpointInfo::host);
134
+ attrs.add("endpointPort", &Helper::getEndpointInfo, &Ice::IPEndpointInfo::port);
135
+ }
136
+
137
+ template<typename Helper>
138
+ void addConnectionAttributes(typename Helper::Attributes& attrs)
139
+ {
140
+ attrs.add("incoming", &Helper::getConnectionInfo, &Ice::ConnectionInfo::incoming);
141
+ attrs.add("adapterName", &Helper::getConnectionInfo, &Ice::ConnectionInfo::adapterName);
142
+ attrs.add("connectionId", &Helper::getConnectionInfo, &Ice::ConnectionInfo::connectionId);
143
+
144
+ attrs.add("localHost", &Helper::getConnectionInfo, &Ice::IPConnectionInfo::localAddress);
145
+ attrs.add("localPort", &Helper::getConnectionInfo, &Ice::IPConnectionInfo::localPort);
146
+ attrs.add("remoteHost", &Helper::getConnectionInfo, &Ice::IPConnectionInfo::remoteAddress);
147
+ attrs.add("remotePort", &Helper::getConnectionInfo, &Ice::IPConnectionInfo::remotePort);
148
+
149
+ attrs.add("mcastHost", &Helper::getConnectionInfo, &Ice::UDPConnectionInfo::mcastAddress);
150
+ attrs.add("mcastPort", &Helper::getConnectionInfo, &Ice::UDPConnectionInfo::mcastPort);
151
+
152
+ addEndpointAttributes<Helper>(attrs);
153
+ }
154
+
155
+ class ConnectionObserverI : public ObserverWithDelegateT<IceMX::ConnectionMetrics,
156
+ Ice::Instrumentation::ConnectionObserver>
157
+ {
158
+ public:
159
+
160
+ virtual void sentBytes(Ice::Int);
161
+ virtual void receivedBytes(Ice::Int);
162
+ };
163
+
164
+ class ThreadObserverI : public ObserverWithDelegateT<IceMX::ThreadMetrics, Ice::Instrumentation::ThreadObserver>
165
+ {
166
+ public:
167
+
168
+ virtual void stateChanged(Ice::Instrumentation::ThreadState, Ice::Instrumentation::ThreadState);
169
+ };
170
+
171
+ class DispatchObserverI : public ObserverWithDelegateT<IceMX::DispatchMetrics, Ice::Instrumentation::DispatchObserver>
172
+ {
173
+ public:
174
+
175
+ virtual void userException();
176
+
177
+ virtual void reply(Ice::Int);
178
+ };
179
+
180
+ class RemoteObserverI : public ObserverWithDelegateT<IceMX::RemoteMetrics, Ice::Instrumentation::RemoteObserver>
181
+ {
182
+ public:
183
+
184
+ virtual void reply(Ice::Int);
185
+ };
186
+
187
+ class CollocatedObserverI : public ObserverWithDelegateT<IceMX::CollocatedMetrics,
188
+ Ice::Instrumentation::CollocatedObserver>
189
+ {
190
+ public:
191
+
192
+ virtual void reply(Ice::Int);
193
+ };
194
+
195
+ class InvocationObserverI : public ObserverWithDelegateT<IceMX::InvocationMetrics,
196
+ Ice::Instrumentation::InvocationObserver>
197
+ {
198
+ public:
199
+
200
+ virtual void retried();
201
+
202
+ virtual void userException();
203
+
204
+ virtual Ice::Instrumentation::RemoteObserverPtr
205
+ getRemoteObserver(const Ice::ConnectionInfoPtr&, const Ice::EndpointPtr&, Ice::Int, Ice::Int);
206
+
207
+ virtual Ice::Instrumentation::CollocatedObserverPtr
208
+ getCollocatedObserver(const Ice::ObjectAdapterPtr&, Ice::Int, Ice::Int);
209
+ };
210
+
211
+ typedef ObserverWithDelegateT<IceMX::Metrics, Ice::Instrumentation::Observer> ObserverI;
212
+
213
+ class ICE_API CommunicatorObserverI : public Ice::Instrumentation::CommunicatorObserver
214
+ {
215
+ public:
216
+
217
+ CommunicatorObserverI(const Ice::InitializationData&);
218
+
219
+ virtual void setObserverUpdater(const Ice::Instrumentation::ObserverUpdaterPtr&);
220
+
221
+ virtual Ice::Instrumentation::ObserverPtr getConnectionEstablishmentObserver(const Ice::EndpointPtr&,
222
+ const std::string&);
223
+
224
+ virtual Ice::Instrumentation::ObserverPtr getEndpointLookupObserver(const Ice::EndpointPtr&);
225
+
226
+ virtual Ice::Instrumentation::ConnectionObserverPtr
227
+ getConnectionObserver(const Ice::ConnectionInfoPtr&,
228
+ const Ice::EndpointPtr&,
229
+ Ice::Instrumentation::ConnectionState,
230
+ const Ice::Instrumentation::ConnectionObserverPtr&);
231
+
232
+ virtual Ice::Instrumentation::ThreadObserverPtr getThreadObserver(const std::string&, const std::string&,
233
+ Ice::Instrumentation::ThreadState,
234
+ const Ice::Instrumentation::ThreadObserverPtr&);
235
+
236
+ virtual Ice::Instrumentation::InvocationObserverPtr getInvocationObserver(const Ice::ObjectPrx&,
237
+ const std::string&,
238
+ const Ice::Context&);
239
+
240
+ virtual Ice::Instrumentation::DispatchObserverPtr getDispatchObserver(const Ice::Current&, Ice::Int);
241
+
242
+ const IceInternal::MetricsAdminIPtr& getFacet() const;
243
+
244
+ void destroy();
245
+
246
+ private:
247
+
248
+ IceInternal::MetricsAdminIPtr _metrics;
249
+ const Ice::Instrumentation::CommunicatorObserverPtr _delegate;
250
+
251
+ ObserverFactoryWithDelegateT<ConnectionObserverI> _connections;
252
+ ObserverFactoryWithDelegateT<DispatchObserverI> _dispatch;
253
+ ObserverFactoryWithDelegateT<InvocationObserverI> _invocations;
254
+ ObserverFactoryWithDelegateT<ThreadObserverI> _threads;
255
+ ObserverFactoryWithDelegateT<ObserverI> _connects;
256
+ ObserverFactoryWithDelegateT<ObserverI> _endpointLookups;
257
+ };
258
+ typedef IceUtil::Handle<CommunicatorObserverI> CommunicatorObserverIPtr;
259
+
260
+ };
261
+
262
+ #endif
@@ -0,0 +1,2091 @@
1
+ // **********************************************************************
2
+ //
3
+ // Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
4
+ //
5
+ // This copy of Ice is licensed to you under the terms described in the
6
+ // ICE_LICENSE file included in this distribution.
7
+ //
8
+ // **********************************************************************
9
+ //
10
+ // Ice version 3.6b
11
+ //
12
+ // <auto-generated>
13
+ //
14
+ // Generated from file `LocalException.ice'
15
+ //
16
+ // Warning: do not edit this file.
17
+ //
18
+ // </auto-generated>
19
+ //
20
+
21
+ #ifndef ICE_API_EXPORTS
22
+ # define ICE_API_EXPORTS
23
+ #endif
24
+ #include <Ice/LocalException.h>
25
+ #include <IceUtil/PushDisableWarnings.h>
26
+ #include <Ice/BasicStream.h>
27
+ #include <IceUtil/Iterator.h>
28
+ #include <IceUtil/PopDisableWarnings.h>
29
+
30
+ #ifndef ICE_IGNORE_VERSION
31
+ # if ICE_INT_VERSION != 30651
32
+ # error Ice version mismatch: an exact match is required for beta generated code
33
+ # endif
34
+ #endif
35
+
36
+ Ice::InitializationException::InitializationException(const char* __file, int __line) :
37
+ ::Ice::LocalException(__file, __line)
38
+ {
39
+ }
40
+
41
+ Ice::InitializationException::InitializationException(const char* __file, int __line, const ::std::string& __ice_reason) :
42
+ ::Ice::LocalException(__file, __line),
43
+ reason(__ice_reason)
44
+ {
45
+ }
46
+
47
+ Ice::InitializationException::~InitializationException() throw()
48
+ {
49
+ }
50
+
51
+ ::std::string
52
+ Ice::InitializationException::ice_name() const
53
+ {
54
+ return "Ice::InitializationException";
55
+ }
56
+
57
+ Ice::InitializationException*
58
+ Ice::InitializationException::ice_clone() const
59
+ {
60
+ return new InitializationException(*this);
61
+ }
62
+
63
+ void
64
+ Ice::InitializationException::ice_throw() const
65
+ {
66
+ throw *this;
67
+ }
68
+
69
+ Ice::PluginInitializationException::PluginInitializationException(const char* __file, int __line) :
70
+ ::Ice::LocalException(__file, __line)
71
+ {
72
+ }
73
+
74
+ Ice::PluginInitializationException::PluginInitializationException(const char* __file, int __line, const ::std::string& __ice_reason) :
75
+ ::Ice::LocalException(__file, __line),
76
+ reason(__ice_reason)
77
+ {
78
+ }
79
+
80
+ Ice::PluginInitializationException::~PluginInitializationException() throw()
81
+ {
82
+ }
83
+
84
+ ::std::string
85
+ Ice::PluginInitializationException::ice_name() const
86
+ {
87
+ return "Ice::PluginInitializationException";
88
+ }
89
+
90
+ Ice::PluginInitializationException*
91
+ Ice::PluginInitializationException::ice_clone() const
92
+ {
93
+ return new PluginInitializationException(*this);
94
+ }
95
+
96
+ void
97
+ Ice::PluginInitializationException::ice_throw() const
98
+ {
99
+ throw *this;
100
+ }
101
+
102
+ Ice::CollocationOptimizationException::CollocationOptimizationException(const char* __file, int __line) :
103
+ ::Ice::LocalException(__file, __line)
104
+ {
105
+ }
106
+
107
+ Ice::CollocationOptimizationException::~CollocationOptimizationException() throw()
108
+ {
109
+ }
110
+
111
+ ::std::string
112
+ Ice::CollocationOptimizationException::ice_name() const
113
+ {
114
+ return "Ice::CollocationOptimizationException";
115
+ }
116
+
117
+ Ice::CollocationOptimizationException*
118
+ Ice::CollocationOptimizationException::ice_clone() const
119
+ {
120
+ return new CollocationOptimizationException(*this);
121
+ }
122
+
123
+ void
124
+ Ice::CollocationOptimizationException::ice_throw() const
125
+ {
126
+ throw *this;
127
+ }
128
+
129
+ Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* __file, int __line) :
130
+ ::Ice::LocalException(__file, __line)
131
+ {
132
+ }
133
+
134
+ Ice::AlreadyRegisteredException::AlreadyRegisteredException(const char* __file, int __line, const ::std::string& __ice_kindOfObject, const ::std::string& __ice_id) :
135
+ ::Ice::LocalException(__file, __line),
136
+ kindOfObject(__ice_kindOfObject),
137
+ id(__ice_id)
138
+ {
139
+ }
140
+
141
+ Ice::AlreadyRegisteredException::~AlreadyRegisteredException() throw()
142
+ {
143
+ }
144
+
145
+ ::std::string
146
+ Ice::AlreadyRegisteredException::ice_name() const
147
+ {
148
+ return "Ice::AlreadyRegisteredException";
149
+ }
150
+
151
+ Ice::AlreadyRegisteredException*
152
+ Ice::AlreadyRegisteredException::ice_clone() const
153
+ {
154
+ return new AlreadyRegisteredException(*this);
155
+ }
156
+
157
+ void
158
+ Ice::AlreadyRegisteredException::ice_throw() const
159
+ {
160
+ throw *this;
161
+ }
162
+
163
+ Ice::NotRegisteredException::NotRegisteredException(const char* __file, int __line) :
164
+ ::Ice::LocalException(__file, __line)
165
+ {
166
+ }
167
+
168
+ Ice::NotRegisteredException::NotRegisteredException(const char* __file, int __line, const ::std::string& __ice_kindOfObject, const ::std::string& __ice_id) :
169
+ ::Ice::LocalException(__file, __line),
170
+ kindOfObject(__ice_kindOfObject),
171
+ id(__ice_id)
172
+ {
173
+ }
174
+
175
+ Ice::NotRegisteredException::~NotRegisteredException() throw()
176
+ {
177
+ }
178
+
179
+ ::std::string
180
+ Ice::NotRegisteredException::ice_name() const
181
+ {
182
+ return "Ice::NotRegisteredException";
183
+ }
184
+
185
+ Ice::NotRegisteredException*
186
+ Ice::NotRegisteredException::ice_clone() const
187
+ {
188
+ return new NotRegisteredException(*this);
189
+ }
190
+
191
+ void
192
+ Ice::NotRegisteredException::ice_throw() const
193
+ {
194
+ throw *this;
195
+ }
196
+
197
+ Ice::TwowayOnlyException::TwowayOnlyException(const char* __file, int __line) :
198
+ ::Ice::LocalException(__file, __line)
199
+ {
200
+ }
201
+
202
+ Ice::TwowayOnlyException::TwowayOnlyException(const char* __file, int __line, const ::std::string& __ice_operation) :
203
+ ::Ice::LocalException(__file, __line),
204
+ operation(__ice_operation)
205
+ {
206
+ }
207
+
208
+ Ice::TwowayOnlyException::~TwowayOnlyException() throw()
209
+ {
210
+ }
211
+
212
+ ::std::string
213
+ Ice::TwowayOnlyException::ice_name() const
214
+ {
215
+ return "Ice::TwowayOnlyException";
216
+ }
217
+
218
+ Ice::TwowayOnlyException*
219
+ Ice::TwowayOnlyException::ice_clone() const
220
+ {
221
+ return new TwowayOnlyException(*this);
222
+ }
223
+
224
+ void
225
+ Ice::TwowayOnlyException::ice_throw() const
226
+ {
227
+ throw *this;
228
+ }
229
+
230
+ Ice::CloneNotImplementedException::CloneNotImplementedException(const char* __file, int __line) :
231
+ ::Ice::LocalException(__file, __line)
232
+ {
233
+ }
234
+
235
+ Ice::CloneNotImplementedException::~CloneNotImplementedException() throw()
236
+ {
237
+ }
238
+
239
+ ::std::string
240
+ Ice::CloneNotImplementedException::ice_name() const
241
+ {
242
+ return "Ice::CloneNotImplementedException";
243
+ }
244
+
245
+ Ice::CloneNotImplementedException*
246
+ Ice::CloneNotImplementedException::ice_clone() const
247
+ {
248
+ return new CloneNotImplementedException(*this);
249
+ }
250
+
251
+ void
252
+ Ice::CloneNotImplementedException::ice_throw() const
253
+ {
254
+ throw *this;
255
+ }
256
+
257
+ Ice::UnknownException::UnknownException(const char* __file, int __line) :
258
+ ::Ice::LocalException(__file, __line)
259
+ {
260
+ }
261
+
262
+ Ice::UnknownException::UnknownException(const char* __file, int __line, const ::std::string& __ice_unknown) :
263
+ ::Ice::LocalException(__file, __line),
264
+ unknown(__ice_unknown)
265
+ {
266
+ }
267
+
268
+ Ice::UnknownException::~UnknownException() throw()
269
+ {
270
+ }
271
+
272
+ ::std::string
273
+ Ice::UnknownException::ice_name() const
274
+ {
275
+ return "Ice::UnknownException";
276
+ }
277
+
278
+ Ice::UnknownException*
279
+ Ice::UnknownException::ice_clone() const
280
+ {
281
+ return new UnknownException(*this);
282
+ }
283
+
284
+ void
285
+ Ice::UnknownException::ice_throw() const
286
+ {
287
+ throw *this;
288
+ }
289
+
290
+ Ice::UnknownLocalException::UnknownLocalException(const char* __file, int __line) :
291
+ ::Ice::UnknownException(__file, __line)
292
+ {
293
+ }
294
+
295
+ Ice::UnknownLocalException::UnknownLocalException(const char* __file, int __line, const ::std::string& __ice_unknown) :
296
+ ::Ice::UnknownException(__file, __line, __ice_unknown)
297
+ {
298
+ }
299
+
300
+ Ice::UnknownLocalException::~UnknownLocalException() throw()
301
+ {
302
+ }
303
+
304
+ ::std::string
305
+ Ice::UnknownLocalException::ice_name() const
306
+ {
307
+ return "Ice::UnknownLocalException";
308
+ }
309
+
310
+ Ice::UnknownLocalException*
311
+ Ice::UnknownLocalException::ice_clone() const
312
+ {
313
+ return new UnknownLocalException(*this);
314
+ }
315
+
316
+ void
317
+ Ice::UnknownLocalException::ice_throw() const
318
+ {
319
+ throw *this;
320
+ }
321
+
322
+ Ice::UnknownUserException::UnknownUserException(const char* __file, int __line) :
323
+ ::Ice::UnknownException(__file, __line)
324
+ {
325
+ }
326
+
327
+ Ice::UnknownUserException::UnknownUserException(const char* __file, int __line, const ::std::string& __ice_unknown) :
328
+ ::Ice::UnknownException(__file, __line, __ice_unknown)
329
+ {
330
+ }
331
+
332
+ Ice::UnknownUserException::~UnknownUserException() throw()
333
+ {
334
+ }
335
+
336
+ ::std::string
337
+ Ice::UnknownUserException::ice_name() const
338
+ {
339
+ return "Ice::UnknownUserException";
340
+ }
341
+
342
+ Ice::UnknownUserException*
343
+ Ice::UnknownUserException::ice_clone() const
344
+ {
345
+ return new UnknownUserException(*this);
346
+ }
347
+
348
+ void
349
+ Ice::UnknownUserException::ice_throw() const
350
+ {
351
+ throw *this;
352
+ }
353
+
354
+ Ice::VersionMismatchException::VersionMismatchException(const char* __file, int __line) :
355
+ ::Ice::LocalException(__file, __line)
356
+ {
357
+ }
358
+
359
+ Ice::VersionMismatchException::~VersionMismatchException() throw()
360
+ {
361
+ }
362
+
363
+ ::std::string
364
+ Ice::VersionMismatchException::ice_name() const
365
+ {
366
+ return "Ice::VersionMismatchException";
367
+ }
368
+
369
+ Ice::VersionMismatchException*
370
+ Ice::VersionMismatchException::ice_clone() const
371
+ {
372
+ return new VersionMismatchException(*this);
373
+ }
374
+
375
+ void
376
+ Ice::VersionMismatchException::ice_throw() const
377
+ {
378
+ throw *this;
379
+ }
380
+
381
+ Ice::CommunicatorDestroyedException::CommunicatorDestroyedException(const char* __file, int __line) :
382
+ ::Ice::LocalException(__file, __line)
383
+ {
384
+ }
385
+
386
+ Ice::CommunicatorDestroyedException::~CommunicatorDestroyedException() throw()
387
+ {
388
+ }
389
+
390
+ ::std::string
391
+ Ice::CommunicatorDestroyedException::ice_name() const
392
+ {
393
+ return "Ice::CommunicatorDestroyedException";
394
+ }
395
+
396
+ Ice::CommunicatorDestroyedException*
397
+ Ice::CommunicatorDestroyedException::ice_clone() const
398
+ {
399
+ return new CommunicatorDestroyedException(*this);
400
+ }
401
+
402
+ void
403
+ Ice::CommunicatorDestroyedException::ice_throw() const
404
+ {
405
+ throw *this;
406
+ }
407
+
408
+ Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* __file, int __line) :
409
+ ::Ice::LocalException(__file, __line)
410
+ {
411
+ }
412
+
413
+ Ice::ObjectAdapterDeactivatedException::ObjectAdapterDeactivatedException(const char* __file, int __line, const ::std::string& __ice_name) :
414
+ ::Ice::LocalException(__file, __line),
415
+ name(__ice_name)
416
+ {
417
+ }
418
+
419
+ Ice::ObjectAdapterDeactivatedException::~ObjectAdapterDeactivatedException() throw()
420
+ {
421
+ }
422
+
423
+ ::std::string
424
+ Ice::ObjectAdapterDeactivatedException::ice_name() const
425
+ {
426
+ return "Ice::ObjectAdapterDeactivatedException";
427
+ }
428
+
429
+ Ice::ObjectAdapterDeactivatedException*
430
+ Ice::ObjectAdapterDeactivatedException::ice_clone() const
431
+ {
432
+ return new ObjectAdapterDeactivatedException(*this);
433
+ }
434
+
435
+ void
436
+ Ice::ObjectAdapterDeactivatedException::ice_throw() const
437
+ {
438
+ throw *this;
439
+ }
440
+
441
+ Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* __file, int __line) :
442
+ ::Ice::LocalException(__file, __line)
443
+ {
444
+ }
445
+
446
+ Ice::ObjectAdapterIdInUseException::ObjectAdapterIdInUseException(const char* __file, int __line, const ::std::string& __ice_id) :
447
+ ::Ice::LocalException(__file, __line),
448
+ id(__ice_id)
449
+ {
450
+ }
451
+
452
+ Ice::ObjectAdapterIdInUseException::~ObjectAdapterIdInUseException() throw()
453
+ {
454
+ }
455
+
456
+ ::std::string
457
+ Ice::ObjectAdapterIdInUseException::ice_name() const
458
+ {
459
+ return "Ice::ObjectAdapterIdInUseException";
460
+ }
461
+
462
+ Ice::ObjectAdapterIdInUseException*
463
+ Ice::ObjectAdapterIdInUseException::ice_clone() const
464
+ {
465
+ return new ObjectAdapterIdInUseException(*this);
466
+ }
467
+
468
+ void
469
+ Ice::ObjectAdapterIdInUseException::ice_throw() const
470
+ {
471
+ throw *this;
472
+ }
473
+
474
+ Ice::NoEndpointException::NoEndpointException(const char* __file, int __line) :
475
+ ::Ice::LocalException(__file, __line)
476
+ {
477
+ }
478
+
479
+ Ice::NoEndpointException::NoEndpointException(const char* __file, int __line, const ::std::string& __ice_proxy) :
480
+ ::Ice::LocalException(__file, __line),
481
+ proxy(__ice_proxy)
482
+ {
483
+ }
484
+
485
+ Ice::NoEndpointException::~NoEndpointException() throw()
486
+ {
487
+ }
488
+
489
+ ::std::string
490
+ Ice::NoEndpointException::ice_name() const
491
+ {
492
+ return "Ice::NoEndpointException";
493
+ }
494
+
495
+ Ice::NoEndpointException*
496
+ Ice::NoEndpointException::ice_clone() const
497
+ {
498
+ return new NoEndpointException(*this);
499
+ }
500
+
501
+ void
502
+ Ice::NoEndpointException::ice_throw() const
503
+ {
504
+ throw *this;
505
+ }
506
+
507
+ Ice::EndpointParseException::EndpointParseException(const char* __file, int __line) :
508
+ ::Ice::LocalException(__file, __line)
509
+ {
510
+ }
511
+
512
+ Ice::EndpointParseException::EndpointParseException(const char* __file, int __line, const ::std::string& __ice_str) :
513
+ ::Ice::LocalException(__file, __line),
514
+ str(__ice_str)
515
+ {
516
+ }
517
+
518
+ Ice::EndpointParseException::~EndpointParseException() throw()
519
+ {
520
+ }
521
+
522
+ ::std::string
523
+ Ice::EndpointParseException::ice_name() const
524
+ {
525
+ return "Ice::EndpointParseException";
526
+ }
527
+
528
+ Ice::EndpointParseException*
529
+ Ice::EndpointParseException::ice_clone() const
530
+ {
531
+ return new EndpointParseException(*this);
532
+ }
533
+
534
+ void
535
+ Ice::EndpointParseException::ice_throw() const
536
+ {
537
+ throw *this;
538
+ }
539
+
540
+ Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* __file, int __line) :
541
+ ::Ice::LocalException(__file, __line)
542
+ {
543
+ }
544
+
545
+ Ice::EndpointSelectionTypeParseException::EndpointSelectionTypeParseException(const char* __file, int __line, const ::std::string& __ice_str) :
546
+ ::Ice::LocalException(__file, __line),
547
+ str(__ice_str)
548
+ {
549
+ }
550
+
551
+ Ice::EndpointSelectionTypeParseException::~EndpointSelectionTypeParseException() throw()
552
+ {
553
+ }
554
+
555
+ ::std::string
556
+ Ice::EndpointSelectionTypeParseException::ice_name() const
557
+ {
558
+ return "Ice::EndpointSelectionTypeParseException";
559
+ }
560
+
561
+ Ice::EndpointSelectionTypeParseException*
562
+ Ice::EndpointSelectionTypeParseException::ice_clone() const
563
+ {
564
+ return new EndpointSelectionTypeParseException(*this);
565
+ }
566
+
567
+ void
568
+ Ice::EndpointSelectionTypeParseException::ice_throw() const
569
+ {
570
+ throw *this;
571
+ }
572
+
573
+ Ice::VersionParseException::VersionParseException(const char* __file, int __line) :
574
+ ::Ice::LocalException(__file, __line)
575
+ {
576
+ }
577
+
578
+ Ice::VersionParseException::VersionParseException(const char* __file, int __line, const ::std::string& __ice_str) :
579
+ ::Ice::LocalException(__file, __line),
580
+ str(__ice_str)
581
+ {
582
+ }
583
+
584
+ Ice::VersionParseException::~VersionParseException() throw()
585
+ {
586
+ }
587
+
588
+ ::std::string
589
+ Ice::VersionParseException::ice_name() const
590
+ {
591
+ return "Ice::VersionParseException";
592
+ }
593
+
594
+ Ice::VersionParseException*
595
+ Ice::VersionParseException::ice_clone() const
596
+ {
597
+ return new VersionParseException(*this);
598
+ }
599
+
600
+ void
601
+ Ice::VersionParseException::ice_throw() const
602
+ {
603
+ throw *this;
604
+ }
605
+
606
+ Ice::IdentityParseException::IdentityParseException(const char* __file, int __line) :
607
+ ::Ice::LocalException(__file, __line)
608
+ {
609
+ }
610
+
611
+ Ice::IdentityParseException::IdentityParseException(const char* __file, int __line, const ::std::string& __ice_str) :
612
+ ::Ice::LocalException(__file, __line),
613
+ str(__ice_str)
614
+ {
615
+ }
616
+
617
+ Ice::IdentityParseException::~IdentityParseException() throw()
618
+ {
619
+ }
620
+
621
+ ::std::string
622
+ Ice::IdentityParseException::ice_name() const
623
+ {
624
+ return "Ice::IdentityParseException";
625
+ }
626
+
627
+ Ice::IdentityParseException*
628
+ Ice::IdentityParseException::ice_clone() const
629
+ {
630
+ return new IdentityParseException(*this);
631
+ }
632
+
633
+ void
634
+ Ice::IdentityParseException::ice_throw() const
635
+ {
636
+ throw *this;
637
+ }
638
+
639
+ Ice::ProxyParseException::ProxyParseException(const char* __file, int __line) :
640
+ ::Ice::LocalException(__file, __line)
641
+ {
642
+ }
643
+
644
+ Ice::ProxyParseException::ProxyParseException(const char* __file, int __line, const ::std::string& __ice_str) :
645
+ ::Ice::LocalException(__file, __line),
646
+ str(__ice_str)
647
+ {
648
+ }
649
+
650
+ Ice::ProxyParseException::~ProxyParseException() throw()
651
+ {
652
+ }
653
+
654
+ ::std::string
655
+ Ice::ProxyParseException::ice_name() const
656
+ {
657
+ return "Ice::ProxyParseException";
658
+ }
659
+
660
+ Ice::ProxyParseException*
661
+ Ice::ProxyParseException::ice_clone() const
662
+ {
663
+ return new ProxyParseException(*this);
664
+ }
665
+
666
+ void
667
+ Ice::ProxyParseException::ice_throw() const
668
+ {
669
+ throw *this;
670
+ }
671
+
672
+ Ice::IllegalIdentityException::IllegalIdentityException(const char* __file, int __line) :
673
+ ::Ice::LocalException(__file, __line)
674
+ {
675
+ }
676
+
677
+ Ice::IllegalIdentityException::IllegalIdentityException(const char* __file, int __line, const ::Ice::Identity& __ice_id) :
678
+ ::Ice::LocalException(__file, __line),
679
+ id(__ice_id)
680
+ {
681
+ }
682
+
683
+ Ice::IllegalIdentityException::~IllegalIdentityException() throw()
684
+ {
685
+ }
686
+
687
+ ::std::string
688
+ Ice::IllegalIdentityException::ice_name() const
689
+ {
690
+ return "Ice::IllegalIdentityException";
691
+ }
692
+
693
+ Ice::IllegalIdentityException*
694
+ Ice::IllegalIdentityException::ice_clone() const
695
+ {
696
+ return new IllegalIdentityException(*this);
697
+ }
698
+
699
+ void
700
+ Ice::IllegalIdentityException::ice_throw() const
701
+ {
702
+ throw *this;
703
+ }
704
+
705
+ Ice::IllegalServantException::IllegalServantException(const char* __file, int __line) :
706
+ ::Ice::LocalException(__file, __line)
707
+ {
708
+ }
709
+
710
+ Ice::IllegalServantException::IllegalServantException(const char* __file, int __line, const ::std::string& __ice_reason) :
711
+ ::Ice::LocalException(__file, __line),
712
+ reason(__ice_reason)
713
+ {
714
+ }
715
+
716
+ Ice::IllegalServantException::~IllegalServantException() throw()
717
+ {
718
+ }
719
+
720
+ ::std::string
721
+ Ice::IllegalServantException::ice_name() const
722
+ {
723
+ return "Ice::IllegalServantException";
724
+ }
725
+
726
+ Ice::IllegalServantException*
727
+ Ice::IllegalServantException::ice_clone() const
728
+ {
729
+ return new IllegalServantException(*this);
730
+ }
731
+
732
+ void
733
+ Ice::IllegalServantException::ice_throw() const
734
+ {
735
+ throw *this;
736
+ }
737
+
738
+ Ice::RequestFailedException::RequestFailedException(const char* __file, int __line) :
739
+ ::Ice::LocalException(__file, __line)
740
+ {
741
+ }
742
+
743
+ Ice::RequestFailedException::RequestFailedException(const char* __file, int __line, const ::Ice::Identity& __ice_id, const ::std::string& __ice_facet, const ::std::string& __ice_operation) :
744
+ ::Ice::LocalException(__file, __line),
745
+ id(__ice_id),
746
+ facet(__ice_facet),
747
+ operation(__ice_operation)
748
+ {
749
+ }
750
+
751
+ Ice::RequestFailedException::~RequestFailedException() throw()
752
+ {
753
+ }
754
+
755
+ ::std::string
756
+ Ice::RequestFailedException::ice_name() const
757
+ {
758
+ return "Ice::RequestFailedException";
759
+ }
760
+
761
+ Ice::RequestFailedException*
762
+ Ice::RequestFailedException::ice_clone() const
763
+ {
764
+ return new RequestFailedException(*this);
765
+ }
766
+
767
+ void
768
+ Ice::RequestFailedException::ice_throw() const
769
+ {
770
+ throw *this;
771
+ }
772
+
773
+ Ice::ObjectNotExistException::ObjectNotExistException(const char* __file, int __line) :
774
+ ::Ice::RequestFailedException(__file, __line)
775
+ {
776
+ }
777
+
778
+ Ice::ObjectNotExistException::ObjectNotExistException(const char* __file, int __line, const ::Ice::Identity& __ice_id, const ::std::string& __ice_facet, const ::std::string& __ice_operation) :
779
+ ::Ice::RequestFailedException(__file, __line, __ice_id, __ice_facet, __ice_operation)
780
+ {
781
+ }
782
+
783
+ Ice::ObjectNotExistException::~ObjectNotExistException() throw()
784
+ {
785
+ }
786
+
787
+ ::std::string
788
+ Ice::ObjectNotExistException::ice_name() const
789
+ {
790
+ return "Ice::ObjectNotExistException";
791
+ }
792
+
793
+ Ice::ObjectNotExistException*
794
+ Ice::ObjectNotExistException::ice_clone() const
795
+ {
796
+ return new ObjectNotExistException(*this);
797
+ }
798
+
799
+ void
800
+ Ice::ObjectNotExistException::ice_throw() const
801
+ {
802
+ throw *this;
803
+ }
804
+
805
+ Ice::FacetNotExistException::FacetNotExistException(const char* __file, int __line) :
806
+ ::Ice::RequestFailedException(__file, __line)
807
+ {
808
+ }
809
+
810
+ Ice::FacetNotExistException::FacetNotExistException(const char* __file, int __line, const ::Ice::Identity& __ice_id, const ::std::string& __ice_facet, const ::std::string& __ice_operation) :
811
+ ::Ice::RequestFailedException(__file, __line, __ice_id, __ice_facet, __ice_operation)
812
+ {
813
+ }
814
+
815
+ Ice::FacetNotExistException::~FacetNotExistException() throw()
816
+ {
817
+ }
818
+
819
+ ::std::string
820
+ Ice::FacetNotExistException::ice_name() const
821
+ {
822
+ return "Ice::FacetNotExistException";
823
+ }
824
+
825
+ Ice::FacetNotExistException*
826
+ Ice::FacetNotExistException::ice_clone() const
827
+ {
828
+ return new FacetNotExistException(*this);
829
+ }
830
+
831
+ void
832
+ Ice::FacetNotExistException::ice_throw() const
833
+ {
834
+ throw *this;
835
+ }
836
+
837
+ Ice::OperationNotExistException::OperationNotExistException(const char* __file, int __line) :
838
+ ::Ice::RequestFailedException(__file, __line)
839
+ {
840
+ }
841
+
842
+ Ice::OperationNotExistException::OperationNotExistException(const char* __file, int __line, const ::Ice::Identity& __ice_id, const ::std::string& __ice_facet, const ::std::string& __ice_operation) :
843
+ ::Ice::RequestFailedException(__file, __line, __ice_id, __ice_facet, __ice_operation)
844
+ {
845
+ }
846
+
847
+ Ice::OperationNotExistException::~OperationNotExistException() throw()
848
+ {
849
+ }
850
+
851
+ ::std::string
852
+ Ice::OperationNotExistException::ice_name() const
853
+ {
854
+ return "Ice::OperationNotExistException";
855
+ }
856
+
857
+ Ice::OperationNotExistException*
858
+ Ice::OperationNotExistException::ice_clone() const
859
+ {
860
+ return new OperationNotExistException(*this);
861
+ }
862
+
863
+ void
864
+ Ice::OperationNotExistException::ice_throw() const
865
+ {
866
+ throw *this;
867
+ }
868
+
869
+ Ice::SyscallException::SyscallException(const char* __file, int __line) :
870
+ ::Ice::LocalException(__file, __line),
871
+ error(0)
872
+ {
873
+ }
874
+
875
+ Ice::SyscallException::SyscallException(const char* __file, int __line, ::Ice::Int __ice_error) :
876
+ ::Ice::LocalException(__file, __line),
877
+ error(__ice_error)
878
+ {
879
+ }
880
+
881
+ Ice::SyscallException::~SyscallException() throw()
882
+ {
883
+ }
884
+
885
+ ::std::string
886
+ Ice::SyscallException::ice_name() const
887
+ {
888
+ return "Ice::SyscallException";
889
+ }
890
+
891
+ Ice::SyscallException*
892
+ Ice::SyscallException::ice_clone() const
893
+ {
894
+ return new SyscallException(*this);
895
+ }
896
+
897
+ void
898
+ Ice::SyscallException::ice_throw() const
899
+ {
900
+ throw *this;
901
+ }
902
+
903
+ Ice::SocketException::SocketException(const char* __file, int __line) :
904
+ ::Ice::SyscallException(__file, __line)
905
+ {
906
+ }
907
+
908
+ Ice::SocketException::SocketException(const char* __file, int __line, ::Ice::Int __ice_error) :
909
+ ::Ice::SyscallException(__file, __line, __ice_error)
910
+ {
911
+ }
912
+
913
+ Ice::SocketException::~SocketException() throw()
914
+ {
915
+ }
916
+
917
+ ::std::string
918
+ Ice::SocketException::ice_name() const
919
+ {
920
+ return "Ice::SocketException";
921
+ }
922
+
923
+ Ice::SocketException*
924
+ Ice::SocketException::ice_clone() const
925
+ {
926
+ return new SocketException(*this);
927
+ }
928
+
929
+ void
930
+ Ice::SocketException::ice_throw() const
931
+ {
932
+ throw *this;
933
+ }
934
+
935
+ Ice::FileException::FileException(const char* __file, int __line) :
936
+ ::Ice::SyscallException(__file, __line)
937
+ {
938
+ }
939
+
940
+ Ice::FileException::FileException(const char* __file, int __line, ::Ice::Int __ice_error, const ::std::string& __ice_path) :
941
+ ::Ice::SyscallException(__file, __line, __ice_error),
942
+ path(__ice_path)
943
+ {
944
+ }
945
+
946
+ Ice::FileException::~FileException() throw()
947
+ {
948
+ }
949
+
950
+ ::std::string
951
+ Ice::FileException::ice_name() const
952
+ {
953
+ return "Ice::FileException";
954
+ }
955
+
956
+ Ice::FileException*
957
+ Ice::FileException::ice_clone() const
958
+ {
959
+ return new FileException(*this);
960
+ }
961
+
962
+ void
963
+ Ice::FileException::ice_throw() const
964
+ {
965
+ throw *this;
966
+ }
967
+
968
+ Ice::ConnectFailedException::ConnectFailedException(const char* __file, int __line) :
969
+ ::Ice::SocketException(__file, __line)
970
+ {
971
+ }
972
+
973
+ Ice::ConnectFailedException::ConnectFailedException(const char* __file, int __line, ::Ice::Int __ice_error) :
974
+ ::Ice::SocketException(__file, __line, __ice_error)
975
+ {
976
+ }
977
+
978
+ Ice::ConnectFailedException::~ConnectFailedException() throw()
979
+ {
980
+ }
981
+
982
+ ::std::string
983
+ Ice::ConnectFailedException::ice_name() const
984
+ {
985
+ return "Ice::ConnectFailedException";
986
+ }
987
+
988
+ Ice::ConnectFailedException*
989
+ Ice::ConnectFailedException::ice_clone() const
990
+ {
991
+ return new ConnectFailedException(*this);
992
+ }
993
+
994
+ void
995
+ Ice::ConnectFailedException::ice_throw() const
996
+ {
997
+ throw *this;
998
+ }
999
+
1000
+ Ice::ConnectionRefusedException::ConnectionRefusedException(const char* __file, int __line) :
1001
+ ::Ice::ConnectFailedException(__file, __line)
1002
+ {
1003
+ }
1004
+
1005
+ Ice::ConnectionRefusedException::ConnectionRefusedException(const char* __file, int __line, ::Ice::Int __ice_error) :
1006
+ ::Ice::ConnectFailedException(__file, __line, __ice_error)
1007
+ {
1008
+ }
1009
+
1010
+ Ice::ConnectionRefusedException::~ConnectionRefusedException() throw()
1011
+ {
1012
+ }
1013
+
1014
+ ::std::string
1015
+ Ice::ConnectionRefusedException::ice_name() const
1016
+ {
1017
+ return "Ice::ConnectionRefusedException";
1018
+ }
1019
+
1020
+ Ice::ConnectionRefusedException*
1021
+ Ice::ConnectionRefusedException::ice_clone() const
1022
+ {
1023
+ return new ConnectionRefusedException(*this);
1024
+ }
1025
+
1026
+ void
1027
+ Ice::ConnectionRefusedException::ice_throw() const
1028
+ {
1029
+ throw *this;
1030
+ }
1031
+
1032
+ Ice::ConnectionLostException::ConnectionLostException(const char* __file, int __line) :
1033
+ ::Ice::SocketException(__file, __line)
1034
+ {
1035
+ }
1036
+
1037
+ Ice::ConnectionLostException::ConnectionLostException(const char* __file, int __line, ::Ice::Int __ice_error) :
1038
+ ::Ice::SocketException(__file, __line, __ice_error)
1039
+ {
1040
+ }
1041
+
1042
+ Ice::ConnectionLostException::~ConnectionLostException() throw()
1043
+ {
1044
+ }
1045
+
1046
+ ::std::string
1047
+ Ice::ConnectionLostException::ice_name() const
1048
+ {
1049
+ return "Ice::ConnectionLostException";
1050
+ }
1051
+
1052
+ Ice::ConnectionLostException*
1053
+ Ice::ConnectionLostException::ice_clone() const
1054
+ {
1055
+ return new ConnectionLostException(*this);
1056
+ }
1057
+
1058
+ void
1059
+ Ice::ConnectionLostException::ice_throw() const
1060
+ {
1061
+ throw *this;
1062
+ }
1063
+
1064
+ Ice::DNSException::DNSException(const char* __file, int __line) :
1065
+ ::Ice::LocalException(__file, __line),
1066
+ error(0)
1067
+ {
1068
+ }
1069
+
1070
+ Ice::DNSException::DNSException(const char* __file, int __line, ::Ice::Int __ice_error, const ::std::string& __ice_host) :
1071
+ ::Ice::LocalException(__file, __line),
1072
+ error(__ice_error),
1073
+ host(__ice_host)
1074
+ {
1075
+ }
1076
+
1077
+ Ice::DNSException::~DNSException() throw()
1078
+ {
1079
+ }
1080
+
1081
+ ::std::string
1082
+ Ice::DNSException::ice_name() const
1083
+ {
1084
+ return "Ice::DNSException";
1085
+ }
1086
+
1087
+ Ice::DNSException*
1088
+ Ice::DNSException::ice_clone() const
1089
+ {
1090
+ return new DNSException(*this);
1091
+ }
1092
+
1093
+ void
1094
+ Ice::DNSException::ice_throw() const
1095
+ {
1096
+ throw *this;
1097
+ }
1098
+
1099
+ Ice::OperationInterruptedException::OperationInterruptedException(const char* __file, int __line) :
1100
+ ::Ice::LocalException(__file, __line)
1101
+ {
1102
+ }
1103
+
1104
+ Ice::OperationInterruptedException::~OperationInterruptedException() throw()
1105
+ {
1106
+ }
1107
+
1108
+ ::std::string
1109
+ Ice::OperationInterruptedException::ice_name() const
1110
+ {
1111
+ return "Ice::OperationInterruptedException";
1112
+ }
1113
+
1114
+ Ice::OperationInterruptedException*
1115
+ Ice::OperationInterruptedException::ice_clone() const
1116
+ {
1117
+ return new OperationInterruptedException(*this);
1118
+ }
1119
+
1120
+ void
1121
+ Ice::OperationInterruptedException::ice_throw() const
1122
+ {
1123
+ throw *this;
1124
+ }
1125
+
1126
+ Ice::TimeoutException::TimeoutException(const char* __file, int __line) :
1127
+ ::Ice::LocalException(__file, __line)
1128
+ {
1129
+ }
1130
+
1131
+ Ice::TimeoutException::~TimeoutException() throw()
1132
+ {
1133
+ }
1134
+
1135
+ ::std::string
1136
+ Ice::TimeoutException::ice_name() const
1137
+ {
1138
+ return "Ice::TimeoutException";
1139
+ }
1140
+
1141
+ Ice::TimeoutException*
1142
+ Ice::TimeoutException::ice_clone() const
1143
+ {
1144
+ return new TimeoutException(*this);
1145
+ }
1146
+
1147
+ void
1148
+ Ice::TimeoutException::ice_throw() const
1149
+ {
1150
+ throw *this;
1151
+ }
1152
+
1153
+ Ice::ConnectTimeoutException::ConnectTimeoutException(const char* __file, int __line) :
1154
+ ::Ice::TimeoutException(__file, __line)
1155
+ {
1156
+ }
1157
+
1158
+ Ice::ConnectTimeoutException::~ConnectTimeoutException() throw()
1159
+ {
1160
+ }
1161
+
1162
+ ::std::string
1163
+ Ice::ConnectTimeoutException::ice_name() const
1164
+ {
1165
+ return "Ice::ConnectTimeoutException";
1166
+ }
1167
+
1168
+ Ice::ConnectTimeoutException*
1169
+ Ice::ConnectTimeoutException::ice_clone() const
1170
+ {
1171
+ return new ConnectTimeoutException(*this);
1172
+ }
1173
+
1174
+ void
1175
+ Ice::ConnectTimeoutException::ice_throw() const
1176
+ {
1177
+ throw *this;
1178
+ }
1179
+
1180
+ Ice::CloseTimeoutException::CloseTimeoutException(const char* __file, int __line) :
1181
+ ::Ice::TimeoutException(__file, __line)
1182
+ {
1183
+ }
1184
+
1185
+ Ice::CloseTimeoutException::~CloseTimeoutException() throw()
1186
+ {
1187
+ }
1188
+
1189
+ ::std::string
1190
+ Ice::CloseTimeoutException::ice_name() const
1191
+ {
1192
+ return "Ice::CloseTimeoutException";
1193
+ }
1194
+
1195
+ Ice::CloseTimeoutException*
1196
+ Ice::CloseTimeoutException::ice_clone() const
1197
+ {
1198
+ return new CloseTimeoutException(*this);
1199
+ }
1200
+
1201
+ void
1202
+ Ice::CloseTimeoutException::ice_throw() const
1203
+ {
1204
+ throw *this;
1205
+ }
1206
+
1207
+ Ice::ConnectionTimeoutException::ConnectionTimeoutException(const char* __file, int __line) :
1208
+ ::Ice::TimeoutException(__file, __line)
1209
+ {
1210
+ }
1211
+
1212
+ Ice::ConnectionTimeoutException::~ConnectionTimeoutException() throw()
1213
+ {
1214
+ }
1215
+
1216
+ ::std::string
1217
+ Ice::ConnectionTimeoutException::ice_name() const
1218
+ {
1219
+ return "Ice::ConnectionTimeoutException";
1220
+ }
1221
+
1222
+ Ice::ConnectionTimeoutException*
1223
+ Ice::ConnectionTimeoutException::ice_clone() const
1224
+ {
1225
+ return new ConnectionTimeoutException(*this);
1226
+ }
1227
+
1228
+ void
1229
+ Ice::ConnectionTimeoutException::ice_throw() const
1230
+ {
1231
+ throw *this;
1232
+ }
1233
+
1234
+ Ice::InvocationTimeoutException::InvocationTimeoutException(const char* __file, int __line) :
1235
+ ::Ice::TimeoutException(__file, __line)
1236
+ {
1237
+ }
1238
+
1239
+ Ice::InvocationTimeoutException::~InvocationTimeoutException() throw()
1240
+ {
1241
+ }
1242
+
1243
+ ::std::string
1244
+ Ice::InvocationTimeoutException::ice_name() const
1245
+ {
1246
+ return "Ice::InvocationTimeoutException";
1247
+ }
1248
+
1249
+ Ice::InvocationTimeoutException*
1250
+ Ice::InvocationTimeoutException::ice_clone() const
1251
+ {
1252
+ return new InvocationTimeoutException(*this);
1253
+ }
1254
+
1255
+ void
1256
+ Ice::InvocationTimeoutException::ice_throw() const
1257
+ {
1258
+ throw *this;
1259
+ }
1260
+
1261
+ Ice::InvocationCanceledException::InvocationCanceledException(const char* __file, int __line) :
1262
+ ::Ice::LocalException(__file, __line)
1263
+ {
1264
+ }
1265
+
1266
+ Ice::InvocationCanceledException::~InvocationCanceledException() throw()
1267
+ {
1268
+ }
1269
+
1270
+ ::std::string
1271
+ Ice::InvocationCanceledException::ice_name() const
1272
+ {
1273
+ return "Ice::InvocationCanceledException";
1274
+ }
1275
+
1276
+ Ice::InvocationCanceledException*
1277
+ Ice::InvocationCanceledException::ice_clone() const
1278
+ {
1279
+ return new InvocationCanceledException(*this);
1280
+ }
1281
+
1282
+ void
1283
+ Ice::InvocationCanceledException::ice_throw() const
1284
+ {
1285
+ throw *this;
1286
+ }
1287
+
1288
+ Ice::ProtocolException::ProtocolException(const char* __file, int __line) :
1289
+ ::Ice::LocalException(__file, __line)
1290
+ {
1291
+ }
1292
+
1293
+ Ice::ProtocolException::ProtocolException(const char* __file, int __line, const ::std::string& __ice_reason) :
1294
+ ::Ice::LocalException(__file, __line),
1295
+ reason(__ice_reason)
1296
+ {
1297
+ }
1298
+
1299
+ Ice::ProtocolException::~ProtocolException() throw()
1300
+ {
1301
+ }
1302
+
1303
+ ::std::string
1304
+ Ice::ProtocolException::ice_name() const
1305
+ {
1306
+ return "Ice::ProtocolException";
1307
+ }
1308
+
1309
+ Ice::ProtocolException*
1310
+ Ice::ProtocolException::ice_clone() const
1311
+ {
1312
+ return new ProtocolException(*this);
1313
+ }
1314
+
1315
+ void
1316
+ Ice::ProtocolException::ice_throw() const
1317
+ {
1318
+ throw *this;
1319
+ }
1320
+
1321
+ Ice::BadMagicException::BadMagicException(const char* __file, int __line) :
1322
+ ::Ice::ProtocolException(__file, __line)
1323
+ {
1324
+ }
1325
+
1326
+ Ice::BadMagicException::BadMagicException(const char* __file, int __line, const ::std::string& __ice_reason, const ::Ice::ByteSeq& __ice_badMagic) :
1327
+ ::Ice::ProtocolException(__file, __line, __ice_reason),
1328
+ badMagic(__ice_badMagic)
1329
+ {
1330
+ }
1331
+
1332
+ Ice::BadMagicException::~BadMagicException() throw()
1333
+ {
1334
+ }
1335
+
1336
+ ::std::string
1337
+ Ice::BadMagicException::ice_name() const
1338
+ {
1339
+ return "Ice::BadMagicException";
1340
+ }
1341
+
1342
+ Ice::BadMagicException*
1343
+ Ice::BadMagicException::ice_clone() const
1344
+ {
1345
+ return new BadMagicException(*this);
1346
+ }
1347
+
1348
+ void
1349
+ Ice::BadMagicException::ice_throw() const
1350
+ {
1351
+ throw *this;
1352
+ }
1353
+
1354
+ Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* __file, int __line) :
1355
+ ::Ice::ProtocolException(__file, __line)
1356
+ {
1357
+ }
1358
+
1359
+ Ice::UnsupportedProtocolException::UnsupportedProtocolException(const char* __file, int __line, const ::std::string& __ice_reason, const ::Ice::ProtocolVersion& __ice_bad, const ::Ice::ProtocolVersion& __ice_supported) :
1360
+ ::Ice::ProtocolException(__file, __line, __ice_reason),
1361
+ bad(__ice_bad),
1362
+ supported(__ice_supported)
1363
+ {
1364
+ }
1365
+
1366
+ Ice::UnsupportedProtocolException::~UnsupportedProtocolException() throw()
1367
+ {
1368
+ }
1369
+
1370
+ ::std::string
1371
+ Ice::UnsupportedProtocolException::ice_name() const
1372
+ {
1373
+ return "Ice::UnsupportedProtocolException";
1374
+ }
1375
+
1376
+ Ice::UnsupportedProtocolException*
1377
+ Ice::UnsupportedProtocolException::ice_clone() const
1378
+ {
1379
+ return new UnsupportedProtocolException(*this);
1380
+ }
1381
+
1382
+ void
1383
+ Ice::UnsupportedProtocolException::ice_throw() const
1384
+ {
1385
+ throw *this;
1386
+ }
1387
+
1388
+ Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* __file, int __line) :
1389
+ ::Ice::ProtocolException(__file, __line)
1390
+ {
1391
+ }
1392
+
1393
+ Ice::UnsupportedEncodingException::UnsupportedEncodingException(const char* __file, int __line, const ::std::string& __ice_reason, const ::Ice::EncodingVersion& __ice_bad, const ::Ice::EncodingVersion& __ice_supported) :
1394
+ ::Ice::ProtocolException(__file, __line, __ice_reason),
1395
+ bad(__ice_bad),
1396
+ supported(__ice_supported)
1397
+ {
1398
+ }
1399
+
1400
+ Ice::UnsupportedEncodingException::~UnsupportedEncodingException() throw()
1401
+ {
1402
+ }
1403
+
1404
+ ::std::string
1405
+ Ice::UnsupportedEncodingException::ice_name() const
1406
+ {
1407
+ return "Ice::UnsupportedEncodingException";
1408
+ }
1409
+
1410
+ Ice::UnsupportedEncodingException*
1411
+ Ice::UnsupportedEncodingException::ice_clone() const
1412
+ {
1413
+ return new UnsupportedEncodingException(*this);
1414
+ }
1415
+
1416
+ void
1417
+ Ice::UnsupportedEncodingException::ice_throw() const
1418
+ {
1419
+ throw *this;
1420
+ }
1421
+
1422
+ Ice::UnknownMessageException::UnknownMessageException(const char* __file, int __line) :
1423
+ ::Ice::ProtocolException(__file, __line)
1424
+ {
1425
+ }
1426
+
1427
+ Ice::UnknownMessageException::UnknownMessageException(const char* __file, int __line, const ::std::string& __ice_reason) :
1428
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1429
+ {
1430
+ }
1431
+
1432
+ Ice::UnknownMessageException::~UnknownMessageException() throw()
1433
+ {
1434
+ }
1435
+
1436
+ ::std::string
1437
+ Ice::UnknownMessageException::ice_name() const
1438
+ {
1439
+ return "Ice::UnknownMessageException";
1440
+ }
1441
+
1442
+ Ice::UnknownMessageException*
1443
+ Ice::UnknownMessageException::ice_clone() const
1444
+ {
1445
+ return new UnknownMessageException(*this);
1446
+ }
1447
+
1448
+ void
1449
+ Ice::UnknownMessageException::ice_throw() const
1450
+ {
1451
+ throw *this;
1452
+ }
1453
+
1454
+ Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* __file, int __line) :
1455
+ ::Ice::ProtocolException(__file, __line)
1456
+ {
1457
+ }
1458
+
1459
+ Ice::ConnectionNotValidatedException::ConnectionNotValidatedException(const char* __file, int __line, const ::std::string& __ice_reason) :
1460
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1461
+ {
1462
+ }
1463
+
1464
+ Ice::ConnectionNotValidatedException::~ConnectionNotValidatedException() throw()
1465
+ {
1466
+ }
1467
+
1468
+ ::std::string
1469
+ Ice::ConnectionNotValidatedException::ice_name() const
1470
+ {
1471
+ return "Ice::ConnectionNotValidatedException";
1472
+ }
1473
+
1474
+ Ice::ConnectionNotValidatedException*
1475
+ Ice::ConnectionNotValidatedException::ice_clone() const
1476
+ {
1477
+ return new ConnectionNotValidatedException(*this);
1478
+ }
1479
+
1480
+ void
1481
+ Ice::ConnectionNotValidatedException::ice_throw() const
1482
+ {
1483
+ throw *this;
1484
+ }
1485
+
1486
+ Ice::UnknownRequestIdException::UnknownRequestIdException(const char* __file, int __line) :
1487
+ ::Ice::ProtocolException(__file, __line)
1488
+ {
1489
+ }
1490
+
1491
+ Ice::UnknownRequestIdException::UnknownRequestIdException(const char* __file, int __line, const ::std::string& __ice_reason) :
1492
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1493
+ {
1494
+ }
1495
+
1496
+ Ice::UnknownRequestIdException::~UnknownRequestIdException() throw()
1497
+ {
1498
+ }
1499
+
1500
+ ::std::string
1501
+ Ice::UnknownRequestIdException::ice_name() const
1502
+ {
1503
+ return "Ice::UnknownRequestIdException";
1504
+ }
1505
+
1506
+ Ice::UnknownRequestIdException*
1507
+ Ice::UnknownRequestIdException::ice_clone() const
1508
+ {
1509
+ return new UnknownRequestIdException(*this);
1510
+ }
1511
+
1512
+ void
1513
+ Ice::UnknownRequestIdException::ice_throw() const
1514
+ {
1515
+ throw *this;
1516
+ }
1517
+
1518
+ Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* __file, int __line) :
1519
+ ::Ice::ProtocolException(__file, __line)
1520
+ {
1521
+ }
1522
+
1523
+ Ice::UnknownReplyStatusException::UnknownReplyStatusException(const char* __file, int __line, const ::std::string& __ice_reason) :
1524
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1525
+ {
1526
+ }
1527
+
1528
+ Ice::UnknownReplyStatusException::~UnknownReplyStatusException() throw()
1529
+ {
1530
+ }
1531
+
1532
+ ::std::string
1533
+ Ice::UnknownReplyStatusException::ice_name() const
1534
+ {
1535
+ return "Ice::UnknownReplyStatusException";
1536
+ }
1537
+
1538
+ Ice::UnknownReplyStatusException*
1539
+ Ice::UnknownReplyStatusException::ice_clone() const
1540
+ {
1541
+ return new UnknownReplyStatusException(*this);
1542
+ }
1543
+
1544
+ void
1545
+ Ice::UnknownReplyStatusException::ice_throw() const
1546
+ {
1547
+ throw *this;
1548
+ }
1549
+
1550
+ Ice::CloseConnectionException::CloseConnectionException(const char* __file, int __line) :
1551
+ ::Ice::ProtocolException(__file, __line)
1552
+ {
1553
+ }
1554
+
1555
+ Ice::CloseConnectionException::CloseConnectionException(const char* __file, int __line, const ::std::string& __ice_reason) :
1556
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1557
+ {
1558
+ }
1559
+
1560
+ Ice::CloseConnectionException::~CloseConnectionException() throw()
1561
+ {
1562
+ }
1563
+
1564
+ ::std::string
1565
+ Ice::CloseConnectionException::ice_name() const
1566
+ {
1567
+ return "Ice::CloseConnectionException";
1568
+ }
1569
+
1570
+ Ice::CloseConnectionException*
1571
+ Ice::CloseConnectionException::ice_clone() const
1572
+ {
1573
+ return new CloseConnectionException(*this);
1574
+ }
1575
+
1576
+ void
1577
+ Ice::CloseConnectionException::ice_throw() const
1578
+ {
1579
+ throw *this;
1580
+ }
1581
+
1582
+ Ice::ForcedCloseConnectionException::ForcedCloseConnectionException(const char* __file, int __line) :
1583
+ ::Ice::ProtocolException(__file, __line)
1584
+ {
1585
+ }
1586
+
1587
+ Ice::ForcedCloseConnectionException::ForcedCloseConnectionException(const char* __file, int __line, const ::std::string& __ice_reason) :
1588
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1589
+ {
1590
+ }
1591
+
1592
+ Ice::ForcedCloseConnectionException::~ForcedCloseConnectionException() throw()
1593
+ {
1594
+ }
1595
+
1596
+ ::std::string
1597
+ Ice::ForcedCloseConnectionException::ice_name() const
1598
+ {
1599
+ return "Ice::ForcedCloseConnectionException";
1600
+ }
1601
+
1602
+ Ice::ForcedCloseConnectionException*
1603
+ Ice::ForcedCloseConnectionException::ice_clone() const
1604
+ {
1605
+ return new ForcedCloseConnectionException(*this);
1606
+ }
1607
+
1608
+ void
1609
+ Ice::ForcedCloseConnectionException::ice_throw() const
1610
+ {
1611
+ throw *this;
1612
+ }
1613
+
1614
+ Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* __file, int __line) :
1615
+ ::Ice::ProtocolException(__file, __line)
1616
+ {
1617
+ }
1618
+
1619
+ Ice::IllegalMessageSizeException::IllegalMessageSizeException(const char* __file, int __line, const ::std::string& __ice_reason) :
1620
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1621
+ {
1622
+ }
1623
+
1624
+ Ice::IllegalMessageSizeException::~IllegalMessageSizeException() throw()
1625
+ {
1626
+ }
1627
+
1628
+ ::std::string
1629
+ Ice::IllegalMessageSizeException::ice_name() const
1630
+ {
1631
+ return "Ice::IllegalMessageSizeException";
1632
+ }
1633
+
1634
+ Ice::IllegalMessageSizeException*
1635
+ Ice::IllegalMessageSizeException::ice_clone() const
1636
+ {
1637
+ return new IllegalMessageSizeException(*this);
1638
+ }
1639
+
1640
+ void
1641
+ Ice::IllegalMessageSizeException::ice_throw() const
1642
+ {
1643
+ throw *this;
1644
+ }
1645
+
1646
+ Ice::CompressionException::CompressionException(const char* __file, int __line) :
1647
+ ::Ice::ProtocolException(__file, __line)
1648
+ {
1649
+ }
1650
+
1651
+ Ice::CompressionException::CompressionException(const char* __file, int __line, const ::std::string& __ice_reason) :
1652
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1653
+ {
1654
+ }
1655
+
1656
+ Ice::CompressionException::~CompressionException() throw()
1657
+ {
1658
+ }
1659
+
1660
+ ::std::string
1661
+ Ice::CompressionException::ice_name() const
1662
+ {
1663
+ return "Ice::CompressionException";
1664
+ }
1665
+
1666
+ Ice::CompressionException*
1667
+ Ice::CompressionException::ice_clone() const
1668
+ {
1669
+ return new CompressionException(*this);
1670
+ }
1671
+
1672
+ void
1673
+ Ice::CompressionException::ice_throw() const
1674
+ {
1675
+ throw *this;
1676
+ }
1677
+
1678
+ Ice::DatagramLimitException::DatagramLimitException(const char* __file, int __line) :
1679
+ ::Ice::ProtocolException(__file, __line)
1680
+ {
1681
+ }
1682
+
1683
+ Ice::DatagramLimitException::DatagramLimitException(const char* __file, int __line, const ::std::string& __ice_reason) :
1684
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1685
+ {
1686
+ }
1687
+
1688
+ Ice::DatagramLimitException::~DatagramLimitException() throw()
1689
+ {
1690
+ }
1691
+
1692
+ ::std::string
1693
+ Ice::DatagramLimitException::ice_name() const
1694
+ {
1695
+ return "Ice::DatagramLimitException";
1696
+ }
1697
+
1698
+ Ice::DatagramLimitException*
1699
+ Ice::DatagramLimitException::ice_clone() const
1700
+ {
1701
+ return new DatagramLimitException(*this);
1702
+ }
1703
+
1704
+ void
1705
+ Ice::DatagramLimitException::ice_throw() const
1706
+ {
1707
+ throw *this;
1708
+ }
1709
+
1710
+ Ice::MarshalException::MarshalException(const char* __file, int __line) :
1711
+ ::Ice::ProtocolException(__file, __line)
1712
+ {
1713
+ }
1714
+
1715
+ Ice::MarshalException::MarshalException(const char* __file, int __line, const ::std::string& __ice_reason) :
1716
+ ::Ice::ProtocolException(__file, __line, __ice_reason)
1717
+ {
1718
+ }
1719
+
1720
+ Ice::MarshalException::~MarshalException() throw()
1721
+ {
1722
+ }
1723
+
1724
+ ::std::string
1725
+ Ice::MarshalException::ice_name() const
1726
+ {
1727
+ return "Ice::MarshalException";
1728
+ }
1729
+
1730
+ Ice::MarshalException*
1731
+ Ice::MarshalException::ice_clone() const
1732
+ {
1733
+ return new MarshalException(*this);
1734
+ }
1735
+
1736
+ void
1737
+ Ice::MarshalException::ice_throw() const
1738
+ {
1739
+ throw *this;
1740
+ }
1741
+
1742
+ Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* __file, int __line) :
1743
+ ::Ice::MarshalException(__file, __line)
1744
+ {
1745
+ }
1746
+
1747
+ Ice::ProxyUnmarshalException::ProxyUnmarshalException(const char* __file, int __line, const ::std::string& __ice_reason) :
1748
+ ::Ice::MarshalException(__file, __line, __ice_reason)
1749
+ {
1750
+ }
1751
+
1752
+ Ice::ProxyUnmarshalException::~ProxyUnmarshalException() throw()
1753
+ {
1754
+ }
1755
+
1756
+ ::std::string
1757
+ Ice::ProxyUnmarshalException::ice_name() const
1758
+ {
1759
+ return "Ice::ProxyUnmarshalException";
1760
+ }
1761
+
1762
+ Ice::ProxyUnmarshalException*
1763
+ Ice::ProxyUnmarshalException::ice_clone() const
1764
+ {
1765
+ return new ProxyUnmarshalException(*this);
1766
+ }
1767
+
1768
+ void
1769
+ Ice::ProxyUnmarshalException::ice_throw() const
1770
+ {
1771
+ throw *this;
1772
+ }
1773
+
1774
+ Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* __file, int __line) :
1775
+ ::Ice::MarshalException(__file, __line)
1776
+ {
1777
+ }
1778
+
1779
+ Ice::UnmarshalOutOfBoundsException::UnmarshalOutOfBoundsException(const char* __file, int __line, const ::std::string& __ice_reason) :
1780
+ ::Ice::MarshalException(__file, __line, __ice_reason)
1781
+ {
1782
+ }
1783
+
1784
+ Ice::UnmarshalOutOfBoundsException::~UnmarshalOutOfBoundsException() throw()
1785
+ {
1786
+ }
1787
+
1788
+ ::std::string
1789
+ Ice::UnmarshalOutOfBoundsException::ice_name() const
1790
+ {
1791
+ return "Ice::UnmarshalOutOfBoundsException";
1792
+ }
1793
+
1794
+ Ice::UnmarshalOutOfBoundsException*
1795
+ Ice::UnmarshalOutOfBoundsException::ice_clone() const
1796
+ {
1797
+ return new UnmarshalOutOfBoundsException(*this);
1798
+ }
1799
+
1800
+ void
1801
+ Ice::UnmarshalOutOfBoundsException::ice_throw() const
1802
+ {
1803
+ throw *this;
1804
+ }
1805
+
1806
+ Ice::NoObjectFactoryException::NoObjectFactoryException(const char* __file, int __line) :
1807
+ ::Ice::MarshalException(__file, __line)
1808
+ {
1809
+ }
1810
+
1811
+ Ice::NoObjectFactoryException::NoObjectFactoryException(const char* __file, int __line, const ::std::string& __ice_reason, const ::std::string& __ice_type) :
1812
+ ::Ice::MarshalException(__file, __line, __ice_reason),
1813
+ type(__ice_type)
1814
+ {
1815
+ }
1816
+
1817
+ Ice::NoObjectFactoryException::~NoObjectFactoryException() throw()
1818
+ {
1819
+ }
1820
+
1821
+ ::std::string
1822
+ Ice::NoObjectFactoryException::ice_name() const
1823
+ {
1824
+ return "Ice::NoObjectFactoryException";
1825
+ }
1826
+
1827
+ Ice::NoObjectFactoryException*
1828
+ Ice::NoObjectFactoryException::ice_clone() const
1829
+ {
1830
+ return new NoObjectFactoryException(*this);
1831
+ }
1832
+
1833
+ void
1834
+ Ice::NoObjectFactoryException::ice_throw() const
1835
+ {
1836
+ throw *this;
1837
+ }
1838
+
1839
+ Ice::UnexpectedObjectException::UnexpectedObjectException(const char* __file, int __line) :
1840
+ ::Ice::MarshalException(__file, __line)
1841
+ {
1842
+ }
1843
+
1844
+ Ice::UnexpectedObjectException::UnexpectedObjectException(const char* __file, int __line, const ::std::string& __ice_reason, const ::std::string& __ice_type, const ::std::string& __ice_expectedType) :
1845
+ ::Ice::MarshalException(__file, __line, __ice_reason),
1846
+ type(__ice_type),
1847
+ expectedType(__ice_expectedType)
1848
+ {
1849
+ }
1850
+
1851
+ Ice::UnexpectedObjectException::~UnexpectedObjectException() throw()
1852
+ {
1853
+ }
1854
+
1855
+ ::std::string
1856
+ Ice::UnexpectedObjectException::ice_name() const
1857
+ {
1858
+ return "Ice::UnexpectedObjectException";
1859
+ }
1860
+
1861
+ Ice::UnexpectedObjectException*
1862
+ Ice::UnexpectedObjectException::ice_clone() const
1863
+ {
1864
+ return new UnexpectedObjectException(*this);
1865
+ }
1866
+
1867
+ void
1868
+ Ice::UnexpectedObjectException::ice_throw() const
1869
+ {
1870
+ throw *this;
1871
+ }
1872
+
1873
+ Ice::MemoryLimitException::MemoryLimitException(const char* __file, int __line) :
1874
+ ::Ice::MarshalException(__file, __line)
1875
+ {
1876
+ }
1877
+
1878
+ Ice::MemoryLimitException::MemoryLimitException(const char* __file, int __line, const ::std::string& __ice_reason) :
1879
+ ::Ice::MarshalException(__file, __line, __ice_reason)
1880
+ {
1881
+ }
1882
+
1883
+ Ice::MemoryLimitException::~MemoryLimitException() throw()
1884
+ {
1885
+ }
1886
+
1887
+ ::std::string
1888
+ Ice::MemoryLimitException::ice_name() const
1889
+ {
1890
+ return "Ice::MemoryLimitException";
1891
+ }
1892
+
1893
+ Ice::MemoryLimitException*
1894
+ Ice::MemoryLimitException::ice_clone() const
1895
+ {
1896
+ return new MemoryLimitException(*this);
1897
+ }
1898
+
1899
+ void
1900
+ Ice::MemoryLimitException::ice_throw() const
1901
+ {
1902
+ throw *this;
1903
+ }
1904
+
1905
+ Ice::StringConversionException::StringConversionException(const char* __file, int __line) :
1906
+ ::Ice::MarshalException(__file, __line)
1907
+ {
1908
+ }
1909
+
1910
+ Ice::StringConversionException::StringConversionException(const char* __file, int __line, const ::std::string& __ice_reason) :
1911
+ ::Ice::MarshalException(__file, __line, __ice_reason)
1912
+ {
1913
+ }
1914
+
1915
+ Ice::StringConversionException::~StringConversionException() throw()
1916
+ {
1917
+ }
1918
+
1919
+ ::std::string
1920
+ Ice::StringConversionException::ice_name() const
1921
+ {
1922
+ return "Ice::StringConversionException";
1923
+ }
1924
+
1925
+ Ice::StringConversionException*
1926
+ Ice::StringConversionException::ice_clone() const
1927
+ {
1928
+ return new StringConversionException(*this);
1929
+ }
1930
+
1931
+ void
1932
+ Ice::StringConversionException::ice_throw() const
1933
+ {
1934
+ throw *this;
1935
+ }
1936
+
1937
+ Ice::EncapsulationException::EncapsulationException(const char* __file, int __line) :
1938
+ ::Ice::MarshalException(__file, __line)
1939
+ {
1940
+ }
1941
+
1942
+ Ice::EncapsulationException::EncapsulationException(const char* __file, int __line, const ::std::string& __ice_reason) :
1943
+ ::Ice::MarshalException(__file, __line, __ice_reason)
1944
+ {
1945
+ }
1946
+
1947
+ Ice::EncapsulationException::~EncapsulationException() throw()
1948
+ {
1949
+ }
1950
+
1951
+ ::std::string
1952
+ Ice::EncapsulationException::ice_name() const
1953
+ {
1954
+ return "Ice::EncapsulationException";
1955
+ }
1956
+
1957
+ Ice::EncapsulationException*
1958
+ Ice::EncapsulationException::ice_clone() const
1959
+ {
1960
+ return new EncapsulationException(*this);
1961
+ }
1962
+
1963
+ void
1964
+ Ice::EncapsulationException::ice_throw() const
1965
+ {
1966
+ throw *this;
1967
+ }
1968
+
1969
+ Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* __file, int __line) :
1970
+ ::Ice::LocalException(__file, __line)
1971
+ {
1972
+ }
1973
+
1974
+ Ice::FeatureNotSupportedException::FeatureNotSupportedException(const char* __file, int __line, const ::std::string& __ice_unsupportedFeature) :
1975
+ ::Ice::LocalException(__file, __line),
1976
+ unsupportedFeature(__ice_unsupportedFeature)
1977
+ {
1978
+ }
1979
+
1980
+ Ice::FeatureNotSupportedException::~FeatureNotSupportedException() throw()
1981
+ {
1982
+ }
1983
+
1984
+ ::std::string
1985
+ Ice::FeatureNotSupportedException::ice_name() const
1986
+ {
1987
+ return "Ice::FeatureNotSupportedException";
1988
+ }
1989
+
1990
+ Ice::FeatureNotSupportedException*
1991
+ Ice::FeatureNotSupportedException::ice_clone() const
1992
+ {
1993
+ return new FeatureNotSupportedException(*this);
1994
+ }
1995
+
1996
+ void
1997
+ Ice::FeatureNotSupportedException::ice_throw() const
1998
+ {
1999
+ throw *this;
2000
+ }
2001
+
2002
+ Ice::SecurityException::SecurityException(const char* __file, int __line) :
2003
+ ::Ice::LocalException(__file, __line)
2004
+ {
2005
+ }
2006
+
2007
+ Ice::SecurityException::SecurityException(const char* __file, int __line, const ::std::string& __ice_reason) :
2008
+ ::Ice::LocalException(__file, __line),
2009
+ reason(__ice_reason)
2010
+ {
2011
+ }
2012
+
2013
+ Ice::SecurityException::~SecurityException() throw()
2014
+ {
2015
+ }
2016
+
2017
+ ::std::string
2018
+ Ice::SecurityException::ice_name() const
2019
+ {
2020
+ return "Ice::SecurityException";
2021
+ }
2022
+
2023
+ Ice::SecurityException*
2024
+ Ice::SecurityException::ice_clone() const
2025
+ {
2026
+ return new SecurityException(*this);
2027
+ }
2028
+
2029
+ void
2030
+ Ice::SecurityException::ice_throw() const
2031
+ {
2032
+ throw *this;
2033
+ }
2034
+
2035
+ Ice::FixedProxyException::FixedProxyException(const char* __file, int __line) :
2036
+ ::Ice::LocalException(__file, __line)
2037
+ {
2038
+ }
2039
+
2040
+ Ice::FixedProxyException::~FixedProxyException() throw()
2041
+ {
2042
+ }
2043
+
2044
+ ::std::string
2045
+ Ice::FixedProxyException::ice_name() const
2046
+ {
2047
+ return "Ice::FixedProxyException";
2048
+ }
2049
+
2050
+ Ice::FixedProxyException*
2051
+ Ice::FixedProxyException::ice_clone() const
2052
+ {
2053
+ return new FixedProxyException(*this);
2054
+ }
2055
+
2056
+ void
2057
+ Ice::FixedProxyException::ice_throw() const
2058
+ {
2059
+ throw *this;
2060
+ }
2061
+
2062
+ Ice::ResponseSentException::ResponseSentException(const char* __file, int __line) :
2063
+ ::Ice::LocalException(__file, __line)
2064
+ {
2065
+ }
2066
+
2067
+ Ice::ResponseSentException::~ResponseSentException() throw()
2068
+ {
2069
+ }
2070
+
2071
+ ::std::string
2072
+ Ice::ResponseSentException::ice_name() const
2073
+ {
2074
+ return "Ice::ResponseSentException";
2075
+ }
2076
+
2077
+ Ice::ResponseSentException*
2078
+ Ice::ResponseSentException::ice_clone() const
2079
+ {
2080
+ return new ResponseSentException(*this);
2081
+ }
2082
+
2083
+ void
2084
+ Ice::ResponseSentException::ice_throw() const
2085
+ {
2086
+ throw *this;
2087
+ }
2088
+
2089
+ namespace Ice
2090
+ {
2091
+ }