zeroc-ice 3.6.5 → 3.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (752) hide show
  1. checksums.yaml +4 -4
  2. data/BZIP2_LICENSE +42 -0
  3. data/ICE_LICENSE +17 -17
  4. data/LICENSE +12 -12
  5. data/bin/slice2rb +1 -1
  6. data/ext/Communicator.cpp +150 -53
  7. data/ext/Communicator.h +1 -1
  8. data/ext/Config.h +2 -12
  9. data/ext/Connection.cpp +89 -68
  10. data/ext/Connection.h +1 -1
  11. data/ext/Endpoint.cpp +16 -45
  12. data/ext/Endpoint.h +1 -1
  13. data/ext/ImplicitContext.cpp +1 -5
  14. data/ext/ImplicitContext.h +1 -1
  15. data/ext/Init.cpp +4 -1
  16. data/ext/Logger.cpp +1 -1
  17. data/ext/Logger.h +1 -1
  18. data/ext/Operation.cpp +33 -44
  19. data/ext/Operation.h +1 -1
  20. data/ext/Properties.cpp +1 -1
  21. data/ext/Properties.h +1 -1
  22. data/ext/Proxy.cpp +22 -57
  23. data/ext/Proxy.h +1 -1
  24. data/ext/Slice.cpp +5 -5
  25. data/ext/Slice.h +1 -1
  26. data/ext/Types.cpp +244 -171
  27. data/ext/Types.h +118 -66
  28. data/ext/Util.cpp +13 -9
  29. data/ext/Util.h +10 -10
  30. data/ext/ValueFactoryManager.cpp +445 -0
  31. data/ext/ValueFactoryManager.h +100 -0
  32. data/ext/extconf.rb +47 -45
  33. data/ext/ice/bzip2/blocksort.c +1094 -0
  34. data/ext/ice/bzip2/bzlib.c +1572 -0
  35. data/ext/ice/bzip2/bzlib.h +282 -0
  36. data/ext/ice/bzip2/bzlib_private.h +509 -0
  37. data/ext/ice/bzip2/compress.c +672 -0
  38. data/ext/ice/bzip2/crctable.c +104 -0
  39. data/ext/ice/bzip2/decompress.c +646 -0
  40. data/ext/ice/bzip2/huffman.c +205 -0
  41. data/ext/ice/bzip2/randtable.c +84 -0
  42. data/ext/ice/cpp/include/Ice/Application.h +77 -60
  43. data/ext/ice/cpp/include/Ice/AsyncResult.h +34 -318
  44. data/ext/ice/cpp/include/Ice/AsyncResultF.h +4 -2
  45. data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +5 -10
  46. data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +1 -1
  47. data/ext/ice/cpp/include/Ice/Buffer.h +10 -10
  48. data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +14 -12
  49. data/ext/ice/cpp/include/Ice/Comparable.h +130 -0
  50. data/ext/ice/cpp/include/Ice/Config.h +7 -36
  51. data/ext/ice/cpp/include/Ice/ConnectionAsync.h +107 -11
  52. data/ext/ice/cpp/include/Ice/ConnectionIF.h +5 -1
  53. data/ext/ice/cpp/include/Ice/ConsoleUtil.h +28 -0
  54. data/ext/ice/cpp/include/Ice/{DefaultObjectFactory.h → DefaultValueFactory.h} +28 -14
  55. data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +4 -6
  56. data/ext/ice/cpp/include/Ice/Dispatcher.h +14 -13
  57. data/ext/ice/cpp/include/Ice/DynamicLibrary.h +7 -5
  58. data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +1 -1
  59. data/ext/ice/cpp/include/Ice/Exception.h +66 -56
  60. data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +69 -0
  61. data/ext/ice/cpp/include/Ice/FactoryTable.h +11 -12
  62. data/ext/ice/cpp/include/Ice/FactoryTableInit.h +27 -25
  63. data/ext/ice/cpp/include/Ice/Format.h +6 -1
  64. data/ext/ice/cpp/include/Ice/Functional.h +33 -33
  65. data/ext/ice/cpp/include/Ice/GCObject.h +9 -5
  66. data/ext/ice/cpp/include/Ice/Handle.h +6 -11
  67. data/ext/ice/cpp/include/Ice/Ice.h +9 -5
  68. data/ext/ice/cpp/include/{IceUtil → Ice}/IconvStringConverter.h +108 -62
  69. data/ext/ice/cpp/include/Ice/Incoming.h +109 -33
  70. data/ext/ice/cpp/include/Ice/IncomingAsync.h +63 -23
  71. data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +7 -1
  72. data/ext/ice/cpp/include/Ice/Initialize.h +178 -38
  73. data/ext/ice/cpp/include/Ice/InputStream.h +994 -0
  74. data/ext/ice/cpp/include/Ice/InstanceF.h +1 -2
  75. data/ext/ice/cpp/include/Ice/InterfaceByValue.h +46 -0
  76. data/ext/ice/cpp/include/Ice/LocalObject.h +9 -9
  77. data/ext/ice/cpp/include/Ice/LocalObjectF.h +1 -1
  78. data/ext/ice/cpp/include/Ice/LoggerUtil.h +20 -14
  79. data/ext/ice/cpp/include/Ice/MetricsAdminI.h +114 -65
  80. data/ext/ice/cpp/include/Ice/MetricsFunctional.h +23 -5
  81. data/ext/ice/cpp/include/Ice/MetricsObserverI.h +99 -26
  82. data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +17 -4
  83. data/ext/ice/cpp/include/Ice/Object.h +105 -56
  84. data/ext/ice/cpp/include/Ice/ObjectF.h +8 -3
  85. data/ext/ice/cpp/include/Ice/ObserverHelper.h +18 -8
  86. data/ext/ice/cpp/include/Ice/Optional.h +1084 -0
  87. data/ext/ice/cpp/include/Ice/OutgoingAsync.h +655 -84
  88. data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +12 -6
  89. data/ext/ice/cpp/include/Ice/OutputStream.h +753 -0
  90. data/ext/ice/cpp/include/Ice/Protocol.h +19 -12
  91. data/ext/ice/cpp/include/Ice/Proxy.h +1329 -717
  92. data/ext/ice/cpp/include/Ice/ProxyF.h +11 -33
  93. data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +1 -1
  94. data/ext/ice/cpp/include/Ice/ProxyHandle.h +34 -50
  95. data/ext/ice/cpp/include/Ice/ReferenceF.h +1 -1
  96. data/ext/ice/cpp/include/Ice/RegisterPlugins.h +22 -3
  97. data/ext/ice/cpp/include/Ice/RequestHandlerF.h +10 -4
  98. data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +6 -1
  99. data/ext/ice/cpp/include/{IceUtil → Ice}/SHA1.h +16 -16
  100. data/ext/ice/cpp/include/Ice/ServantManagerF.h +1 -1
  101. data/ext/ice/cpp/include/Ice/Service.h +13 -18
  102. data/ext/ice/cpp/include/Ice/SliceChecksums.h +1 -1
  103. data/ext/ice/cpp/include/Ice/SlicedData.h +46 -20
  104. data/ext/ice/cpp/include/Ice/SlicedDataF.h +14 -6
  105. data/ext/ice/cpp/include/Ice/StreamHelpers.h +159 -49
  106. data/ext/ice/cpp/include/Ice/StringConverter.h +52 -0
  107. data/ext/ice/cpp/include/Ice/ThreadPoolF.h +1 -1
  108. data/{slice/Ice/ObjectFactoryF.ice → ext/ice/cpp/include/Ice/UUID.h} +9 -7
  109. data/ext/ice/cpp/include/{IceUtil → Ice}/UniquePtr.h +21 -22
  110. data/ext/ice/cpp/include/Ice/UniqueRef.h +98 -0
  111. data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +40 -8
  112. data/ext/ice/cpp/include/Ice/Value.h +104 -0
  113. data/{slice/Freeze/ConnectionF.ice → ext/ice/cpp/include/Ice/ValueF.h} +11 -7
  114. data/ext/ice/cpp/include/IceSSL/Config.h +8 -23
  115. data/ext/ice/cpp/include/IceSSL/IceSSL.h +17 -6
  116. data/ext/ice/cpp/include/IceSSL/OpenSSL.h +130 -0
  117. data/ext/ice/cpp/include/IceSSL/Plugin.h +172 -259
  118. data/ext/ice/cpp/include/IceSSL/SChannel.h +66 -0
  119. data/ext/ice/cpp/include/IceSSL/SecureTransport.h +66 -0
  120. data/ext/ice/cpp/include/IceSSL/UWP.h +58 -0
  121. data/ext/ice/cpp/include/IceUtil/Atomic.h +8 -10
  122. data/ext/ice/cpp/include/IceUtil/Cond.h +17 -18
  123. data/ext/ice/cpp/include/IceUtil/Config.h +138 -39
  124. data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +97 -0
  125. data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +5 -5
  126. data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +23 -17
  127. data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +1 -3
  128. data/ext/ice/cpp/include/IceUtil/Exception.h +157 -67
  129. data/ext/ice/cpp/include/IceUtil/FileUtil.h +148 -0
  130. data/ext/ice/cpp/include/IceUtil/Functional.h +1 -2
  131. data/ext/ice/cpp/include/IceUtil/Handle.h +11 -11
  132. data/ext/ice/cpp/include/IceUtil/IceUtil.h +4 -10
  133. data/ext/ice/cpp/include/IceUtil/InputUtil.h +3 -3
  134. data/ext/ice/cpp/include/IceUtil/Iterator.h +2 -2
  135. data/ext/ice/cpp/include/IceUtil/Lock.h +8 -10
  136. data/ext/ice/cpp/include/IceUtil/Monitor.h +1 -2
  137. data/ext/ice/cpp/include/IceUtil/Mutex.h +17 -11
  138. data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +2 -2
  139. data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +4 -4
  140. data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +4 -4
  141. data/ext/ice/cpp/include/IceUtil/Optional.h +32 -18
  142. data/ext/ice/cpp/include/IceUtil/Options.h +17 -18
  143. data/ext/ice/cpp/include/IceUtil/OutputUtil.h +55 -29
  144. data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +6 -6
  145. data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +11 -10
  146. data/ext/ice/cpp/include/IceUtil/Random.h +3 -3
  147. data/ext/ice/cpp/include/IceUtil/RecMutex.h +7 -8
  148. data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +58 -0
  149. data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +1 -9
  150. data/ext/ice/cpp/include/IceUtil/ScopedArray.h +8 -2
  151. data/ext/ice/cpp/include/IceUtil/Shared.h +5 -7
  152. data/ext/ice/cpp/{src → include}/IceUtil/StopWatch.h +2 -2
  153. data/ext/ice/cpp/include/IceUtil/StringConverter.h +77 -72
  154. data/ext/ice/cpp/include/IceUtil/StringUtil.h +32 -21
  155. data/ext/ice/cpp/include/IceUtil/Thread.h +10 -12
  156. data/ext/ice/cpp/include/IceUtil/ThreadException.h +33 -42
  157. data/ext/ice/cpp/include/IceUtil/Time.h +3 -3
  158. data/ext/ice/cpp/include/IceUtil/Timer.h +14 -13
  159. data/ext/ice/cpp/include/IceUtil/UUID.h +2 -2
  160. data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +1 -1
  161. data/ext/ice/cpp/include/{Ice → generated/Ice}/BuiltinSequences.h +41 -8
  162. data/ext/ice/cpp/include/generated/Ice/Communicator.h +364 -0
  163. data/ext/ice/cpp/include/{Ice → generated/Ice}/CommunicatorF.h +40 -8
  164. data/ext/ice/cpp/include/generated/Ice/Connection.h +872 -0
  165. data/ext/ice/cpp/include/{Ice → generated/Ice}/ConnectionF.h +46 -8
  166. data/ext/ice/cpp/include/{Ice → generated/Ice}/Current.h +71 -8
  167. data/ext/ice/cpp/include/generated/Ice/Endpoint.h +582 -0
  168. data/ext/ice/cpp/include/{Ice → generated/Ice}/EndpointF.h +62 -8
  169. data/ext/ice/cpp/include/{Ice → generated/Ice}/EndpointTypes.h +31 -16
  170. data/ext/ice/cpp/include/{Ice → generated/Ice}/FacetMap.h +23 -8
  171. data/ext/ice/cpp/include/generated/Ice/Identity.h +221 -0
  172. data/ext/ice/cpp/include/{Ice → generated/Ice}/ImplicitContext.h +72 -13
  173. data/ext/ice/cpp/include/{Ice → generated/Ice}/ImplicitContextF.h +40 -8
  174. data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +602 -0
  175. data/ext/ice/cpp/include/{Ice → generated/Ice}/InstrumentationF.h +54 -8
  176. data/ext/ice/cpp/include/generated/Ice/LocalException.h +2802 -0
  177. data/ext/ice/cpp/include/generated/Ice/Locator.h +2036 -0
  178. data/ext/ice/cpp/include/{Ice → generated/Ice}/LocatorF.h +53 -12
  179. data/ext/ice/cpp/include/{Ice → generated/Ice}/Logger.h +71 -13
  180. data/ext/ice/cpp/include/{Ice → generated/Ice}/LoggerF.h +40 -8
  181. data/ext/ice/cpp/include/generated/Ice/Metrics.h +2649 -0
  182. data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +302 -0
  183. data/ext/ice/cpp/include/{Ice → generated/Ice}/ObjectAdapterF.h +40 -8
  184. data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +142 -0
  185. data/ext/ice/cpp/include/generated/Ice/Plugin.h +197 -0
  186. data/ext/ice/cpp/include/{Ice → generated/Ice}/PluginF.h +43 -8
  187. data/ext/ice/cpp/include/generated/Ice/Process.h +536 -0
  188. data/ext/ice/cpp/include/{Ice → generated/Ice}/ProcessF.h +45 -10
  189. data/ext/ice/cpp/include/{Ice → generated/Ice}/Properties.h +88 -21
  190. data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +749 -0
  191. data/ext/ice/cpp/include/{Ice → generated/Ice}/PropertiesF.h +48 -10
  192. data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +1449 -0
  193. data/ext/ice/cpp/include/generated/Ice/Router.h +1032 -0
  194. data/ext/ice/cpp/include/{Ice → generated/Ice}/RouterF.h +45 -10
  195. data/ext/ice/cpp/include/{Ice → generated/Ice}/ServantLocator.h +65 -13
  196. data/ext/ice/cpp/include/{Ice → generated/Ice}/ServantLocatorF.h +40 -8
  197. data/ext/ice/cpp/include/{Ice → generated/Ice}/SliceChecksumDict.h +23 -8
  198. data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +169 -0
  199. data/ext/ice/cpp/include/generated/Ice/Version.h +334 -0
  200. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +172 -0
  201. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +98 -0
  202. data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +156 -0
  203. data/ext/ice/cpp/src/Ice/ACM.cpp +18 -14
  204. data/ext/ice/cpp/src/Ice/ACM.h +9 -2
  205. data/ext/ice/cpp/{include → src}/Ice/ACMF.h +10 -5
  206. data/ext/ice/cpp/src/Ice/Acceptor.cpp +6 -1
  207. data/ext/ice/cpp/src/Ice/Acceptor.h +4 -3
  208. data/ext/ice/cpp/src/Ice/AcceptorF.h +1 -1
  209. data/ext/ice/cpp/src/{IceUtil → Ice}/ArgVector.cpp +9 -9
  210. data/ext/ice/cpp/src/{IceUtil → Ice}/ArgVector.h +7 -7
  211. data/ext/ice/cpp/src/Ice/AsyncResult.cpp +15 -538
  212. data/ext/ice/cpp/src/Ice/Base64.cpp +11 -11
  213. data/ext/ice/cpp/src/Ice/Base64.h +1 -1
  214. data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +40 -12
  215. data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +15 -10
  216. data/ext/ice/cpp/src/Ice/Buffer.cpp +74 -12
  217. data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +20 -6
  218. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +85 -190
  219. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +17 -18
  220. data/ext/ice/cpp/src/Ice/Communicator.cpp +39 -8
  221. data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +27 -5
  222. data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +271 -104
  223. data/ext/ice/cpp/src/Ice/CommunicatorI.h +84 -28
  224. data/ext/ice/cpp/src/{IceUtil → Ice}/Cond.cpp +3 -3
  225. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +58 -125
  226. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +11 -22
  227. data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +6 -2
  228. data/ext/ice/cpp/src/Ice/Connection.cpp +88 -8
  229. data/ext/ice/cpp/src/Ice/ConnectionF.cpp +27 -5
  230. data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +158 -80
  231. data/ext/ice/cpp/src/Ice/ConnectionFactory.h +41 -23
  232. data/ext/ice/cpp/{include → src}/Ice/ConnectionFactoryF.h +8 -3
  233. data/ext/ice/cpp/src/Ice/ConnectionI.cpp +707 -653
  234. data/ext/ice/cpp/src/Ice/ConnectionI.h +97 -69
  235. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +2 -15
  236. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +4 -3
  237. data/ext/ice/cpp/src/Ice/Connector.cpp +6 -1
  238. data/ext/ice/cpp/src/Ice/Connector.h +4 -3
  239. data/ext/ice/cpp/src/Ice/ConnectorF.h +1 -1
  240. data/ext/ice/cpp/src/{IceUtil → Ice}/CountDownLatch.cpp +4 -4
  241. data/ext/ice/cpp/src/Ice/Current.cpp +29 -6
  242. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +6 -5
  243. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +1 -1
  244. data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +1 -1
  245. data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +5 -25
  246. data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +29 -19
  247. data/ext/ice/cpp/src/Ice/Endpoint.cpp +85 -6
  248. data/ext/ice/cpp/src/Ice/EndpointF.cpp +27 -5
  249. data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +152 -1
  250. data/ext/ice/cpp/src/Ice/EndpointFactory.h +72 -6
  251. data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +1 -1
  252. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +35 -19
  253. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +10 -4
  254. data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +1 -1
  255. data/ext/ice/cpp/src/Ice/EndpointI.cpp +17 -1
  256. data/ext/ice/cpp/src/Ice/EndpointI.h +35 -9
  257. data/ext/ice/cpp/src/Ice/EndpointIF.h +18 -5
  258. data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +18 -6
  259. data/ext/ice/cpp/src/Ice/EventHandler.cpp +6 -4
  260. data/ext/ice/cpp/src/Ice/EventHandler.h +13 -8
  261. data/ext/ice/cpp/src/Ice/EventHandlerF.h +5 -2
  262. data/ext/ice/cpp/src/Ice/Exception.cpp +95 -86
  263. data/ext/ice/cpp/src/Ice/FacetMap.cpp +20 -6
  264. data/ext/ice/cpp/src/Ice/FactoryTable.cpp +37 -28
  265. data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +2 -4
  266. data/ext/ice/cpp/src/Ice/GCObject.cpp +28 -25
  267. data/ext/ice/cpp/src/Ice/HashUtil.h +2 -3
  268. data/ext/ice/cpp/src/Ice/HttpParser.cpp +1 -2
  269. data/ext/ice/cpp/src/Ice/HttpParser.h +1 -1
  270. data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +92 -53
  271. data/ext/ice/cpp/src/Ice/IPEndpointI.h +19 -10
  272. data/ext/ice/cpp/src/Ice/IPEndpointIF.h +6 -2
  273. data/ext/ice/cpp/src/Ice/IconvStringConverter.cpp +56 -0
  274. data/ext/ice/cpp/src/Ice/Identity.cpp +24 -10
  275. data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +37 -6
  276. data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +27 -5
  277. data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +14 -14
  278. data/ext/ice/cpp/src/Ice/ImplicitContextI.h +7 -5
  279. data/ext/ice/cpp/src/Ice/Incoming.cpp +276 -245
  280. data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +104 -209
  281. data/ext/ice/cpp/src/Ice/IncomingRequest.h +5 -4
  282. data/ext/ice/cpp/src/Ice/Initialize.cpp +299 -172
  283. data/ext/ice/cpp/src/Ice/InputStream.cpp +2773 -0
  284. data/ext/ice/cpp/src/Ice/Instance.cpp +191 -231
  285. data/ext/ice/cpp/src/Ice/Instance.h +30 -18
  286. data/ext/ice/cpp/src/Ice/Instrumentation.cpp +106 -7
  287. data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +27 -5
  288. data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +117 -99
  289. data/ext/ice/cpp/src/Ice/InstrumentationI.h +30 -31
  290. data/ext/ice/cpp/src/Ice/LocalException.cpp +1190 -416
  291. data/ext/ice/cpp/src/Ice/LocalObject.cpp +1 -2
  292. data/ext/ice/cpp/src/Ice/Locator.cpp +1167 -1215
  293. data/ext/ice/cpp/src/Ice/LocatorF.cpp +29 -6
  294. data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +129 -163
  295. data/ext/ice/cpp/src/Ice/LocatorInfo.h +29 -29
  296. data/ext/ice/cpp/src/Ice/LocatorInfoF.h +1 -1
  297. data/ext/ice/cpp/src/Ice/Logger.cpp +35 -5
  298. data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +178 -73
  299. data/ext/ice/cpp/src/Ice/LoggerAdminI.h +4 -4
  300. data/ext/ice/cpp/src/Ice/LoggerF.cpp +27 -5
  301. data/ext/ice/cpp/src/Ice/LoggerI.cpp +14 -44
  302. data/ext/ice/cpp/src/Ice/LoggerI.h +7 -13
  303. data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +10 -12
  304. data/ext/ice/cpp/src/Ice/Metrics.cpp +1059 -1069
  305. data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +49 -19
  306. data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +1 -2
  307. data/ext/ice/cpp/src/Ice/Network.cpp +534 -170
  308. data/ext/ice/cpp/src/Ice/Network.h +100 -23
  309. data/ext/ice/cpp/src/Ice/NetworkF.h +2 -2
  310. data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +21 -14
  311. data/ext/ice/cpp/src/Ice/NetworkProxy.h +5 -2
  312. data/ext/ice/cpp/src/Ice/NetworkProxyF.h +1 -1
  313. data/ext/ice/cpp/src/Ice/Object.cpp +217 -221
  314. data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +41 -6
  315. data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +27 -5
  316. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +35 -14
  317. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +13 -7
  318. data/ext/ice/cpp/{include → src}/Ice/ObjectAdapterFactoryF.h +5 -1
  319. data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +184 -58
  320. data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +32 -26
  321. data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +37 -6
  322. data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +9 -32
  323. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +40 -18
  324. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +14 -5
  325. data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +803 -365
  326. data/ext/ice/cpp/src/Ice/OutputStream.cpp +1399 -0
  327. data/ext/ice/cpp/src/Ice/Plugin.cpp +45 -6
  328. data/ext/ice/cpp/src/Ice/PluginF.cpp +27 -5
  329. data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +13 -13
  330. data/ext/ice/cpp/src/Ice/PluginManagerI.h +5 -6
  331. data/ext/ice/cpp/src/Ice/Process.cpp +256 -114
  332. data/ext/ice/cpp/src/Ice/ProcessF.cpp +29 -6
  333. data/ext/ice/cpp/src/Ice/Properties.cpp +38 -8
  334. data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +340 -328
  335. data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +81 -17
  336. data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +29 -5
  337. data/ext/ice/cpp/src/Ice/PropertiesF.cpp +29 -6
  338. data/ext/ice/cpp/src/Ice/PropertiesI.cpp +25 -26
  339. data/ext/ice/cpp/src/Ice/PropertiesI.h +8 -11
  340. data/ext/ice/cpp/src/Ice/PropertyNames.cpp +107 -50
  341. data/ext/ice/cpp/src/Ice/PropertyNames.h +4 -2
  342. data/ext/ice/cpp/src/Ice/Protocol.cpp +2 -2
  343. data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +37 -2
  344. data/ext/ice/cpp/src/Ice/ProtocolInstance.h +9 -20
  345. data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +1 -1
  346. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +6 -1
  347. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +3 -1
  348. data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +1 -1
  349. data/ext/ice/cpp/src/Ice/Proxy.cpp +690 -964
  350. data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +23 -32
  351. data/ext/ice/cpp/src/Ice/ProxyFactory.h +16 -11
  352. data/ext/ice/cpp/src/Ice/Reference.cpp +75 -69
  353. data/ext/ice/cpp/src/Ice/Reference.h +27 -22
  354. data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +18 -21
  355. data/ext/ice/cpp/src/Ice/ReferenceFactory.h +12 -12
  356. data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +1 -1
  357. data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +18 -4
  358. data/ext/ice/cpp/src/Ice/RegisterPluginsInit.h +1 -1
  359. data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +672 -552
  360. data/ext/ice/cpp/src/Ice/ReplyStatus.h +1 -1
  361. data/ext/ice/cpp/src/Ice/RequestHandler.cpp +5 -3
  362. data/ext/ice/cpp/src/Ice/RequestHandler.h +10 -13
  363. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +10 -6
  364. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +2 -2
  365. data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +3 -6
  366. data/ext/ice/cpp/src/Ice/ResponseHandler.h +16 -7
  367. data/ext/ice/cpp/src/Ice/RetryQueue.cpp +6 -12
  368. data/ext/ice/cpp/src/Ice/RetryQueue.h +7 -6
  369. data/ext/ice/cpp/src/Ice/RetryQueueF.h +1 -1
  370. data/ext/ice/cpp/src/Ice/Router.cpp +523 -474
  371. data/ext/ice/cpp/src/Ice/RouterF.cpp +29 -6
  372. data/ext/ice/cpp/src/Ice/RouterInfo.cpp +91 -70
  373. data/ext/ice/cpp/src/Ice/RouterInfo.h +43 -32
  374. data/ext/ice/cpp/src/Ice/RouterInfoF.h +1 -1
  375. data/ext/ice/cpp/src/{IceUtil → Ice}/SHA1.cpp +21 -21
  376. data/ext/ice/cpp/src/Ice/Selector.cpp +989 -923
  377. data/ext/ice/cpp/src/Ice/Selector.h +100 -147
  378. data/ext/ice/cpp/src/Ice/ServantLocator.cpp +37 -6
  379. data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +27 -5
  380. data/ext/ice/cpp/src/Ice/ServantManager.cpp +9 -9
  381. data/ext/ice/cpp/src/Ice/ServantManager.h +1 -1
  382. data/ext/ice/cpp/src/Ice/SharedContext.h +2 -2
  383. data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +20 -6
  384. data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +2 -2
  385. data/ext/ice/cpp/src/Ice/SlicedData.cpp +72 -20
  386. data/ext/ice/cpp/src/Ice/StreamSocket.cpp +173 -18
  387. data/ext/ice/cpp/src/Ice/StreamSocket.h +13 -4
  388. data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +48 -17
  389. data/ext/ice/cpp/src/Ice/StringUtil.h +35 -0
  390. data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +8 -4
  391. data/ext/ice/cpp/src/Ice/SysLoggerI.h +2 -3
  392. data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +158 -32
  393. data/ext/ice/cpp/src/Ice/TcpAcceptor.h +12 -5
  394. data/ext/ice/cpp/src/Ice/TcpConnector.cpp +1 -7
  395. data/ext/ice/cpp/src/Ice/TcpConnector.h +1 -2
  396. data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +40 -32
  397. data/ext/ice/cpp/src/Ice/TcpEndpointI.h +11 -8
  398. data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +12 -27
  399. data/ext/ice/cpp/src/Ice/TcpTransceiver.h +7 -10
  400. data/ext/ice/cpp/src/{IceUtil → Ice}/Thread.cpp +24 -41
  401. data/ext/ice/cpp/src/Ice/ThreadPool.cpp +175 -267
  402. data/ext/ice/cpp/src/Ice/ThreadPool.h +38 -43
  403. data/ext/ice/cpp/src/{IceUtil → Ice}/Timer.cpp +28 -21
  404. data/ext/ice/cpp/src/Ice/TraceLevels.cpp +2 -2
  405. data/ext/ice/cpp/src/Ice/TraceLevels.h +1 -1
  406. data/ext/ice/cpp/src/Ice/TraceLevelsF.h +2 -2
  407. data/ext/ice/cpp/src/Ice/TraceUtil.cpp +53 -31
  408. data/ext/ice/cpp/src/Ice/TraceUtil.h +13 -6
  409. data/ext/ice/cpp/src/Ice/Transceiver.cpp +1 -2
  410. data/ext/ice/cpp/src/Ice/Transceiver.h +8 -7
  411. data/ext/ice/cpp/src/Ice/TransceiverF.h +1 -1
  412. data/ext/ice/cpp/src/Ice/UdpConnector.cpp +2 -8
  413. data/ext/ice/cpp/src/Ice/UdpConnector.h +1 -2
  414. data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +92 -31
  415. data/ext/ice/cpp/src/Ice/UdpEndpointI.h +12 -4
  416. data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +150 -179
  417. data/ext/ice/cpp/src/Ice/UdpTransceiver.h +15 -17
  418. data/ext/ice/cpp/src/Ice/Value.cpp +81 -0
  419. data/ext/ice/cpp/src/Ice/ValueFactory.cpp +84 -0
  420. data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +70 -0
  421. data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.h +42 -0
  422. data/ext/ice/cpp/src/Ice/Version.cpp +24 -14
  423. data/ext/ice/cpp/src/Ice/VirtualShared.h +43 -0
  424. data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +3 -9
  425. data/ext/ice/cpp/src/Ice/WSAcceptor.h +3 -7
  426. data/ext/ice/cpp/src/Ice/WSConnector.cpp +5 -11
  427. data/ext/ice/cpp/src/Ice/WSConnector.h +3 -6
  428. data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +185 -80
  429. data/ext/ice/cpp/src/Ice/WSEndpoint.h +21 -31
  430. data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +41 -37
  431. data/ext/ice/cpp/src/Ice/WSTransceiver.h +7 -21
  432. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +526 -264
  433. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +341 -455
  434. data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +86 -26
  435. data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +59 -23
  436. data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +315 -61
  437. data/ext/ice/cpp/src/IceDiscovery/LookupI.h +83 -36
  438. data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +57 -59
  439. data/ext/ice/cpp/src/IceDiscovery/PluginI.h +3 -3
  440. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +396 -159
  441. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +251 -355
  442. data/ext/ice/cpp/src/IceLocatorDiscovery/Plugin.h +52 -0
  443. data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +526 -131
  444. data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +19 -165
  445. data/ext/ice/cpp/src/IceSSL/AcceptorI.h +8 -17
  446. data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +284 -0
  447. data/ext/ice/cpp/src/IceSSL/CertificateI.h +69 -0
  448. data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +39 -11
  449. data/ext/ice/cpp/src/{Ice/ObjectFactoryF.cpp → IceSSL/ConnectionInfoF.cpp} +31 -9
  450. data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +14 -56
  451. data/ext/ice/cpp/src/IceSSL/ConnectorI.h +6 -13
  452. data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +205 -197
  453. data/ext/ice/cpp/src/IceSSL/EndpointI.h +41 -33
  454. data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +39 -10
  455. data/ext/ice/cpp/src/IceSSL/Instance.cpp +1 -6
  456. data/ext/ice/cpp/src/IceSSL/Instance.h +7 -7
  457. data/ext/ice/cpp/src/IceSSL/InstanceF.h +11 -7
  458. data/ext/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +588 -0
  459. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +117 -152
  460. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +64 -0
  461. data/ext/ice/cpp/src/IceSSL/OpenSSLEngineF.h +32 -0
  462. data/ext/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +132 -0
  463. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +400 -89
  464. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +36 -21
  465. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +291 -0
  466. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.h +63 -0
  467. data/ext/ice/cpp/src/IceSSL/PluginI.cpp +71 -41
  468. data/ext/ice/cpp/src/IceSSL/PluginI.h +13 -18
  469. data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +9 -54
  470. data/ext/ice/cpp/src/IceSSL/RFC2253.h +7 -7
  471. data/ext/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +585 -0
  472. data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +491 -75
  473. data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +126 -0
  474. data/ext/ice/cpp/src/IceSSL/SChannelEngineF.h +32 -0
  475. data/ext/ice/cpp/src/IceSSL/SChannelPluginI.cpp +78 -0
  476. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +126 -169
  477. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +19 -22
  478. data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +79 -74
  479. data/ext/ice/cpp/src/IceSSL/SSLEngine.h +24 -187
  480. data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +4 -19
  481. data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +862 -0
  482. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +56 -214
  483. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.h +60 -0
  484. data/ext/ice/cpp/src/IceSSL/SecureTransportEngineF.h +31 -0
  485. data/ext/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +80 -0
  486. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +137 -144
  487. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +25 -28
  488. data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +857 -0
  489. data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.h +46 -0
  490. data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +9 -13
  491. data/ext/ice/cpp/src/IceSSL/TrustManager.h +4 -4
  492. data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +3 -3
  493. data/ext/ice/cpp/src/IceSSL/UWPCertificateI.cpp +271 -0
  494. data/ext/ice/cpp/src/IceSSL/UWPEngine.cpp +343 -0
  495. data/ext/ice/cpp/src/IceSSL/UWPEngine.h +46 -0
  496. data/ext/ice/cpp/{include/Ice/ObjectFactoryManagerF.h → src/IceSSL/UWPEngineF.h} +13 -8
  497. data/ext/ice/cpp/src/IceSSL/UWPPluginI.cpp +94 -0
  498. data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.cpp +388 -0
  499. data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.h +76 -0
  500. data/ext/ice/cpp/src/IceSSL/Util.cpp +66 -1256
  501. data/ext/ice/cpp/src/IceSSL/Util.h +48 -137
  502. data/ext/ice/cpp/src/IceUtil/ConsoleUtil.cpp +162 -0
  503. data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +22 -22
  504. data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +34 -26
  505. data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +20 -31
  506. data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +25 -116
  507. data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +1 -1
  508. data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +1 -1
  509. data/ext/ice/cpp/src/IceUtil/Options.cpp +23 -46
  510. data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +7 -6
  511. data/ext/ice/cpp/src/IceUtil/Random.cpp +13 -13
  512. data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +3 -9
  513. data/ext/ice/cpp/src/IceUtil/Shared.cpp +8 -3
  514. data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +501 -264
  515. data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +540 -235
  516. data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +37 -74
  517. data/ext/ice/cpp/src/IceUtil/Time.cpp +1 -1
  518. data/ext/ice/cpp/src/IceUtil/UUID.cpp +10 -10
  519. data/ext/ice/cpp/src/IceUtil/Unicode.cpp +98 -97
  520. data/ext/ice/cpp/src/IceUtil/Unicode.h +21 -35
  521. data/ext/ice/cpp/src/IceUtil/UtilException.cpp +838 -0
  522. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +815 -163
  523. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +76 -0
  524. data/ext/ice/cpp/src/Slice/Checksum.cpp +2 -2
  525. data/ext/ice/cpp/{include → src}/Slice/Checksum.h +2 -2
  526. data/ext/ice/cpp/src/Slice/FileTracker.cpp +25 -78
  527. data/ext/ice/cpp/{include → src}/Slice/FileTracker.h +9 -9
  528. data/ext/ice/cpp/src/Slice/Grammar.cpp +1994 -1943
  529. data/ext/ice/cpp/src/Slice/Grammar.h +44 -24
  530. data/ext/ice/cpp/src/Slice/GrammarUtil.h +14 -14
  531. data/ext/ice/cpp/src/Slice/JavaUtil.cpp +2658 -1927
  532. data/ext/ice/cpp/{include → src}/Slice/JavaUtil.h +178 -59
  533. data/ext/ice/cpp/src/Slice/MD5.cpp +1 -1
  534. data/ext/ice/cpp/src/Slice/MD5.h +1 -1
  535. data/ext/ice/cpp/src/Slice/MD5I.cpp +0 -1
  536. data/ext/ice/cpp/src/Slice/MD5I.h +1 -1
  537. data/ext/ice/cpp/src/Slice/PHPUtil.cpp +12 -15
  538. data/ext/ice/cpp/{include → src}/Slice/PHPUtil.h +6 -15
  539. data/ext/ice/cpp/src/Slice/Parser.cpp +802 -307
  540. data/ext/ice/cpp/{include → src}/Slice/Parser.h +76 -84
  541. data/ext/ice/cpp/src/Slice/Preprocessor.cpp +43 -21
  542. data/ext/ice/cpp/{include → src}/Slice/Preprocessor.h +7 -12
  543. data/ext/ice/cpp/src/Slice/Python.cpp +207 -86
  544. data/ext/ice/cpp/src/Slice/PythonUtil.cpp +683 -679
  545. data/ext/ice/cpp/{include → src}/Slice/PythonUtil.h +19 -8
  546. data/ext/ice/cpp/src/Slice/Ruby.cpp +38 -34
  547. data/ext/ice/cpp/src/Slice/RubyUtil.cpp +177 -445
  548. data/ext/ice/cpp/{include → src}/Slice/RubyUtil.h +6 -6
  549. data/ext/ice/cpp/src/Slice/Scanner.cpp +218 -306
  550. data/ext/ice/cpp/src/Slice/{Util.cpp → SliceUtil.cpp} +37 -64
  551. data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +374 -0
  552. data/ext/ice/cpp/src/Slice/Util.h +54 -0
  553. data/ext/ice/mcpp/Makefile +5 -2
  554. data/ice.gemspec +2 -7
  555. data/lib/Glacier2.rb +1 -1
  556. data/lib/Glacier2/Metrics.rb +7 -46
  557. data/lib/Glacier2/PermissionsVerifier.rb +24 -95
  558. data/lib/Glacier2/PermissionsVerifierF.rb +3 -3
  559. data/lib/Glacier2/Router.rb +32 -74
  560. data/lib/Glacier2/RouterF.rb +3 -3
  561. data/lib/Glacier2/SSLInfo.rb +4 -7
  562. data/lib/Glacier2/Session.rb +88 -307
  563. data/lib/Ice.rb +83 -52
  564. data/lib/Ice/BuiltinSequences.rb +4 -4
  565. data/lib/Ice/Communicator.rb +56 -58
  566. data/lib/Ice/CommunicatorF.rb +3 -3
  567. data/lib/Ice/Connection.rb +153 -162
  568. data/lib/Ice/ConnectionF.rb +3 -3
  569. data/lib/Ice/Current.rb +4 -11
  570. data/lib/Ice/Endpoint.rb +57 -133
  571. data/lib/Ice/EndpointF.rb +3 -3
  572. data/lib/Ice/EndpointTypes.rb +3 -7
  573. data/lib/Ice/FacetMap.rb +4 -4
  574. data/lib/Ice/Identity.rb +5 -8
  575. data/lib/Ice/ImplicitContext.rb +5 -34
  576. data/lib/Ice/ImplicitContextF.rb +3 -3
  577. data/lib/Ice/Instrumentation.rb +23 -275
  578. data/lib/Ice/InstrumentationF.rb +3 -3
  579. data/lib/Ice/LocalException.rb +95 -141
  580. data/lib/Ice/Locator.rb +51 -165
  581. data/lib/Ice/LocatorF.rb +3 -3
  582. data/lib/Ice/Logger.rb +5 -34
  583. data/lib/Ice/LoggerF.rb +3 -3
  584. data/lib/Ice/Metrics.rb +61 -416
  585. data/lib/Ice/ObjectAdapter.rb +34 -0
  586. data/lib/Ice/ObjectAdapterF.rb +3 -3
  587. data/lib/Ice/ObjectFactory.rb +5 -30
  588. data/lib/Ice/Plugin.rb +7 -60
  589. data/lib/Ice/PluginF.rb +3 -3
  590. data/lib/Ice/Process.rb +16 -52
  591. data/lib/Ice/ProcessF.rb +3 -3
  592. data/lib/Ice/Properties.rb +5 -41
  593. data/lib/Ice/PropertiesAdmin.rb +19 -56
  594. data/lib/Ice/PropertiesF.rb +3 -3
  595. data/lib/Ice/RemoteLogger.rb +34 -115
  596. data/lib/Ice/Router.rb +29 -101
  597. data/lib/Ice/RouterF.rb +3 -3
  598. data/lib/Ice/ServantLocator.rb +31 -0
  599. data/lib/Ice/{ObjectFactoryF.rb → ServantLocatorF.rb} +6 -6
  600. data/lib/Ice/SliceChecksumDict.rb +3 -3
  601. data/lib/Ice/ValueFactory.rb +33 -0
  602. data/lib/Ice/Version.rb +5 -11
  603. data/lib/IceBox.rb +1 -1
  604. data/lib/IceBox/IceBox.rb +44 -148
  605. data/lib/IceGrid.rb +1 -4
  606. data/lib/IceGrid/Admin.rb +551 -427
  607. data/lib/IceGrid/Descriptor.rb +62 -529
  608. data/lib/IceGrid/Exception.rb +24 -45
  609. data/lib/IceGrid/FileParser.rb +14 -50
  610. data/lib/IceGrid/PluginFacade.rb +40 -0
  611. data/lib/IceGrid/Registry.rb +151 -58
  612. data/lib/IceGrid/Session.rb +25 -64
  613. data/lib/IceGrid/UserAccountMapper.rb +14 -50
  614. data/lib/IcePatch2.rb +1 -1
  615. data/lib/IcePatch2/FileInfo.rb +5 -11
  616. data/lib/IcePatch2/FileServer.rb +33 -76
  617. data/lib/IceStorm.rb +1 -1
  618. data/lib/IceStorm/IceStorm.rb +79 -206
  619. data/lib/IceStorm/Metrics.rb +11 -89
  620. data/slice/Glacier2/Metrics.ice +8 -4
  621. data/slice/Glacier2/PermissionsVerifier.ice +10 -7
  622. data/slice/Glacier2/PermissionsVerifierF.ice +7 -4
  623. data/slice/Glacier2/Router.ice +10 -8
  624. data/slice/Glacier2/RouterF.ice +7 -4
  625. data/slice/Glacier2/SSLInfo.ice +8 -5
  626. data/slice/Glacier2/Session.ice +15 -13
  627. data/slice/Ice/BuiltinSequences.ice +7 -4
  628. data/slice/Ice/Communicator.ice +141 -66
  629. data/slice/Ice/CommunicatorF.ice +7 -4
  630. data/slice/Ice/Connection.ice +183 -86
  631. data/slice/Ice/ConnectionF.ice +7 -4
  632. data/slice/Ice/Current.ice +13 -9
  633. data/slice/Ice/Endpoint.ice +63 -14
  634. data/slice/Ice/EndpointF.ice +7 -4
  635. data/slice/Ice/EndpointTypes.ice +8 -6
  636. data/slice/Ice/FacetMap.ice +7 -4
  637. data/slice/Ice/Identity.ice +13 -5
  638. data/slice/Ice/ImplicitContext.ice +20 -18
  639. data/slice/Ice/ImplicitContextF.ice +7 -4
  640. data/slice/Ice/Instrumentation.ice +20 -19
  641. data/slice/Ice/InstrumentationF.ice +8 -5
  642. data/slice/Ice/LocalException.ice +87 -87
  643. data/slice/Ice/Locator.ice +19 -18
  644. data/slice/Ice/LocatorF.ice +7 -4
  645. data/slice/Ice/Logger.ice +9 -7
  646. data/slice/Ice/LoggerF.ice +7 -4
  647. data/slice/Ice/Metrics.ice +18 -14
  648. data/slice/Ice/ObjectAdapter.ice +30 -13
  649. data/slice/Ice/ObjectAdapterF.ice +7 -4
  650. data/slice/Ice/ObjectFactory.ice +15 -12
  651. data/slice/Ice/Plugin.ice +9 -6
  652. data/slice/Ice/PluginF.ice +8 -5
  653. data/slice/Ice/Process.ice +9 -6
  654. data/slice/Ice/ProcessF.ice +7 -4
  655. data/slice/Ice/Properties.ice +15 -12
  656. data/slice/Ice/PropertiesAdmin.ice +9 -5
  657. data/slice/Ice/PropertiesF.ice +7 -4
  658. data/slice/Ice/RemoteLogger.ice +33 -24
  659. data/slice/Ice/Router.ice +16 -7
  660. data/slice/Ice/RouterF.ice +7 -4
  661. data/slice/Ice/ServantLocator.ice +13 -10
  662. data/slice/Ice/ServantLocatorF.ice +7 -4
  663. data/slice/Ice/SliceChecksumDict.ice +7 -4
  664. data/slice/Ice/ValueFactory.ice +127 -0
  665. data/slice/Ice/Version.ice +9 -5
  666. data/slice/IceBT/ConnectionInfo.ice +53 -0
  667. data/slice/IceBT/EndpointInfo.ice +51 -0
  668. data/slice/IceBT/Types.ice +39 -0
  669. data/slice/IceBox/IceBox.ice +20 -21
  670. data/slice/IceDiscovery/IceDiscovery.ice +9 -5
  671. data/slice/IceGrid/Admin.ice +390 -30
  672. data/slice/IceGrid/Descriptor.ice +37 -29
  673. data/slice/IceGrid/Exception.ice +33 -27
  674. data/slice/IceGrid/FileParser.ice +9 -6
  675. data/slice/IceGrid/PluginFacade.ice +11 -9
  676. data/slice/IceGrid/Registry.ice +139 -16
  677. data/slice/IceGrid/Session.ice +10 -8
  678. data/slice/IceGrid/UserAccountMapper.ice +9 -6
  679. data/slice/IceIAP/ConnectionInfo.ice +70 -0
  680. data/slice/IceIAP/EndpointInfo.ice +64 -0
  681. data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +9 -7
  682. data/slice/IcePatch2/FileInfo.ice +9 -8
  683. data/slice/IcePatch2/FileServer.ice +17 -13
  684. data/slice/IceSSL/ConnectionInfo.ice +14 -17
  685. data/slice/IceSSL/ConnectionInfoF.ice +24 -0
  686. data/slice/IceSSL/EndpointInfo.ice +9 -30
  687. data/slice/IceStorm/IceStorm.ice +22 -18
  688. data/slice/IceStorm/Metrics.ice +9 -5
  689. metadata +154 -120
  690. data/ext/ObjectFactory.cpp +0 -140
  691. data/ext/ObjectFactory.h +0 -50
  692. data/ext/ice/cpp/include/Ice/BasicStream.h +0 -1335
  693. data/ext/ice/cpp/include/Ice/Communicator.h +0 -200
  694. data/ext/ice/cpp/include/Ice/Connection.h +0 -497
  695. data/ext/ice/cpp/include/Ice/DeprecatedStringConverter.h +0 -62
  696. data/ext/ice/cpp/include/Ice/Endpoint.h +0 -341
  697. data/ext/ice/cpp/include/Ice/Identity.h +0 -168
  698. data/ext/ice/cpp/include/Ice/Instrumentation.h +0 -365
  699. data/ext/ice/cpp/include/Ice/LocalException.h +0 -1030
  700. data/ext/ice/cpp/include/Ice/Locator.h +0 -2193
  701. data/ext/ice/cpp/include/Ice/Metrics.h +0 -2974
  702. data/ext/ice/cpp/include/Ice/ObjectAdapter.h +0 -168
  703. data/ext/ice/cpp/include/Ice/ObjectFactory.h +0 -92
  704. data/ext/ice/cpp/include/Ice/ObjectFactoryF.h +0 -66
  705. data/ext/ice/cpp/include/Ice/Outgoing.h +0 -225
  706. data/ext/ice/cpp/include/Ice/Plugin.h +0 -125
  707. data/ext/ice/cpp/include/Ice/Process.h +0 -574
  708. data/ext/ice/cpp/include/Ice/PropertiesAdmin.h +0 -830
  709. data/ext/ice/cpp/include/Ice/RemoteLogger.h +0 -1500
  710. data/ext/ice/cpp/include/Ice/Router.h +0 -1159
  711. data/ext/ice/cpp/include/Ice/Stream.h +0 -447
  712. data/ext/ice/cpp/include/Ice/StreamF.h +0 -30
  713. data/ext/ice/cpp/include/Ice/Version.h +0 -262
  714. data/ext/ice/cpp/include/IceSSL/ConnectionInfo.h +0 -158
  715. data/ext/ice/cpp/include/IceSSL/EndpointInfo.h +0 -142
  716. data/ext/ice/cpp/include/IceUtil/AbstractMutex.h +0 -119
  717. data/ext/ice/cpp/include/IceUtil/Cache.h +0 -362
  718. data/ext/ice/cpp/include/Slice/CPlusPlusUtil.h +0 -65
  719. data/ext/ice/cpp/include/Slice/CsUtil.h +0 -92
  720. data/ext/ice/cpp/include/Slice/DotNetNames.h +0 -34
  721. data/ext/ice/cpp/include/Slice/ObjCUtil.h +0 -127
  722. data/ext/ice/cpp/include/Slice/Util.h +0 -56
  723. data/ext/ice/cpp/src/Ice/BasicStream.cpp +0 -3428
  724. data/ext/ice/cpp/src/Ice/DeprecatedStringConverter.cpp +0 -62
  725. data/ext/ice/cpp/src/Ice/ObjectFactoryManager.cpp +0 -139
  726. data/ext/ice/cpp/src/Ice/ObjectFactoryManager.h +0 -43
  727. data/ext/ice/cpp/src/Ice/Outgoing.cpp +0 -694
  728. data/ext/ice/cpp/src/Ice/Stream.cpp +0 -53
  729. data/ext/ice/cpp/src/Ice/StreamI.cpp +0 -832
  730. data/ext/ice/cpp/src/Ice/StreamI.h +0 -198
  731. data/ext/ice/cpp/src/IceSSL/Certificate.cpp +0 -1336
  732. data/ext/ice/cpp/src/IceUtil/Exception.cpp +0 -792
  733. data/ext/ice/cpp/src/IceUtil/FileUtil.h +0 -185
  734. data/ext/ice/cpp/src/Slice/CsUtil.cpp +0 -2660
  735. data/ext/ice/cpp/src/Slice/DotNetNames.cpp +0 -146
  736. data/ext/ice/cpp/src/Slice/ObjCUtil.cpp +0 -1310
  737. data/lib/IceGrid/Locator.rb +0 -106
  738. data/lib/IceGrid/Observer.rb +0 -572
  739. data/lib/IceGrid/Query.rb +0 -169
  740. data/slice/Freeze/BackgroundSaveEvictor.ice +0 -111
  741. data/slice/Freeze/CatalogData.ice +0 -49
  742. data/slice/Freeze/Connection.ice +0 -121
  743. data/slice/Freeze/DB.ice +0 -37
  744. data/slice/Freeze/Evictor.ice +0 -346
  745. data/slice/Freeze/EvictorF.ice +0 -22
  746. data/slice/Freeze/EvictorStorage.ice +0 -72
  747. data/slice/Freeze/Exception.ice +0 -100
  748. data/slice/Freeze/Transaction.ice +0 -58
  749. data/slice/Freeze/TransactionalEvictor.ice +0 -50
  750. data/slice/IceGrid/Locator.ice +0 -57
  751. data/slice/IceGrid/Observer.ice +0 -395
  752. data/slice/IceGrid/Query.ice +0 -131
@@ -1,13 +1,13 @@
1
1
  // **********************************************************************
2
2
  //
3
- // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
3
+ // Copyright (c) 2003-2017 ZeroC, Inc. All rights reserved.
4
4
  //
5
5
  // This copy of Ice is licensed to you under the terms described in the
6
6
  // ICE_LICENSE file included in this distribution.
7
7
  //
8
8
  // **********************************************************************
9
9
  //
10
- // Ice version 3.6.5
10
+ // Ice version 3.7.0
11
11
  //
12
12
  // <auto-generated>
13
13
  //
@@ -24,35 +24,74 @@
24
24
  #include <IceUtil/PushDisableWarnings.h>
25
25
  #include <Ice/ProxyF.h>
26
26
  #include <Ice/ObjectF.h>
27
+ #include <Ice/ValueF.h>
27
28
  #include <Ice/Exception.h>
28
29
  #include <Ice/LocalObject.h>
29
30
  #include <Ice/StreamHelpers.h>
31
+ #include <Ice/Comparable.h>
30
32
  #include <IceUtil/ScopedArray.h>
31
- #include <IceUtil/Optional.h>
33
+ #include <Ice/Optional.h>
32
34
  #include <IceUtil/UndefSysMacros.h>
33
35
 
34
36
  #ifndef ICE_IGNORE_VERSION
35
- # if ICE_INT_VERSION / 100 != 306
37
+ # if ICE_INT_VERSION / 100 != 307
36
38
  # error Ice version mismatch!
37
39
  # endif
38
40
  # if ICE_INT_VERSION % 100 > 50
39
41
  # error Beta header file detected
40
42
  # endif
41
- # if ICE_INT_VERSION % 100 < 5
43
+ # if ICE_INT_VERSION % 100 < 0
42
44
  # error Ice patch level mismatch!
43
45
  # endif
44
46
  #endif
45
47
 
46
48
  #ifndef ICE_API
47
- # ifdef ICE_API_EXPORTS
48
- # define ICE_API ICE_DECLSPEC_EXPORT
49
- # elif defined(ICE_STATIC_LIBS)
49
+ # if defined(ICE_STATIC_LIBS)
50
50
  # define ICE_API /**/
51
+ # elif defined(ICE_API_EXPORTS)
52
+ # define ICE_API ICE_DECLSPEC_EXPORT
51
53
  # else
52
54
  # define ICE_API ICE_DECLSPEC_IMPORT
53
55
  # endif
54
56
  #endif
55
57
 
58
+ #ifdef ICE_CPP11_MAPPING // C++11 mapping
59
+
60
+ namespace Ice
61
+ {
62
+
63
+
64
+ namespace Instrumentation
65
+ {
66
+
67
+ class Observer;
68
+ class CommunicatorObserver;
69
+
70
+ }
71
+
72
+ }
73
+
74
+ namespace Ice
75
+ {
76
+
77
+ }
78
+
79
+ namespace Ice
80
+ {
81
+
82
+ namespace Instrumentation
83
+ {
84
+
85
+ using ObserverPtr = ::std::shared_ptr<Observer>;
86
+
87
+ using CommunicatorObserverPtr = ::std::shared_ptr<CommunicatorObserver>;
88
+
89
+ }
90
+
91
+ }
92
+
93
+ #else // C++98 mapping
94
+
56
95
  namespace Ice
57
96
  {
58
97
 
@@ -71,5 +110,12 @@ typedef ::IceInternal::Handle< ::Ice::Instrumentation::CommunicatorObserver> Com
71
110
 
72
111
  }
73
112
 
113
+ namespace Ice
114
+ {
115
+
116
+ }
117
+
118
+ #endif
119
+
74
120
  #include <IceUtil/PopDisableWarnings.h>
75
121
  #endif
@@ -0,0 +1,2802 @@
1
+ // **********************************************************************
2
+ //
3
+ // Copyright (c) 2003-2017 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.7.0
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_LocalException_h__
22
+ #define __Ice_LocalException_h__
23
+
24
+ #include <IceUtil/PushDisableWarnings.h>
25
+ #include <Ice/ProxyF.h>
26
+ #include <Ice/ObjectF.h>
27
+ #include <Ice/ValueF.h>
28
+ #include <Ice/Exception.h>
29
+ #include <Ice/LocalObject.h>
30
+ #include <Ice/StreamHelpers.h>
31
+ #include <Ice/Comparable.h>
32
+ #include <IceUtil/ScopedArray.h>
33
+ #include <Ice/Optional.h>
34
+ #include <Ice/ExceptionHelpers.h>
35
+ #include <Ice/Identity.h>
36
+ #include <Ice/Version.h>
37
+ #include <Ice/BuiltinSequences.h>
38
+ #include <IceUtil/UndefSysMacros.h>
39
+
40
+ #ifndef ICE_IGNORE_VERSION
41
+ # if ICE_INT_VERSION / 100 != 307
42
+ # error Ice version mismatch!
43
+ # endif
44
+ # if ICE_INT_VERSION % 100 > 50
45
+ # error Beta header file detected
46
+ # endif
47
+ # if ICE_INT_VERSION % 100 < 0
48
+ # error Ice patch level mismatch!
49
+ # endif
50
+ #endif
51
+
52
+ #ifndef ICE_API
53
+ # if defined(ICE_STATIC_LIBS)
54
+ # define ICE_API /**/
55
+ # elif defined(ICE_API_EXPORTS)
56
+ # define ICE_API ICE_DECLSPEC_EXPORT
57
+ # else
58
+ # define ICE_API ICE_DECLSPEC_IMPORT
59
+ # endif
60
+ #endif
61
+
62
+ #ifdef ICE_CPP11_MAPPING // C++11 mapping
63
+
64
+ namespace Ice
65
+ {
66
+
67
+ class ICE_CLASS(ICE_API) InitializationException : public ::Ice::LocalExceptionHelper<InitializationException, ::Ice::LocalException>
68
+ {
69
+ public:
70
+
71
+ ICE_MEMBER(ICE_API) virtual ~InitializationException();
72
+
73
+ InitializationException(const InitializationException&) = default;
74
+
75
+ InitializationException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<InitializationException, ::Ice::LocalException>(file_, line_)
76
+ {
77
+ }
78
+
79
+ InitializationException(const char* file_, int line_, const ::std::string& iceP_reason) : ::Ice::LocalExceptionHelper<InitializationException, ::Ice::LocalException>(file_, line_),
80
+ reason(::std::move(iceP_reason))
81
+ {
82
+ }
83
+
84
+ std::tuple<const ::std::string&> ice_tuple() const
85
+ {
86
+ return std::tie(reason);
87
+ }
88
+
89
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
90
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
91
+
92
+ ::std::string reason;
93
+ };
94
+
95
+ class ICE_CLASS(ICE_API) PluginInitializationException : public ::Ice::LocalExceptionHelper<PluginInitializationException, ::Ice::LocalException>
96
+ {
97
+ public:
98
+
99
+ ICE_MEMBER(ICE_API) virtual ~PluginInitializationException();
100
+
101
+ PluginInitializationException(const PluginInitializationException&) = default;
102
+
103
+ PluginInitializationException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<PluginInitializationException, ::Ice::LocalException>(file_, line_)
104
+ {
105
+ }
106
+
107
+ PluginInitializationException(const char* file_, int line_, const ::std::string& iceP_reason) : ::Ice::LocalExceptionHelper<PluginInitializationException, ::Ice::LocalException>(file_, line_),
108
+ reason(::std::move(iceP_reason))
109
+ {
110
+ }
111
+
112
+ std::tuple<const ::std::string&> ice_tuple() const
113
+ {
114
+ return std::tie(reason);
115
+ }
116
+
117
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
118
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
119
+
120
+ ::std::string reason;
121
+ };
122
+
123
+ class ICE_CLASS(ICE_API) CollocationOptimizationException : public ::Ice::LocalExceptionHelper<CollocationOptimizationException, ::Ice::LocalException>
124
+ {
125
+ public:
126
+
127
+ ICE_MEMBER(ICE_API) virtual ~CollocationOptimizationException();
128
+
129
+ CollocationOptimizationException(const CollocationOptimizationException&) = default;
130
+
131
+ CollocationOptimizationException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<CollocationOptimizationException, ::Ice::LocalException>(file_, line_)
132
+ {
133
+ }
134
+
135
+ std::tuple<> ice_tuple() const
136
+ {
137
+ return std::tie();
138
+ }
139
+
140
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
141
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
142
+ };
143
+
144
+ class ICE_CLASS(ICE_API) AlreadyRegisteredException : public ::Ice::LocalExceptionHelper<AlreadyRegisteredException, ::Ice::LocalException>
145
+ {
146
+ public:
147
+
148
+ ICE_MEMBER(ICE_API) virtual ~AlreadyRegisteredException();
149
+
150
+ AlreadyRegisteredException(const AlreadyRegisteredException&) = default;
151
+
152
+ AlreadyRegisteredException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<AlreadyRegisteredException, ::Ice::LocalException>(file_, line_)
153
+ {
154
+ }
155
+
156
+ AlreadyRegisteredException(const char* file_, int line_, const ::std::string& iceP_kindOfObject, const ::std::string& iceP_id) : ::Ice::LocalExceptionHelper<AlreadyRegisteredException, ::Ice::LocalException>(file_, line_),
157
+ kindOfObject(::std::move(iceP_kindOfObject)),
158
+ id(::std::move(iceP_id))
159
+ {
160
+ }
161
+
162
+ std::tuple<const ::std::string&, const ::std::string&> ice_tuple() const
163
+ {
164
+ return std::tie(kindOfObject, id);
165
+ }
166
+
167
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
168
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
169
+
170
+ ::std::string kindOfObject;
171
+ ::std::string id;
172
+ };
173
+
174
+ class ICE_CLASS(ICE_API) NotRegisteredException : public ::Ice::LocalExceptionHelper<NotRegisteredException, ::Ice::LocalException>
175
+ {
176
+ public:
177
+
178
+ ICE_MEMBER(ICE_API) virtual ~NotRegisteredException();
179
+
180
+ NotRegisteredException(const NotRegisteredException&) = default;
181
+
182
+ NotRegisteredException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<NotRegisteredException, ::Ice::LocalException>(file_, line_)
183
+ {
184
+ }
185
+
186
+ NotRegisteredException(const char* file_, int line_, const ::std::string& iceP_kindOfObject, const ::std::string& iceP_id) : ::Ice::LocalExceptionHelper<NotRegisteredException, ::Ice::LocalException>(file_, line_),
187
+ kindOfObject(::std::move(iceP_kindOfObject)),
188
+ id(::std::move(iceP_id))
189
+ {
190
+ }
191
+
192
+ std::tuple<const ::std::string&, const ::std::string&> ice_tuple() const
193
+ {
194
+ return std::tie(kindOfObject, id);
195
+ }
196
+
197
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
198
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
199
+
200
+ ::std::string kindOfObject;
201
+ ::std::string id;
202
+ };
203
+
204
+ class ICE_CLASS(ICE_API) TwowayOnlyException : public ::Ice::LocalExceptionHelper<TwowayOnlyException, ::Ice::LocalException>
205
+ {
206
+ public:
207
+
208
+ ICE_MEMBER(ICE_API) virtual ~TwowayOnlyException();
209
+
210
+ TwowayOnlyException(const TwowayOnlyException&) = default;
211
+
212
+ TwowayOnlyException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<TwowayOnlyException, ::Ice::LocalException>(file_, line_)
213
+ {
214
+ }
215
+
216
+ TwowayOnlyException(const char* file_, int line_, const ::std::string& iceP_operation) : ::Ice::LocalExceptionHelper<TwowayOnlyException, ::Ice::LocalException>(file_, line_),
217
+ operation(::std::move(iceP_operation))
218
+ {
219
+ }
220
+
221
+ std::tuple<const ::std::string&> ice_tuple() const
222
+ {
223
+ return std::tie(operation);
224
+ }
225
+
226
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
227
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
228
+
229
+ ::std::string operation;
230
+ };
231
+
232
+ class ICE_CLASS(ICE_API) CloneNotImplementedException : public ::Ice::LocalExceptionHelper<CloneNotImplementedException, ::Ice::LocalException>
233
+ {
234
+ public:
235
+
236
+ ICE_MEMBER(ICE_API) virtual ~CloneNotImplementedException();
237
+
238
+ CloneNotImplementedException(const CloneNotImplementedException&) = default;
239
+
240
+ CloneNotImplementedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<CloneNotImplementedException, ::Ice::LocalException>(file_, line_)
241
+ {
242
+ }
243
+
244
+ std::tuple<> ice_tuple() const
245
+ {
246
+ return std::tie();
247
+ }
248
+
249
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
250
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
251
+ };
252
+
253
+ class ICE_CLASS(ICE_API) UnknownException : public ::Ice::LocalExceptionHelper<UnknownException, ::Ice::LocalException>
254
+ {
255
+ public:
256
+
257
+ ICE_MEMBER(ICE_API) virtual ~UnknownException();
258
+
259
+ UnknownException(const UnknownException&) = default;
260
+
261
+ UnknownException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnknownException, ::Ice::LocalException>(file_, line_)
262
+ {
263
+ }
264
+
265
+ UnknownException(const char* file_, int line_, const ::std::string& iceP_unknown) : ::Ice::LocalExceptionHelper<UnknownException, ::Ice::LocalException>(file_, line_),
266
+ unknown(::std::move(iceP_unknown))
267
+ {
268
+ }
269
+
270
+ std::tuple<const ::std::string&> ice_tuple() const
271
+ {
272
+ return std::tie(unknown);
273
+ }
274
+
275
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
276
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
277
+
278
+ ::std::string unknown;
279
+ };
280
+
281
+ class ICE_CLASS(ICE_API) UnknownLocalException : public ::Ice::LocalExceptionHelper<UnknownLocalException, ::Ice::UnknownException>
282
+ {
283
+ public:
284
+
285
+ ICE_MEMBER(ICE_API) virtual ~UnknownLocalException();
286
+
287
+ UnknownLocalException(const UnknownLocalException&) = default;
288
+
289
+ UnknownLocalException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnknownLocalException, ::Ice::UnknownException>(file_, line_)
290
+ {
291
+ }
292
+
293
+ UnknownLocalException(const char* file_, int line_, const ::std::string& iceP_unknown) :
294
+ ::Ice::LocalExceptionHelper<UnknownLocalException, ::Ice::UnknownException>(file_, line_, ::std::move(iceP_unknown))
295
+ {
296
+ }
297
+
298
+ std::tuple<const ::std::string&> ice_tuple() const
299
+ {
300
+ return std::tie(unknown);
301
+ }
302
+
303
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
304
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
305
+ };
306
+
307
+ class ICE_CLASS(ICE_API) UnknownUserException : public ::Ice::LocalExceptionHelper<UnknownUserException, ::Ice::UnknownException>
308
+ {
309
+ public:
310
+
311
+ ICE_MEMBER(ICE_API) virtual ~UnknownUserException();
312
+
313
+ UnknownUserException(const UnknownUserException&) = default;
314
+
315
+ UnknownUserException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnknownUserException, ::Ice::UnknownException>(file_, line_)
316
+ {
317
+ }
318
+
319
+ UnknownUserException(const char* file_, int line_, const ::std::string& iceP_unknown) :
320
+ ::Ice::LocalExceptionHelper<UnknownUserException, ::Ice::UnknownException>(file_, line_, ::std::move(iceP_unknown))
321
+ {
322
+ }
323
+
324
+ std::tuple<const ::std::string&> ice_tuple() const
325
+ {
326
+ return std::tie(unknown);
327
+ }
328
+
329
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
330
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
331
+ };
332
+
333
+ class ICE_CLASS(ICE_API) VersionMismatchException : public ::Ice::LocalExceptionHelper<VersionMismatchException, ::Ice::LocalException>
334
+ {
335
+ public:
336
+
337
+ ICE_MEMBER(ICE_API) virtual ~VersionMismatchException();
338
+
339
+ VersionMismatchException(const VersionMismatchException&) = default;
340
+
341
+ VersionMismatchException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<VersionMismatchException, ::Ice::LocalException>(file_, line_)
342
+ {
343
+ }
344
+
345
+ std::tuple<> ice_tuple() const
346
+ {
347
+ return std::tie();
348
+ }
349
+
350
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
351
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
352
+ };
353
+
354
+ class ICE_CLASS(ICE_API) CommunicatorDestroyedException : public ::Ice::LocalExceptionHelper<CommunicatorDestroyedException, ::Ice::LocalException>
355
+ {
356
+ public:
357
+
358
+ ICE_MEMBER(ICE_API) virtual ~CommunicatorDestroyedException();
359
+
360
+ CommunicatorDestroyedException(const CommunicatorDestroyedException&) = default;
361
+
362
+ CommunicatorDestroyedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<CommunicatorDestroyedException, ::Ice::LocalException>(file_, line_)
363
+ {
364
+ }
365
+
366
+ std::tuple<> ice_tuple() const
367
+ {
368
+ return std::tie();
369
+ }
370
+
371
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
372
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
373
+ };
374
+
375
+ class ICE_CLASS(ICE_API) ObjectAdapterDeactivatedException : public ::Ice::LocalExceptionHelper<ObjectAdapterDeactivatedException, ::Ice::LocalException>
376
+ {
377
+ public:
378
+
379
+ ICE_MEMBER(ICE_API) virtual ~ObjectAdapterDeactivatedException();
380
+
381
+ ObjectAdapterDeactivatedException(const ObjectAdapterDeactivatedException&) = default;
382
+
383
+ ObjectAdapterDeactivatedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ObjectAdapterDeactivatedException, ::Ice::LocalException>(file_, line_)
384
+ {
385
+ }
386
+
387
+ ObjectAdapterDeactivatedException(const char* file_, int line_, const ::std::string& iceP_name) : ::Ice::LocalExceptionHelper<ObjectAdapterDeactivatedException, ::Ice::LocalException>(file_, line_),
388
+ name(::std::move(iceP_name))
389
+ {
390
+ }
391
+
392
+ std::tuple<const ::std::string&> ice_tuple() const
393
+ {
394
+ return std::tie(name);
395
+ }
396
+
397
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
398
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
399
+
400
+ ::std::string name;
401
+ };
402
+
403
+ class ICE_CLASS(ICE_API) ObjectAdapterIdInUseException : public ::Ice::LocalExceptionHelper<ObjectAdapterIdInUseException, ::Ice::LocalException>
404
+ {
405
+ public:
406
+
407
+ ICE_MEMBER(ICE_API) virtual ~ObjectAdapterIdInUseException();
408
+
409
+ ObjectAdapterIdInUseException(const ObjectAdapterIdInUseException&) = default;
410
+
411
+ ObjectAdapterIdInUseException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ObjectAdapterIdInUseException, ::Ice::LocalException>(file_, line_)
412
+ {
413
+ }
414
+
415
+ ObjectAdapterIdInUseException(const char* file_, int line_, const ::std::string& iceP_id) : ::Ice::LocalExceptionHelper<ObjectAdapterIdInUseException, ::Ice::LocalException>(file_, line_),
416
+ id(::std::move(iceP_id))
417
+ {
418
+ }
419
+
420
+ std::tuple<const ::std::string&> ice_tuple() const
421
+ {
422
+ return std::tie(id);
423
+ }
424
+
425
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
426
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
427
+
428
+ ::std::string id;
429
+ };
430
+
431
+ class ICE_CLASS(ICE_API) NoEndpointException : public ::Ice::LocalExceptionHelper<NoEndpointException, ::Ice::LocalException>
432
+ {
433
+ public:
434
+
435
+ ICE_MEMBER(ICE_API) virtual ~NoEndpointException();
436
+
437
+ NoEndpointException(const NoEndpointException&) = default;
438
+
439
+ NoEndpointException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<NoEndpointException, ::Ice::LocalException>(file_, line_)
440
+ {
441
+ }
442
+
443
+ NoEndpointException(const char* file_, int line_, const ::std::string& iceP_proxy) : ::Ice::LocalExceptionHelper<NoEndpointException, ::Ice::LocalException>(file_, line_),
444
+ proxy(::std::move(iceP_proxy))
445
+ {
446
+ }
447
+
448
+ std::tuple<const ::std::string&> ice_tuple() const
449
+ {
450
+ return std::tie(proxy);
451
+ }
452
+
453
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
454
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
455
+
456
+ ::std::string proxy;
457
+ };
458
+
459
+ class ICE_CLASS(ICE_API) EndpointParseException : public ::Ice::LocalExceptionHelper<EndpointParseException, ::Ice::LocalException>
460
+ {
461
+ public:
462
+
463
+ ICE_MEMBER(ICE_API) virtual ~EndpointParseException();
464
+
465
+ EndpointParseException(const EndpointParseException&) = default;
466
+
467
+ EndpointParseException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<EndpointParseException, ::Ice::LocalException>(file_, line_)
468
+ {
469
+ }
470
+
471
+ EndpointParseException(const char* file_, int line_, const ::std::string& iceP_str) : ::Ice::LocalExceptionHelper<EndpointParseException, ::Ice::LocalException>(file_, line_),
472
+ str(::std::move(iceP_str))
473
+ {
474
+ }
475
+
476
+ std::tuple<const ::std::string&> ice_tuple() const
477
+ {
478
+ return std::tie(str);
479
+ }
480
+
481
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
482
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
483
+
484
+ ::std::string str;
485
+ };
486
+
487
+ class ICE_CLASS(ICE_API) EndpointSelectionTypeParseException : public ::Ice::LocalExceptionHelper<EndpointSelectionTypeParseException, ::Ice::LocalException>
488
+ {
489
+ public:
490
+
491
+ ICE_MEMBER(ICE_API) virtual ~EndpointSelectionTypeParseException();
492
+
493
+ EndpointSelectionTypeParseException(const EndpointSelectionTypeParseException&) = default;
494
+
495
+ EndpointSelectionTypeParseException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<EndpointSelectionTypeParseException, ::Ice::LocalException>(file_, line_)
496
+ {
497
+ }
498
+
499
+ EndpointSelectionTypeParseException(const char* file_, int line_, const ::std::string& iceP_str) : ::Ice::LocalExceptionHelper<EndpointSelectionTypeParseException, ::Ice::LocalException>(file_, line_),
500
+ str(::std::move(iceP_str))
501
+ {
502
+ }
503
+
504
+ std::tuple<const ::std::string&> ice_tuple() const
505
+ {
506
+ return std::tie(str);
507
+ }
508
+
509
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
510
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
511
+
512
+ ::std::string str;
513
+ };
514
+
515
+ class ICE_CLASS(ICE_API) VersionParseException : public ::Ice::LocalExceptionHelper<VersionParseException, ::Ice::LocalException>
516
+ {
517
+ public:
518
+
519
+ ICE_MEMBER(ICE_API) virtual ~VersionParseException();
520
+
521
+ VersionParseException(const VersionParseException&) = default;
522
+
523
+ VersionParseException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<VersionParseException, ::Ice::LocalException>(file_, line_)
524
+ {
525
+ }
526
+
527
+ VersionParseException(const char* file_, int line_, const ::std::string& iceP_str) : ::Ice::LocalExceptionHelper<VersionParseException, ::Ice::LocalException>(file_, line_),
528
+ str(::std::move(iceP_str))
529
+ {
530
+ }
531
+
532
+ std::tuple<const ::std::string&> ice_tuple() const
533
+ {
534
+ return std::tie(str);
535
+ }
536
+
537
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
538
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
539
+
540
+ ::std::string str;
541
+ };
542
+
543
+ class ICE_CLASS(ICE_API) IdentityParseException : public ::Ice::LocalExceptionHelper<IdentityParseException, ::Ice::LocalException>
544
+ {
545
+ public:
546
+
547
+ ICE_MEMBER(ICE_API) virtual ~IdentityParseException();
548
+
549
+ IdentityParseException(const IdentityParseException&) = default;
550
+
551
+ IdentityParseException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<IdentityParseException, ::Ice::LocalException>(file_, line_)
552
+ {
553
+ }
554
+
555
+ IdentityParseException(const char* file_, int line_, const ::std::string& iceP_str) : ::Ice::LocalExceptionHelper<IdentityParseException, ::Ice::LocalException>(file_, line_),
556
+ str(::std::move(iceP_str))
557
+ {
558
+ }
559
+
560
+ std::tuple<const ::std::string&> ice_tuple() const
561
+ {
562
+ return std::tie(str);
563
+ }
564
+
565
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
566
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
567
+
568
+ ::std::string str;
569
+ };
570
+
571
+ class ICE_CLASS(ICE_API) ProxyParseException : public ::Ice::LocalExceptionHelper<ProxyParseException, ::Ice::LocalException>
572
+ {
573
+ public:
574
+
575
+ ICE_MEMBER(ICE_API) virtual ~ProxyParseException();
576
+
577
+ ProxyParseException(const ProxyParseException&) = default;
578
+
579
+ ProxyParseException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ProxyParseException, ::Ice::LocalException>(file_, line_)
580
+ {
581
+ }
582
+
583
+ ProxyParseException(const char* file_, int line_, const ::std::string& iceP_str) : ::Ice::LocalExceptionHelper<ProxyParseException, ::Ice::LocalException>(file_, line_),
584
+ str(::std::move(iceP_str))
585
+ {
586
+ }
587
+
588
+ std::tuple<const ::std::string&> ice_tuple() const
589
+ {
590
+ return std::tie(str);
591
+ }
592
+
593
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
594
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
595
+
596
+ ::std::string str;
597
+ };
598
+
599
+ class ICE_CLASS(ICE_API) IllegalIdentityException : public ::Ice::LocalExceptionHelper<IllegalIdentityException, ::Ice::LocalException>
600
+ {
601
+ public:
602
+
603
+ ICE_MEMBER(ICE_API) virtual ~IllegalIdentityException();
604
+
605
+ IllegalIdentityException(const IllegalIdentityException&) = default;
606
+
607
+ IllegalIdentityException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<IllegalIdentityException, ::Ice::LocalException>(file_, line_)
608
+ {
609
+ }
610
+
611
+ IllegalIdentityException(const char* file_, int line_, const ::Ice::Identity& iceP_id) : ::Ice::LocalExceptionHelper<IllegalIdentityException, ::Ice::LocalException>(file_, line_),
612
+ id(::std::move(iceP_id))
613
+ {
614
+ }
615
+
616
+ std::tuple<const ::Ice::Identity&> ice_tuple() const
617
+ {
618
+ return std::tie(id);
619
+ }
620
+
621
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
622
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
623
+
624
+ ::Ice::Identity id;
625
+ };
626
+
627
+ class ICE_CLASS(ICE_API) IllegalServantException : public ::Ice::LocalExceptionHelper<IllegalServantException, ::Ice::LocalException>
628
+ {
629
+ public:
630
+
631
+ ICE_MEMBER(ICE_API) virtual ~IllegalServantException();
632
+
633
+ IllegalServantException(const IllegalServantException&) = default;
634
+
635
+ IllegalServantException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<IllegalServantException, ::Ice::LocalException>(file_, line_)
636
+ {
637
+ }
638
+
639
+ IllegalServantException(const char* file_, int line_, const ::std::string& iceP_reason) : ::Ice::LocalExceptionHelper<IllegalServantException, ::Ice::LocalException>(file_, line_),
640
+ reason(::std::move(iceP_reason))
641
+ {
642
+ }
643
+
644
+ std::tuple<const ::std::string&> ice_tuple() const
645
+ {
646
+ return std::tie(reason);
647
+ }
648
+
649
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
650
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
651
+
652
+ ::std::string reason;
653
+ };
654
+
655
+ class ICE_CLASS(ICE_API) RequestFailedException : public ::Ice::LocalExceptionHelper<RequestFailedException, ::Ice::LocalException>
656
+ {
657
+ public:
658
+
659
+ ICE_MEMBER(ICE_API) virtual ~RequestFailedException();
660
+
661
+ RequestFailedException(const RequestFailedException&) = default;
662
+
663
+ RequestFailedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<RequestFailedException, ::Ice::LocalException>(file_, line_)
664
+ {
665
+ }
666
+
667
+ RequestFailedException(const char* file_, int line_, const ::Ice::Identity& iceP_id, const ::std::string& iceP_facet, const ::std::string& iceP_operation) : ::Ice::LocalExceptionHelper<RequestFailedException, ::Ice::LocalException>(file_, line_),
668
+ id(::std::move(iceP_id)),
669
+ facet(::std::move(iceP_facet)),
670
+ operation(::std::move(iceP_operation))
671
+ {
672
+ }
673
+
674
+ std::tuple<const ::Ice::Identity&, const ::std::string&, const ::std::string&> ice_tuple() const
675
+ {
676
+ return std::tie(id, facet, operation);
677
+ }
678
+
679
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
680
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
681
+
682
+ ::Ice::Identity id;
683
+ ::std::string facet;
684
+ ::std::string operation;
685
+ };
686
+
687
+ class ICE_CLASS(ICE_API) ObjectNotExistException : public ::Ice::LocalExceptionHelper<ObjectNotExistException, ::Ice::RequestFailedException>
688
+ {
689
+ public:
690
+
691
+ ICE_MEMBER(ICE_API) virtual ~ObjectNotExistException();
692
+
693
+ ObjectNotExistException(const ObjectNotExistException&) = default;
694
+
695
+ ObjectNotExistException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ObjectNotExistException, ::Ice::RequestFailedException>(file_, line_)
696
+ {
697
+ }
698
+
699
+ ObjectNotExistException(const char* file_, int line_, const ::Ice::Identity& iceP_id, const ::std::string& iceP_facet, const ::std::string& iceP_operation) :
700
+ ::Ice::LocalExceptionHelper<ObjectNotExistException, ::Ice::RequestFailedException>(file_, line_, ::std::move(iceP_id), ::std::move(iceP_facet), ::std::move(iceP_operation))
701
+ {
702
+ }
703
+
704
+ std::tuple<const ::Ice::Identity&, const ::std::string&, const ::std::string&> ice_tuple() const
705
+ {
706
+ return std::tie(id, facet, operation);
707
+ }
708
+
709
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
710
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
711
+ };
712
+
713
+ class ICE_CLASS(ICE_API) FacetNotExistException : public ::Ice::LocalExceptionHelper<FacetNotExistException, ::Ice::RequestFailedException>
714
+ {
715
+ public:
716
+
717
+ ICE_MEMBER(ICE_API) virtual ~FacetNotExistException();
718
+
719
+ FacetNotExistException(const FacetNotExistException&) = default;
720
+
721
+ FacetNotExistException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<FacetNotExistException, ::Ice::RequestFailedException>(file_, line_)
722
+ {
723
+ }
724
+
725
+ FacetNotExistException(const char* file_, int line_, const ::Ice::Identity& iceP_id, const ::std::string& iceP_facet, const ::std::string& iceP_operation) :
726
+ ::Ice::LocalExceptionHelper<FacetNotExistException, ::Ice::RequestFailedException>(file_, line_, ::std::move(iceP_id), ::std::move(iceP_facet), ::std::move(iceP_operation))
727
+ {
728
+ }
729
+
730
+ std::tuple<const ::Ice::Identity&, const ::std::string&, const ::std::string&> ice_tuple() const
731
+ {
732
+ return std::tie(id, facet, operation);
733
+ }
734
+
735
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
736
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
737
+ };
738
+
739
+ class ICE_CLASS(ICE_API) OperationNotExistException : public ::Ice::LocalExceptionHelper<OperationNotExistException, ::Ice::RequestFailedException>
740
+ {
741
+ public:
742
+
743
+ ICE_MEMBER(ICE_API) virtual ~OperationNotExistException();
744
+
745
+ OperationNotExistException(const OperationNotExistException&) = default;
746
+
747
+ OperationNotExistException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<OperationNotExistException, ::Ice::RequestFailedException>(file_, line_)
748
+ {
749
+ }
750
+
751
+ OperationNotExistException(const char* file_, int line_, const ::Ice::Identity& iceP_id, const ::std::string& iceP_facet, const ::std::string& iceP_operation) :
752
+ ::Ice::LocalExceptionHelper<OperationNotExistException, ::Ice::RequestFailedException>(file_, line_, ::std::move(iceP_id), ::std::move(iceP_facet), ::std::move(iceP_operation))
753
+ {
754
+ }
755
+
756
+ std::tuple<const ::Ice::Identity&, const ::std::string&, const ::std::string&> ice_tuple() const
757
+ {
758
+ return std::tie(id, facet, operation);
759
+ }
760
+
761
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
762
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
763
+ };
764
+
765
+ class ICE_CLASS(ICE_API) SyscallException : public ::Ice::LocalExceptionHelper<SyscallException, ::Ice::LocalException>
766
+ {
767
+ public:
768
+
769
+ ICE_MEMBER(ICE_API) virtual ~SyscallException();
770
+
771
+ SyscallException(const SyscallException&) = default;
772
+
773
+ SyscallException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<SyscallException, ::Ice::LocalException>(file_, line_)
774
+ {
775
+ }
776
+
777
+ SyscallException(const char* file_, int line_, int iceP_error) : ::Ice::LocalExceptionHelper<SyscallException, ::Ice::LocalException>(file_, line_),
778
+ error(iceP_error)
779
+ {
780
+ }
781
+
782
+ std::tuple<const int&> ice_tuple() const
783
+ {
784
+ return std::tie(error);
785
+ }
786
+
787
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
788
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
789
+
790
+ int error = 0;
791
+ };
792
+
793
+ class ICE_CLASS(ICE_API) SocketException : public ::Ice::LocalExceptionHelper<SocketException, ::Ice::SyscallException>
794
+ {
795
+ public:
796
+
797
+ ICE_MEMBER(ICE_API) virtual ~SocketException();
798
+
799
+ SocketException(const SocketException&) = default;
800
+
801
+ SocketException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<SocketException, ::Ice::SyscallException>(file_, line_)
802
+ {
803
+ }
804
+
805
+ SocketException(const char* file_, int line_, int iceP_error) :
806
+ ::Ice::LocalExceptionHelper<SocketException, ::Ice::SyscallException>(file_, line_, iceP_error)
807
+ {
808
+ }
809
+
810
+ std::tuple<const int&> ice_tuple() const
811
+ {
812
+ return std::tie(error);
813
+ }
814
+
815
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
816
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
817
+ };
818
+
819
+ class ICE_CLASS(ICE_API) CFNetworkException : public ::Ice::LocalExceptionHelper<CFNetworkException, ::Ice::SocketException>
820
+ {
821
+ public:
822
+
823
+ ICE_MEMBER(ICE_API) virtual ~CFNetworkException();
824
+
825
+ CFNetworkException(const CFNetworkException&) = default;
826
+
827
+ CFNetworkException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<CFNetworkException, ::Ice::SocketException>(file_, line_)
828
+ {
829
+ }
830
+
831
+ CFNetworkException(const char* file_, int line_, int iceP_error, const ::std::string& iceP_domain) :
832
+ ::Ice::LocalExceptionHelper<CFNetworkException, ::Ice::SocketException>(file_, line_, iceP_error),
833
+ domain(::std::move(iceP_domain))
834
+ {
835
+ }
836
+
837
+ std::tuple<const int&, const ::std::string&> ice_tuple() const
838
+ {
839
+ return std::tie(error, domain);
840
+ }
841
+
842
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
843
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
844
+
845
+ ::std::string domain;
846
+ };
847
+
848
+ class ICE_CLASS(ICE_API) FileException : public ::Ice::LocalExceptionHelper<FileException, ::Ice::SyscallException>
849
+ {
850
+ public:
851
+
852
+ ICE_MEMBER(ICE_API) virtual ~FileException();
853
+
854
+ FileException(const FileException&) = default;
855
+
856
+ FileException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<FileException, ::Ice::SyscallException>(file_, line_)
857
+ {
858
+ }
859
+
860
+ FileException(const char* file_, int line_, int iceP_error, const ::std::string& iceP_path) :
861
+ ::Ice::LocalExceptionHelper<FileException, ::Ice::SyscallException>(file_, line_, iceP_error),
862
+ path(::std::move(iceP_path))
863
+ {
864
+ }
865
+
866
+ std::tuple<const int&, const ::std::string&> ice_tuple() const
867
+ {
868
+ return std::tie(error, path);
869
+ }
870
+
871
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
872
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
873
+
874
+ ::std::string path;
875
+ };
876
+
877
+ class ICE_CLASS(ICE_API) ConnectFailedException : public ::Ice::LocalExceptionHelper<ConnectFailedException, ::Ice::SocketException>
878
+ {
879
+ public:
880
+
881
+ ICE_MEMBER(ICE_API) virtual ~ConnectFailedException();
882
+
883
+ ConnectFailedException(const ConnectFailedException&) = default;
884
+
885
+ ConnectFailedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ConnectFailedException, ::Ice::SocketException>(file_, line_)
886
+ {
887
+ }
888
+
889
+ ConnectFailedException(const char* file_, int line_, int iceP_error) :
890
+ ::Ice::LocalExceptionHelper<ConnectFailedException, ::Ice::SocketException>(file_, line_, iceP_error)
891
+ {
892
+ }
893
+
894
+ std::tuple<const int&> ice_tuple() const
895
+ {
896
+ return std::tie(error);
897
+ }
898
+
899
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
900
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
901
+ };
902
+
903
+ class ICE_CLASS(ICE_API) ConnectionRefusedException : public ::Ice::LocalExceptionHelper<ConnectionRefusedException, ::Ice::ConnectFailedException>
904
+ {
905
+ public:
906
+
907
+ ICE_MEMBER(ICE_API) virtual ~ConnectionRefusedException();
908
+
909
+ ConnectionRefusedException(const ConnectionRefusedException&) = default;
910
+
911
+ ConnectionRefusedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ConnectionRefusedException, ::Ice::ConnectFailedException>(file_, line_)
912
+ {
913
+ }
914
+
915
+ ConnectionRefusedException(const char* file_, int line_, int iceP_error) :
916
+ ::Ice::LocalExceptionHelper<ConnectionRefusedException, ::Ice::ConnectFailedException>(file_, line_, iceP_error)
917
+ {
918
+ }
919
+
920
+ std::tuple<const int&> ice_tuple() const
921
+ {
922
+ return std::tie(error);
923
+ }
924
+
925
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
926
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
927
+ };
928
+
929
+ class ICE_CLASS(ICE_API) ConnectionLostException : public ::Ice::LocalExceptionHelper<ConnectionLostException, ::Ice::SocketException>
930
+ {
931
+ public:
932
+
933
+ ICE_MEMBER(ICE_API) virtual ~ConnectionLostException();
934
+
935
+ ConnectionLostException(const ConnectionLostException&) = default;
936
+
937
+ ConnectionLostException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ConnectionLostException, ::Ice::SocketException>(file_, line_)
938
+ {
939
+ }
940
+
941
+ ConnectionLostException(const char* file_, int line_, int iceP_error) :
942
+ ::Ice::LocalExceptionHelper<ConnectionLostException, ::Ice::SocketException>(file_, line_, iceP_error)
943
+ {
944
+ }
945
+
946
+ std::tuple<const int&> ice_tuple() const
947
+ {
948
+ return std::tie(error);
949
+ }
950
+
951
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
952
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
953
+ };
954
+
955
+ class ICE_CLASS(ICE_API) DNSException : public ::Ice::LocalExceptionHelper<DNSException, ::Ice::LocalException>
956
+ {
957
+ public:
958
+
959
+ ICE_MEMBER(ICE_API) virtual ~DNSException();
960
+
961
+ DNSException(const DNSException&) = default;
962
+
963
+ DNSException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<DNSException, ::Ice::LocalException>(file_, line_)
964
+ {
965
+ }
966
+
967
+ DNSException(const char* file_, int line_, int iceP_error, const ::std::string& iceP_host) : ::Ice::LocalExceptionHelper<DNSException, ::Ice::LocalException>(file_, line_),
968
+ error(iceP_error),
969
+ host(::std::move(iceP_host))
970
+ {
971
+ }
972
+
973
+ std::tuple<const int&, const ::std::string&> ice_tuple() const
974
+ {
975
+ return std::tie(error, host);
976
+ }
977
+
978
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
979
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
980
+
981
+ int error = 0;
982
+ ::std::string host;
983
+ };
984
+
985
+ class ICE_CLASS(ICE_API) OperationInterruptedException : public ::Ice::LocalExceptionHelper<OperationInterruptedException, ::Ice::LocalException>
986
+ {
987
+ public:
988
+
989
+ ICE_MEMBER(ICE_API) virtual ~OperationInterruptedException();
990
+
991
+ OperationInterruptedException(const OperationInterruptedException&) = default;
992
+
993
+ OperationInterruptedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<OperationInterruptedException, ::Ice::LocalException>(file_, line_)
994
+ {
995
+ }
996
+
997
+ std::tuple<> ice_tuple() const
998
+ {
999
+ return std::tie();
1000
+ }
1001
+
1002
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1003
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1004
+ };
1005
+
1006
+ class ICE_CLASS(ICE_API) TimeoutException : public ::Ice::LocalExceptionHelper<TimeoutException, ::Ice::LocalException>
1007
+ {
1008
+ public:
1009
+
1010
+ ICE_MEMBER(ICE_API) virtual ~TimeoutException();
1011
+
1012
+ TimeoutException(const TimeoutException&) = default;
1013
+
1014
+ TimeoutException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<TimeoutException, ::Ice::LocalException>(file_, line_)
1015
+ {
1016
+ }
1017
+
1018
+ std::tuple<> ice_tuple() const
1019
+ {
1020
+ return std::tie();
1021
+ }
1022
+
1023
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1024
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1025
+ };
1026
+
1027
+ class ICE_CLASS(ICE_API) ConnectTimeoutException : public ::Ice::LocalExceptionHelper<ConnectTimeoutException, ::Ice::TimeoutException>
1028
+ {
1029
+ public:
1030
+
1031
+ ICE_MEMBER(ICE_API) virtual ~ConnectTimeoutException();
1032
+
1033
+ ConnectTimeoutException(const ConnectTimeoutException&) = default;
1034
+
1035
+ ConnectTimeoutException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ConnectTimeoutException, ::Ice::TimeoutException>(file_, line_)
1036
+ {
1037
+ }
1038
+
1039
+ std::tuple<> ice_tuple() const
1040
+ {
1041
+ return std::tie();
1042
+ }
1043
+
1044
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1045
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1046
+ };
1047
+
1048
+ class ICE_CLASS(ICE_API) CloseTimeoutException : public ::Ice::LocalExceptionHelper<CloseTimeoutException, ::Ice::TimeoutException>
1049
+ {
1050
+ public:
1051
+
1052
+ ICE_MEMBER(ICE_API) virtual ~CloseTimeoutException();
1053
+
1054
+ CloseTimeoutException(const CloseTimeoutException&) = default;
1055
+
1056
+ CloseTimeoutException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<CloseTimeoutException, ::Ice::TimeoutException>(file_, line_)
1057
+ {
1058
+ }
1059
+
1060
+ std::tuple<> ice_tuple() const
1061
+ {
1062
+ return std::tie();
1063
+ }
1064
+
1065
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1066
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1067
+ };
1068
+
1069
+ class ICE_CLASS(ICE_API) ConnectionTimeoutException : public ::Ice::LocalExceptionHelper<ConnectionTimeoutException, ::Ice::TimeoutException>
1070
+ {
1071
+ public:
1072
+
1073
+ ICE_MEMBER(ICE_API) virtual ~ConnectionTimeoutException();
1074
+
1075
+ ConnectionTimeoutException(const ConnectionTimeoutException&) = default;
1076
+
1077
+ ConnectionTimeoutException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ConnectionTimeoutException, ::Ice::TimeoutException>(file_, line_)
1078
+ {
1079
+ }
1080
+
1081
+ std::tuple<> ice_tuple() const
1082
+ {
1083
+ return std::tie();
1084
+ }
1085
+
1086
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1087
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1088
+ };
1089
+
1090
+ class ICE_CLASS(ICE_API) InvocationTimeoutException : public ::Ice::LocalExceptionHelper<InvocationTimeoutException, ::Ice::TimeoutException>
1091
+ {
1092
+ public:
1093
+
1094
+ ICE_MEMBER(ICE_API) virtual ~InvocationTimeoutException();
1095
+
1096
+ InvocationTimeoutException(const InvocationTimeoutException&) = default;
1097
+
1098
+ InvocationTimeoutException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<InvocationTimeoutException, ::Ice::TimeoutException>(file_, line_)
1099
+ {
1100
+ }
1101
+
1102
+ std::tuple<> ice_tuple() const
1103
+ {
1104
+ return std::tie();
1105
+ }
1106
+
1107
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1108
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1109
+ };
1110
+
1111
+ class ICE_CLASS(ICE_API) InvocationCanceledException : public ::Ice::LocalExceptionHelper<InvocationCanceledException, ::Ice::LocalException>
1112
+ {
1113
+ public:
1114
+
1115
+ ICE_MEMBER(ICE_API) virtual ~InvocationCanceledException();
1116
+
1117
+ InvocationCanceledException(const InvocationCanceledException&) = default;
1118
+
1119
+ InvocationCanceledException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<InvocationCanceledException, ::Ice::LocalException>(file_, line_)
1120
+ {
1121
+ }
1122
+
1123
+ std::tuple<> ice_tuple() const
1124
+ {
1125
+ return std::tie();
1126
+ }
1127
+
1128
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1129
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1130
+ };
1131
+
1132
+ class ICE_CLASS(ICE_API) ProtocolException : public ::Ice::LocalExceptionHelper<ProtocolException, ::Ice::LocalException>
1133
+ {
1134
+ public:
1135
+
1136
+ ICE_MEMBER(ICE_API) virtual ~ProtocolException();
1137
+
1138
+ ProtocolException(const ProtocolException&) = default;
1139
+
1140
+ ProtocolException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ProtocolException, ::Ice::LocalException>(file_, line_)
1141
+ {
1142
+ }
1143
+
1144
+ ProtocolException(const char* file_, int line_, const ::std::string& iceP_reason) : ::Ice::LocalExceptionHelper<ProtocolException, ::Ice::LocalException>(file_, line_),
1145
+ reason(::std::move(iceP_reason))
1146
+ {
1147
+ }
1148
+
1149
+ std::tuple<const ::std::string&> ice_tuple() const
1150
+ {
1151
+ return std::tie(reason);
1152
+ }
1153
+
1154
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1155
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1156
+
1157
+ ::std::string reason;
1158
+ };
1159
+
1160
+ class ICE_CLASS(ICE_API) BadMagicException : public ::Ice::LocalExceptionHelper<BadMagicException, ::Ice::ProtocolException>
1161
+ {
1162
+ public:
1163
+
1164
+ ICE_MEMBER(ICE_API) virtual ~BadMagicException();
1165
+
1166
+ BadMagicException(const BadMagicException&) = default;
1167
+
1168
+ BadMagicException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<BadMagicException, ::Ice::ProtocolException>(file_, line_)
1169
+ {
1170
+ }
1171
+
1172
+ BadMagicException(const char* file_, int line_, const ::std::string& iceP_reason, const ::Ice::ByteSeq& iceP_badMagic) :
1173
+ ::Ice::LocalExceptionHelper<BadMagicException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason)),
1174
+ badMagic(::std::move(iceP_badMagic))
1175
+ {
1176
+ }
1177
+
1178
+ std::tuple<const ::std::string&, const ::Ice::ByteSeq&> ice_tuple() const
1179
+ {
1180
+ return std::tie(reason, badMagic);
1181
+ }
1182
+
1183
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1184
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1185
+
1186
+ ::Ice::ByteSeq badMagic;
1187
+ };
1188
+
1189
+ class ICE_CLASS(ICE_API) UnsupportedProtocolException : public ::Ice::LocalExceptionHelper<UnsupportedProtocolException, ::Ice::ProtocolException>
1190
+ {
1191
+ public:
1192
+
1193
+ ICE_MEMBER(ICE_API) virtual ~UnsupportedProtocolException();
1194
+
1195
+ UnsupportedProtocolException(const UnsupportedProtocolException&) = default;
1196
+
1197
+ UnsupportedProtocolException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnsupportedProtocolException, ::Ice::ProtocolException>(file_, line_)
1198
+ {
1199
+ }
1200
+
1201
+ UnsupportedProtocolException(const char* file_, int line_, const ::std::string& iceP_reason, const ::Ice::ProtocolVersion& iceP_bad, const ::Ice::ProtocolVersion& iceP_supported) :
1202
+ ::Ice::LocalExceptionHelper<UnsupportedProtocolException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason)),
1203
+ bad(::std::move(iceP_bad)),
1204
+ supported(::std::move(iceP_supported))
1205
+ {
1206
+ }
1207
+
1208
+ std::tuple<const ::std::string&, const ::Ice::ProtocolVersion&, const ::Ice::ProtocolVersion&> ice_tuple() const
1209
+ {
1210
+ return std::tie(reason, bad, supported);
1211
+ }
1212
+
1213
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1214
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1215
+
1216
+ ::Ice::ProtocolVersion bad;
1217
+ ::Ice::ProtocolVersion supported;
1218
+ };
1219
+
1220
+ class ICE_CLASS(ICE_API) UnsupportedEncodingException : public ::Ice::LocalExceptionHelper<UnsupportedEncodingException, ::Ice::ProtocolException>
1221
+ {
1222
+ public:
1223
+
1224
+ ICE_MEMBER(ICE_API) virtual ~UnsupportedEncodingException();
1225
+
1226
+ UnsupportedEncodingException(const UnsupportedEncodingException&) = default;
1227
+
1228
+ UnsupportedEncodingException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnsupportedEncodingException, ::Ice::ProtocolException>(file_, line_)
1229
+ {
1230
+ }
1231
+
1232
+ UnsupportedEncodingException(const char* file_, int line_, const ::std::string& iceP_reason, const ::Ice::EncodingVersion& iceP_bad, const ::Ice::EncodingVersion& iceP_supported) :
1233
+ ::Ice::LocalExceptionHelper<UnsupportedEncodingException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason)),
1234
+ bad(::std::move(iceP_bad)),
1235
+ supported(::std::move(iceP_supported))
1236
+ {
1237
+ }
1238
+
1239
+ std::tuple<const ::std::string&, const ::Ice::EncodingVersion&, const ::Ice::EncodingVersion&> ice_tuple() const
1240
+ {
1241
+ return std::tie(reason, bad, supported);
1242
+ }
1243
+
1244
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1245
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1246
+
1247
+ ::Ice::EncodingVersion bad;
1248
+ ::Ice::EncodingVersion supported;
1249
+ };
1250
+
1251
+ class ICE_CLASS(ICE_API) UnknownMessageException : public ::Ice::LocalExceptionHelper<UnknownMessageException, ::Ice::ProtocolException>
1252
+ {
1253
+ public:
1254
+
1255
+ ICE_MEMBER(ICE_API) virtual ~UnknownMessageException();
1256
+
1257
+ UnknownMessageException(const UnknownMessageException&) = default;
1258
+
1259
+ UnknownMessageException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnknownMessageException, ::Ice::ProtocolException>(file_, line_)
1260
+ {
1261
+ }
1262
+
1263
+ UnknownMessageException(const char* file_, int line_, const ::std::string& iceP_reason) :
1264
+ ::Ice::LocalExceptionHelper<UnknownMessageException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1265
+ {
1266
+ }
1267
+
1268
+ std::tuple<const ::std::string&> ice_tuple() const
1269
+ {
1270
+ return std::tie(reason);
1271
+ }
1272
+
1273
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1274
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1275
+ };
1276
+
1277
+ class ICE_CLASS(ICE_API) ConnectionNotValidatedException : public ::Ice::LocalExceptionHelper<ConnectionNotValidatedException, ::Ice::ProtocolException>
1278
+ {
1279
+ public:
1280
+
1281
+ ICE_MEMBER(ICE_API) virtual ~ConnectionNotValidatedException();
1282
+
1283
+ ConnectionNotValidatedException(const ConnectionNotValidatedException&) = default;
1284
+
1285
+ ConnectionNotValidatedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ConnectionNotValidatedException, ::Ice::ProtocolException>(file_, line_)
1286
+ {
1287
+ }
1288
+
1289
+ ConnectionNotValidatedException(const char* file_, int line_, const ::std::string& iceP_reason) :
1290
+ ::Ice::LocalExceptionHelper<ConnectionNotValidatedException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1291
+ {
1292
+ }
1293
+
1294
+ std::tuple<const ::std::string&> ice_tuple() const
1295
+ {
1296
+ return std::tie(reason);
1297
+ }
1298
+
1299
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1300
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1301
+ };
1302
+
1303
+ class ICE_CLASS(ICE_API) UnknownRequestIdException : public ::Ice::LocalExceptionHelper<UnknownRequestIdException, ::Ice::ProtocolException>
1304
+ {
1305
+ public:
1306
+
1307
+ ICE_MEMBER(ICE_API) virtual ~UnknownRequestIdException();
1308
+
1309
+ UnknownRequestIdException(const UnknownRequestIdException&) = default;
1310
+
1311
+ UnknownRequestIdException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnknownRequestIdException, ::Ice::ProtocolException>(file_, line_)
1312
+ {
1313
+ }
1314
+
1315
+ UnknownRequestIdException(const char* file_, int line_, const ::std::string& iceP_reason) :
1316
+ ::Ice::LocalExceptionHelper<UnknownRequestIdException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1317
+ {
1318
+ }
1319
+
1320
+ std::tuple<const ::std::string&> ice_tuple() const
1321
+ {
1322
+ return std::tie(reason);
1323
+ }
1324
+
1325
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1326
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1327
+ };
1328
+
1329
+ class ICE_CLASS(ICE_API) UnknownReplyStatusException : public ::Ice::LocalExceptionHelper<UnknownReplyStatusException, ::Ice::ProtocolException>
1330
+ {
1331
+ public:
1332
+
1333
+ ICE_MEMBER(ICE_API) virtual ~UnknownReplyStatusException();
1334
+
1335
+ UnknownReplyStatusException(const UnknownReplyStatusException&) = default;
1336
+
1337
+ UnknownReplyStatusException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnknownReplyStatusException, ::Ice::ProtocolException>(file_, line_)
1338
+ {
1339
+ }
1340
+
1341
+ UnknownReplyStatusException(const char* file_, int line_, const ::std::string& iceP_reason) :
1342
+ ::Ice::LocalExceptionHelper<UnknownReplyStatusException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1343
+ {
1344
+ }
1345
+
1346
+ std::tuple<const ::std::string&> ice_tuple() const
1347
+ {
1348
+ return std::tie(reason);
1349
+ }
1350
+
1351
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1352
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1353
+ };
1354
+
1355
+ class ICE_CLASS(ICE_API) CloseConnectionException : public ::Ice::LocalExceptionHelper<CloseConnectionException, ::Ice::ProtocolException>
1356
+ {
1357
+ public:
1358
+
1359
+ ICE_MEMBER(ICE_API) virtual ~CloseConnectionException();
1360
+
1361
+ CloseConnectionException(const CloseConnectionException&) = default;
1362
+
1363
+ CloseConnectionException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<CloseConnectionException, ::Ice::ProtocolException>(file_, line_)
1364
+ {
1365
+ }
1366
+
1367
+ CloseConnectionException(const char* file_, int line_, const ::std::string& iceP_reason) :
1368
+ ::Ice::LocalExceptionHelper<CloseConnectionException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1369
+ {
1370
+ }
1371
+
1372
+ std::tuple<const ::std::string&> ice_tuple() const
1373
+ {
1374
+ return std::tie(reason);
1375
+ }
1376
+
1377
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1378
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1379
+ };
1380
+
1381
+ class ICE_CLASS(ICE_API) ConnectionManuallyClosedException : public ::Ice::LocalExceptionHelper<ConnectionManuallyClosedException, ::Ice::LocalException>
1382
+ {
1383
+ public:
1384
+
1385
+ ICE_MEMBER(ICE_API) virtual ~ConnectionManuallyClosedException();
1386
+
1387
+ ConnectionManuallyClosedException(const ConnectionManuallyClosedException&) = default;
1388
+
1389
+ ConnectionManuallyClosedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ConnectionManuallyClosedException, ::Ice::LocalException>(file_, line_)
1390
+ {
1391
+ }
1392
+
1393
+ ConnectionManuallyClosedException(const char* file_, int line_, bool iceP_graceful) : ::Ice::LocalExceptionHelper<ConnectionManuallyClosedException, ::Ice::LocalException>(file_, line_),
1394
+ graceful(iceP_graceful)
1395
+ {
1396
+ }
1397
+
1398
+ std::tuple<const bool&> ice_tuple() const
1399
+ {
1400
+ return std::tie(graceful);
1401
+ }
1402
+
1403
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1404
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1405
+
1406
+ bool graceful;
1407
+ };
1408
+
1409
+ class ICE_CLASS(ICE_API) IllegalMessageSizeException : public ::Ice::LocalExceptionHelper<IllegalMessageSizeException, ::Ice::ProtocolException>
1410
+ {
1411
+ public:
1412
+
1413
+ ICE_MEMBER(ICE_API) virtual ~IllegalMessageSizeException();
1414
+
1415
+ IllegalMessageSizeException(const IllegalMessageSizeException&) = default;
1416
+
1417
+ IllegalMessageSizeException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<IllegalMessageSizeException, ::Ice::ProtocolException>(file_, line_)
1418
+ {
1419
+ }
1420
+
1421
+ IllegalMessageSizeException(const char* file_, int line_, const ::std::string& iceP_reason) :
1422
+ ::Ice::LocalExceptionHelper<IllegalMessageSizeException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1423
+ {
1424
+ }
1425
+
1426
+ std::tuple<const ::std::string&> ice_tuple() const
1427
+ {
1428
+ return std::tie(reason);
1429
+ }
1430
+
1431
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1432
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1433
+ };
1434
+
1435
+ class ICE_CLASS(ICE_API) CompressionException : public ::Ice::LocalExceptionHelper<CompressionException, ::Ice::ProtocolException>
1436
+ {
1437
+ public:
1438
+
1439
+ ICE_MEMBER(ICE_API) virtual ~CompressionException();
1440
+
1441
+ CompressionException(const CompressionException&) = default;
1442
+
1443
+ CompressionException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<CompressionException, ::Ice::ProtocolException>(file_, line_)
1444
+ {
1445
+ }
1446
+
1447
+ CompressionException(const char* file_, int line_, const ::std::string& iceP_reason) :
1448
+ ::Ice::LocalExceptionHelper<CompressionException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1449
+ {
1450
+ }
1451
+
1452
+ std::tuple<const ::std::string&> ice_tuple() const
1453
+ {
1454
+ return std::tie(reason);
1455
+ }
1456
+
1457
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1458
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1459
+ };
1460
+
1461
+ class ICE_CLASS(ICE_API) DatagramLimitException : public ::Ice::LocalExceptionHelper<DatagramLimitException, ::Ice::ProtocolException>
1462
+ {
1463
+ public:
1464
+
1465
+ ICE_MEMBER(ICE_API) virtual ~DatagramLimitException();
1466
+
1467
+ DatagramLimitException(const DatagramLimitException&) = default;
1468
+
1469
+ DatagramLimitException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<DatagramLimitException, ::Ice::ProtocolException>(file_, line_)
1470
+ {
1471
+ }
1472
+
1473
+ DatagramLimitException(const char* file_, int line_, const ::std::string& iceP_reason) :
1474
+ ::Ice::LocalExceptionHelper<DatagramLimitException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1475
+ {
1476
+ }
1477
+
1478
+ std::tuple<const ::std::string&> ice_tuple() const
1479
+ {
1480
+ return std::tie(reason);
1481
+ }
1482
+
1483
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1484
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1485
+ };
1486
+
1487
+ class ICE_CLASS(ICE_API) MarshalException : public ::Ice::LocalExceptionHelper<MarshalException, ::Ice::ProtocolException>
1488
+ {
1489
+ public:
1490
+
1491
+ ICE_MEMBER(ICE_API) virtual ~MarshalException();
1492
+
1493
+ MarshalException(const MarshalException&) = default;
1494
+
1495
+ MarshalException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<MarshalException, ::Ice::ProtocolException>(file_, line_)
1496
+ {
1497
+ }
1498
+
1499
+ MarshalException(const char* file_, int line_, const ::std::string& iceP_reason) :
1500
+ ::Ice::LocalExceptionHelper<MarshalException, ::Ice::ProtocolException>(file_, line_, ::std::move(iceP_reason))
1501
+ {
1502
+ }
1503
+
1504
+ std::tuple<const ::std::string&> ice_tuple() const
1505
+ {
1506
+ return std::tie(reason);
1507
+ }
1508
+
1509
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1510
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1511
+ };
1512
+
1513
+ class ICE_CLASS(ICE_API) ProxyUnmarshalException : public ::Ice::LocalExceptionHelper<ProxyUnmarshalException, ::Ice::MarshalException>
1514
+ {
1515
+ public:
1516
+
1517
+ ICE_MEMBER(ICE_API) virtual ~ProxyUnmarshalException();
1518
+
1519
+ ProxyUnmarshalException(const ProxyUnmarshalException&) = default;
1520
+
1521
+ ProxyUnmarshalException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ProxyUnmarshalException, ::Ice::MarshalException>(file_, line_)
1522
+ {
1523
+ }
1524
+
1525
+ ProxyUnmarshalException(const char* file_, int line_, const ::std::string& iceP_reason) :
1526
+ ::Ice::LocalExceptionHelper<ProxyUnmarshalException, ::Ice::MarshalException>(file_, line_, ::std::move(iceP_reason))
1527
+ {
1528
+ }
1529
+
1530
+ std::tuple<const ::std::string&> ice_tuple() const
1531
+ {
1532
+ return std::tie(reason);
1533
+ }
1534
+
1535
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1536
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1537
+ };
1538
+
1539
+ class ICE_CLASS(ICE_API) UnmarshalOutOfBoundsException : public ::Ice::LocalExceptionHelper<UnmarshalOutOfBoundsException, ::Ice::MarshalException>
1540
+ {
1541
+ public:
1542
+
1543
+ ICE_MEMBER(ICE_API) virtual ~UnmarshalOutOfBoundsException();
1544
+
1545
+ UnmarshalOutOfBoundsException(const UnmarshalOutOfBoundsException&) = default;
1546
+
1547
+ UnmarshalOutOfBoundsException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnmarshalOutOfBoundsException, ::Ice::MarshalException>(file_, line_)
1548
+ {
1549
+ }
1550
+
1551
+ UnmarshalOutOfBoundsException(const char* file_, int line_, const ::std::string& iceP_reason) :
1552
+ ::Ice::LocalExceptionHelper<UnmarshalOutOfBoundsException, ::Ice::MarshalException>(file_, line_, ::std::move(iceP_reason))
1553
+ {
1554
+ }
1555
+
1556
+ std::tuple<const ::std::string&> ice_tuple() const
1557
+ {
1558
+ return std::tie(reason);
1559
+ }
1560
+
1561
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1562
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1563
+ };
1564
+
1565
+ class ICE_CLASS(ICE_API) NoValueFactoryException : public ::Ice::LocalExceptionHelper<NoValueFactoryException, ::Ice::MarshalException>
1566
+ {
1567
+ public:
1568
+
1569
+ ICE_MEMBER(ICE_API) virtual ~NoValueFactoryException();
1570
+
1571
+ NoValueFactoryException(const NoValueFactoryException&) = default;
1572
+
1573
+ NoValueFactoryException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<NoValueFactoryException, ::Ice::MarshalException>(file_, line_)
1574
+ {
1575
+ }
1576
+
1577
+ NoValueFactoryException(const char* file_, int line_, const ::std::string& iceP_reason, const ::std::string& iceP_type) :
1578
+ ::Ice::LocalExceptionHelper<NoValueFactoryException, ::Ice::MarshalException>(file_, line_, ::std::move(iceP_reason)),
1579
+ type(::std::move(iceP_type))
1580
+ {
1581
+ }
1582
+
1583
+ std::tuple<const ::std::string&, const ::std::string&> ice_tuple() const
1584
+ {
1585
+ return std::tie(reason, type);
1586
+ }
1587
+
1588
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1589
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1590
+
1591
+ ::std::string type;
1592
+ };
1593
+
1594
+ class ICE_CLASS(ICE_API) UnexpectedObjectException : public ::Ice::LocalExceptionHelper<UnexpectedObjectException, ::Ice::MarshalException>
1595
+ {
1596
+ public:
1597
+
1598
+ ICE_MEMBER(ICE_API) virtual ~UnexpectedObjectException();
1599
+
1600
+ UnexpectedObjectException(const UnexpectedObjectException&) = default;
1601
+
1602
+ UnexpectedObjectException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<UnexpectedObjectException, ::Ice::MarshalException>(file_, line_)
1603
+ {
1604
+ }
1605
+
1606
+ UnexpectedObjectException(const char* file_, int line_, const ::std::string& iceP_reason, const ::std::string& iceP_type, const ::std::string& iceP_expectedType) :
1607
+ ::Ice::LocalExceptionHelper<UnexpectedObjectException, ::Ice::MarshalException>(file_, line_, ::std::move(iceP_reason)),
1608
+ type(::std::move(iceP_type)),
1609
+ expectedType(::std::move(iceP_expectedType))
1610
+ {
1611
+ }
1612
+
1613
+ std::tuple<const ::std::string&, const ::std::string&, const ::std::string&> ice_tuple() const
1614
+ {
1615
+ return std::tie(reason, type, expectedType);
1616
+ }
1617
+
1618
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1619
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1620
+
1621
+ ::std::string type;
1622
+ ::std::string expectedType;
1623
+ };
1624
+
1625
+ class ICE_CLASS(ICE_API) MemoryLimitException : public ::Ice::LocalExceptionHelper<MemoryLimitException, ::Ice::MarshalException>
1626
+ {
1627
+ public:
1628
+
1629
+ ICE_MEMBER(ICE_API) virtual ~MemoryLimitException();
1630
+
1631
+ MemoryLimitException(const MemoryLimitException&) = default;
1632
+
1633
+ MemoryLimitException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<MemoryLimitException, ::Ice::MarshalException>(file_, line_)
1634
+ {
1635
+ }
1636
+
1637
+ MemoryLimitException(const char* file_, int line_, const ::std::string& iceP_reason) :
1638
+ ::Ice::LocalExceptionHelper<MemoryLimitException, ::Ice::MarshalException>(file_, line_, ::std::move(iceP_reason))
1639
+ {
1640
+ }
1641
+
1642
+ std::tuple<const ::std::string&> ice_tuple() const
1643
+ {
1644
+ return std::tie(reason);
1645
+ }
1646
+
1647
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1648
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1649
+ };
1650
+
1651
+ class ICE_CLASS(ICE_API) StringConversionException : public ::Ice::LocalExceptionHelper<StringConversionException, ::Ice::MarshalException>
1652
+ {
1653
+ public:
1654
+
1655
+ ICE_MEMBER(ICE_API) virtual ~StringConversionException();
1656
+
1657
+ StringConversionException(const StringConversionException&) = default;
1658
+
1659
+ StringConversionException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<StringConversionException, ::Ice::MarshalException>(file_, line_)
1660
+ {
1661
+ }
1662
+
1663
+ StringConversionException(const char* file_, int line_, const ::std::string& iceP_reason) :
1664
+ ::Ice::LocalExceptionHelper<StringConversionException, ::Ice::MarshalException>(file_, line_, ::std::move(iceP_reason))
1665
+ {
1666
+ }
1667
+
1668
+ std::tuple<const ::std::string&> ice_tuple() const
1669
+ {
1670
+ return std::tie(reason);
1671
+ }
1672
+
1673
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1674
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1675
+ };
1676
+
1677
+ class ICE_CLASS(ICE_API) EncapsulationException : public ::Ice::LocalExceptionHelper<EncapsulationException, ::Ice::MarshalException>
1678
+ {
1679
+ public:
1680
+
1681
+ ICE_MEMBER(ICE_API) virtual ~EncapsulationException();
1682
+
1683
+ EncapsulationException(const EncapsulationException&) = default;
1684
+
1685
+ EncapsulationException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<EncapsulationException, ::Ice::MarshalException>(file_, line_)
1686
+ {
1687
+ }
1688
+
1689
+ EncapsulationException(const char* file_, int line_, const ::std::string& iceP_reason) :
1690
+ ::Ice::LocalExceptionHelper<EncapsulationException, ::Ice::MarshalException>(file_, line_, ::std::move(iceP_reason))
1691
+ {
1692
+ }
1693
+
1694
+ std::tuple<const ::std::string&> ice_tuple() const
1695
+ {
1696
+ return std::tie(reason);
1697
+ }
1698
+
1699
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1700
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1701
+ };
1702
+
1703
+ class ICE_CLASS(ICE_API) FeatureNotSupportedException : public ::Ice::LocalExceptionHelper<FeatureNotSupportedException, ::Ice::LocalException>
1704
+ {
1705
+ public:
1706
+
1707
+ ICE_MEMBER(ICE_API) virtual ~FeatureNotSupportedException();
1708
+
1709
+ FeatureNotSupportedException(const FeatureNotSupportedException&) = default;
1710
+
1711
+ FeatureNotSupportedException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<FeatureNotSupportedException, ::Ice::LocalException>(file_, line_)
1712
+ {
1713
+ }
1714
+
1715
+ FeatureNotSupportedException(const char* file_, int line_, const ::std::string& iceP_unsupportedFeature) : ::Ice::LocalExceptionHelper<FeatureNotSupportedException, ::Ice::LocalException>(file_, line_),
1716
+ unsupportedFeature(::std::move(iceP_unsupportedFeature))
1717
+ {
1718
+ }
1719
+
1720
+ std::tuple<const ::std::string&> ice_tuple() const
1721
+ {
1722
+ return std::tie(unsupportedFeature);
1723
+ }
1724
+
1725
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1726
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1727
+
1728
+ ::std::string unsupportedFeature;
1729
+ };
1730
+
1731
+ class ICE_CLASS(ICE_API) SecurityException : public ::Ice::LocalExceptionHelper<SecurityException, ::Ice::LocalException>
1732
+ {
1733
+ public:
1734
+
1735
+ ICE_MEMBER(ICE_API) virtual ~SecurityException();
1736
+
1737
+ SecurityException(const SecurityException&) = default;
1738
+
1739
+ SecurityException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<SecurityException, ::Ice::LocalException>(file_, line_)
1740
+ {
1741
+ }
1742
+
1743
+ SecurityException(const char* file_, int line_, const ::std::string& iceP_reason) : ::Ice::LocalExceptionHelper<SecurityException, ::Ice::LocalException>(file_, line_),
1744
+ reason(::std::move(iceP_reason))
1745
+ {
1746
+ }
1747
+
1748
+ std::tuple<const ::std::string&> ice_tuple() const
1749
+ {
1750
+ return std::tie(reason);
1751
+ }
1752
+
1753
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1754
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1755
+
1756
+ ::std::string reason;
1757
+ };
1758
+
1759
+ class ICE_CLASS(ICE_API) FixedProxyException : public ::Ice::LocalExceptionHelper<FixedProxyException, ::Ice::LocalException>
1760
+ {
1761
+ public:
1762
+
1763
+ ICE_MEMBER(ICE_API) virtual ~FixedProxyException();
1764
+
1765
+ FixedProxyException(const FixedProxyException&) = default;
1766
+
1767
+ FixedProxyException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<FixedProxyException, ::Ice::LocalException>(file_, line_)
1768
+ {
1769
+ }
1770
+
1771
+ std::tuple<> ice_tuple() const
1772
+ {
1773
+ return std::tie();
1774
+ }
1775
+
1776
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1777
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1778
+ };
1779
+
1780
+ class ICE_CLASS(ICE_API) ResponseSentException : public ::Ice::LocalExceptionHelper<ResponseSentException, ::Ice::LocalException>
1781
+ {
1782
+ public:
1783
+
1784
+ ICE_MEMBER(ICE_API) virtual ~ResponseSentException();
1785
+
1786
+ ResponseSentException(const ResponseSentException&) = default;
1787
+
1788
+ ResponseSentException(const char* file_, int line_) : ::Ice::LocalExceptionHelper<ResponseSentException, ::Ice::LocalException>(file_, line_)
1789
+ {
1790
+ }
1791
+
1792
+ std::tuple<> ice_tuple() const
1793
+ {
1794
+ return std::tie();
1795
+ }
1796
+
1797
+ ICE_MEMBER(ICE_API) static const ::std::string& ice_staticId();
1798
+ ICE_MEMBER(ICE_API) virtual void ice_print(::std::ostream&) const override;
1799
+ };
1800
+
1801
+ }
1802
+
1803
+ namespace Ice
1804
+ {
1805
+
1806
+ }
1807
+
1808
+ #else // C++98 mapping
1809
+
1810
+ namespace Ice
1811
+ {
1812
+
1813
+ class ICE_API InitializationException : public ::Ice::LocalException
1814
+ {
1815
+ public:
1816
+
1817
+ InitializationException(const char*, int);
1818
+ InitializationException(const char*, int, const ::std::string&);
1819
+ virtual ~InitializationException() throw();
1820
+
1821
+ virtual ::std::string ice_id() const;
1822
+ virtual void ice_print(::std::ostream&) const;
1823
+ virtual InitializationException* ice_clone() const;
1824
+ virtual void ice_throw() const;
1825
+
1826
+ ::std::string reason;
1827
+ };
1828
+
1829
+ class ICE_API PluginInitializationException : public ::Ice::LocalException
1830
+ {
1831
+ public:
1832
+
1833
+ PluginInitializationException(const char*, int);
1834
+ PluginInitializationException(const char*, int, const ::std::string&);
1835
+ virtual ~PluginInitializationException() throw();
1836
+
1837
+ virtual ::std::string ice_id() const;
1838
+ virtual void ice_print(::std::ostream&) const;
1839
+ virtual PluginInitializationException* ice_clone() const;
1840
+ virtual void ice_throw() const;
1841
+
1842
+ ::std::string reason;
1843
+ };
1844
+
1845
+ class ICE_API CollocationOptimizationException : public ::Ice::LocalException
1846
+ {
1847
+ public:
1848
+
1849
+ CollocationOptimizationException(const char*, int);
1850
+ virtual ~CollocationOptimizationException() throw();
1851
+
1852
+ virtual ::std::string ice_id() const;
1853
+ virtual void ice_print(::std::ostream&) const;
1854
+ virtual CollocationOptimizationException* ice_clone() const;
1855
+ virtual void ice_throw() const;
1856
+ };
1857
+
1858
+ class ICE_API AlreadyRegisteredException : public ::Ice::LocalException
1859
+ {
1860
+ public:
1861
+
1862
+ AlreadyRegisteredException(const char*, int);
1863
+ AlreadyRegisteredException(const char*, int, const ::std::string&, const ::std::string&);
1864
+ virtual ~AlreadyRegisteredException() throw();
1865
+
1866
+ virtual ::std::string ice_id() const;
1867
+ virtual void ice_print(::std::ostream&) const;
1868
+ virtual AlreadyRegisteredException* ice_clone() const;
1869
+ virtual void ice_throw() const;
1870
+
1871
+ ::std::string kindOfObject;
1872
+ ::std::string id;
1873
+ };
1874
+
1875
+ class ICE_API NotRegisteredException : public ::Ice::LocalException
1876
+ {
1877
+ public:
1878
+
1879
+ NotRegisteredException(const char*, int);
1880
+ NotRegisteredException(const char*, int, const ::std::string&, const ::std::string&);
1881
+ virtual ~NotRegisteredException() throw();
1882
+
1883
+ virtual ::std::string ice_id() const;
1884
+ virtual void ice_print(::std::ostream&) const;
1885
+ virtual NotRegisteredException* ice_clone() const;
1886
+ virtual void ice_throw() const;
1887
+
1888
+ ::std::string kindOfObject;
1889
+ ::std::string id;
1890
+ };
1891
+
1892
+ class ICE_API TwowayOnlyException : public ::Ice::LocalException
1893
+ {
1894
+ public:
1895
+
1896
+ TwowayOnlyException(const char*, int);
1897
+ TwowayOnlyException(const char*, int, const ::std::string&);
1898
+ virtual ~TwowayOnlyException() throw();
1899
+
1900
+ virtual ::std::string ice_id() const;
1901
+ virtual void ice_print(::std::ostream&) const;
1902
+ virtual TwowayOnlyException* ice_clone() const;
1903
+ virtual void ice_throw() const;
1904
+
1905
+ ::std::string operation;
1906
+ };
1907
+
1908
+ class ICE_API CloneNotImplementedException : public ::Ice::LocalException
1909
+ {
1910
+ public:
1911
+
1912
+ CloneNotImplementedException(const char*, int);
1913
+ virtual ~CloneNotImplementedException() throw();
1914
+
1915
+ virtual ::std::string ice_id() const;
1916
+ virtual void ice_print(::std::ostream&) const;
1917
+ virtual CloneNotImplementedException* ice_clone() const;
1918
+ virtual void ice_throw() const;
1919
+ };
1920
+
1921
+ class ICE_API UnknownException : public ::Ice::LocalException
1922
+ {
1923
+ public:
1924
+
1925
+ UnknownException(const char*, int);
1926
+ UnknownException(const char*, int, const ::std::string&);
1927
+ virtual ~UnknownException() throw();
1928
+
1929
+ virtual ::std::string ice_id() const;
1930
+ virtual void ice_print(::std::ostream&) const;
1931
+ virtual UnknownException* ice_clone() const;
1932
+ virtual void ice_throw() const;
1933
+
1934
+ ::std::string unknown;
1935
+ };
1936
+
1937
+ class ICE_API UnknownLocalException : public ::Ice::UnknownException
1938
+ {
1939
+ public:
1940
+
1941
+ UnknownLocalException(const char*, int);
1942
+ UnknownLocalException(const char*, int, const ::std::string&);
1943
+ virtual ~UnknownLocalException() throw();
1944
+
1945
+ virtual ::std::string ice_id() const;
1946
+ virtual void ice_print(::std::ostream&) const;
1947
+ virtual UnknownLocalException* ice_clone() const;
1948
+ virtual void ice_throw() const;
1949
+ };
1950
+
1951
+ class ICE_API UnknownUserException : public ::Ice::UnknownException
1952
+ {
1953
+ public:
1954
+
1955
+ UnknownUserException(const char*, int);
1956
+ UnknownUserException(const char*, int, const ::std::string&);
1957
+ virtual ~UnknownUserException() throw();
1958
+
1959
+ virtual ::std::string ice_id() const;
1960
+ virtual void ice_print(::std::ostream&) const;
1961
+ virtual UnknownUserException* ice_clone() const;
1962
+ virtual void ice_throw() const;
1963
+ };
1964
+
1965
+ class ICE_API VersionMismatchException : public ::Ice::LocalException
1966
+ {
1967
+ public:
1968
+
1969
+ VersionMismatchException(const char*, int);
1970
+ virtual ~VersionMismatchException() throw();
1971
+
1972
+ virtual ::std::string ice_id() const;
1973
+ virtual void ice_print(::std::ostream&) const;
1974
+ virtual VersionMismatchException* ice_clone() const;
1975
+ virtual void ice_throw() const;
1976
+ };
1977
+
1978
+ class ICE_API CommunicatorDestroyedException : public ::Ice::LocalException
1979
+ {
1980
+ public:
1981
+
1982
+ CommunicatorDestroyedException(const char*, int);
1983
+ virtual ~CommunicatorDestroyedException() throw();
1984
+
1985
+ virtual ::std::string ice_id() const;
1986
+ virtual void ice_print(::std::ostream&) const;
1987
+ virtual CommunicatorDestroyedException* ice_clone() const;
1988
+ virtual void ice_throw() const;
1989
+ };
1990
+
1991
+ class ICE_API ObjectAdapterDeactivatedException : public ::Ice::LocalException
1992
+ {
1993
+ public:
1994
+
1995
+ ObjectAdapterDeactivatedException(const char*, int);
1996
+ ObjectAdapterDeactivatedException(const char*, int, const ::std::string&);
1997
+ virtual ~ObjectAdapterDeactivatedException() throw();
1998
+
1999
+ virtual ::std::string ice_id() const;
2000
+ virtual void ice_print(::std::ostream&) const;
2001
+ virtual ObjectAdapterDeactivatedException* ice_clone() const;
2002
+ virtual void ice_throw() const;
2003
+
2004
+ ::std::string name;
2005
+ };
2006
+
2007
+ class ICE_API ObjectAdapterIdInUseException : public ::Ice::LocalException
2008
+ {
2009
+ public:
2010
+
2011
+ ObjectAdapterIdInUseException(const char*, int);
2012
+ ObjectAdapterIdInUseException(const char*, int, const ::std::string&);
2013
+ virtual ~ObjectAdapterIdInUseException() throw();
2014
+
2015
+ virtual ::std::string ice_id() const;
2016
+ virtual void ice_print(::std::ostream&) const;
2017
+ virtual ObjectAdapterIdInUseException* ice_clone() const;
2018
+ virtual void ice_throw() const;
2019
+
2020
+ ::std::string id;
2021
+ };
2022
+
2023
+ class ICE_API NoEndpointException : public ::Ice::LocalException
2024
+ {
2025
+ public:
2026
+
2027
+ NoEndpointException(const char*, int);
2028
+ NoEndpointException(const char*, int, const ::std::string&);
2029
+ virtual ~NoEndpointException() throw();
2030
+
2031
+ virtual ::std::string ice_id() const;
2032
+ virtual void ice_print(::std::ostream&) const;
2033
+ virtual NoEndpointException* ice_clone() const;
2034
+ virtual void ice_throw() const;
2035
+
2036
+ ::std::string proxy;
2037
+ };
2038
+
2039
+ class ICE_API EndpointParseException : public ::Ice::LocalException
2040
+ {
2041
+ public:
2042
+
2043
+ EndpointParseException(const char*, int);
2044
+ EndpointParseException(const char*, int, const ::std::string&);
2045
+ virtual ~EndpointParseException() throw();
2046
+
2047
+ virtual ::std::string ice_id() const;
2048
+ virtual void ice_print(::std::ostream&) const;
2049
+ virtual EndpointParseException* ice_clone() const;
2050
+ virtual void ice_throw() const;
2051
+
2052
+ ::std::string str;
2053
+ };
2054
+
2055
+ class ICE_API EndpointSelectionTypeParseException : public ::Ice::LocalException
2056
+ {
2057
+ public:
2058
+
2059
+ EndpointSelectionTypeParseException(const char*, int);
2060
+ EndpointSelectionTypeParseException(const char*, int, const ::std::string&);
2061
+ virtual ~EndpointSelectionTypeParseException() throw();
2062
+
2063
+ virtual ::std::string ice_id() const;
2064
+ virtual void ice_print(::std::ostream&) const;
2065
+ virtual EndpointSelectionTypeParseException* ice_clone() const;
2066
+ virtual void ice_throw() const;
2067
+
2068
+ ::std::string str;
2069
+ };
2070
+
2071
+ class ICE_API VersionParseException : public ::Ice::LocalException
2072
+ {
2073
+ public:
2074
+
2075
+ VersionParseException(const char*, int);
2076
+ VersionParseException(const char*, int, const ::std::string&);
2077
+ virtual ~VersionParseException() throw();
2078
+
2079
+ virtual ::std::string ice_id() const;
2080
+ virtual void ice_print(::std::ostream&) const;
2081
+ virtual VersionParseException* ice_clone() const;
2082
+ virtual void ice_throw() const;
2083
+
2084
+ ::std::string str;
2085
+ };
2086
+
2087
+ class ICE_API IdentityParseException : public ::Ice::LocalException
2088
+ {
2089
+ public:
2090
+
2091
+ IdentityParseException(const char*, int);
2092
+ IdentityParseException(const char*, int, const ::std::string&);
2093
+ virtual ~IdentityParseException() throw();
2094
+
2095
+ virtual ::std::string ice_id() const;
2096
+ virtual void ice_print(::std::ostream&) const;
2097
+ virtual IdentityParseException* ice_clone() const;
2098
+ virtual void ice_throw() const;
2099
+
2100
+ ::std::string str;
2101
+ };
2102
+
2103
+ class ICE_API ProxyParseException : public ::Ice::LocalException
2104
+ {
2105
+ public:
2106
+
2107
+ ProxyParseException(const char*, int);
2108
+ ProxyParseException(const char*, int, const ::std::string&);
2109
+ virtual ~ProxyParseException() throw();
2110
+
2111
+ virtual ::std::string ice_id() const;
2112
+ virtual void ice_print(::std::ostream&) const;
2113
+ virtual ProxyParseException* ice_clone() const;
2114
+ virtual void ice_throw() const;
2115
+
2116
+ ::std::string str;
2117
+ };
2118
+
2119
+ class ICE_API IllegalIdentityException : public ::Ice::LocalException
2120
+ {
2121
+ public:
2122
+
2123
+ IllegalIdentityException(const char*, int);
2124
+ IllegalIdentityException(const char*, int, const ::Ice::Identity&);
2125
+ virtual ~IllegalIdentityException() throw();
2126
+
2127
+ virtual ::std::string ice_id() const;
2128
+ virtual void ice_print(::std::ostream&) const;
2129
+ virtual IllegalIdentityException* ice_clone() const;
2130
+ virtual void ice_throw() const;
2131
+
2132
+ ::Ice::Identity id;
2133
+ };
2134
+
2135
+ class ICE_API IllegalServantException : public ::Ice::LocalException
2136
+ {
2137
+ public:
2138
+
2139
+ IllegalServantException(const char*, int);
2140
+ IllegalServantException(const char*, int, const ::std::string&);
2141
+ virtual ~IllegalServantException() throw();
2142
+
2143
+ virtual ::std::string ice_id() const;
2144
+ virtual void ice_print(::std::ostream&) const;
2145
+ virtual IllegalServantException* ice_clone() const;
2146
+ virtual void ice_throw() const;
2147
+
2148
+ ::std::string reason;
2149
+ };
2150
+
2151
+ class ICE_API RequestFailedException : public ::Ice::LocalException
2152
+ {
2153
+ public:
2154
+
2155
+ RequestFailedException(const char*, int);
2156
+ RequestFailedException(const char*, int, const ::Ice::Identity&, const ::std::string&, const ::std::string&);
2157
+ virtual ~RequestFailedException() throw();
2158
+
2159
+ virtual ::std::string ice_id() const;
2160
+ virtual void ice_print(::std::ostream&) const;
2161
+ virtual RequestFailedException* ice_clone() const;
2162
+ virtual void ice_throw() const;
2163
+
2164
+ ::Ice::Identity id;
2165
+ ::std::string facet;
2166
+ ::std::string operation;
2167
+ };
2168
+
2169
+ class ICE_API ObjectNotExistException : public ::Ice::RequestFailedException
2170
+ {
2171
+ public:
2172
+
2173
+ ObjectNotExistException(const char*, int);
2174
+ ObjectNotExistException(const char*, int, const ::Ice::Identity&, const ::std::string&, const ::std::string&);
2175
+ virtual ~ObjectNotExistException() throw();
2176
+
2177
+ virtual ::std::string ice_id() const;
2178
+ virtual void ice_print(::std::ostream&) const;
2179
+ virtual ObjectNotExistException* ice_clone() const;
2180
+ virtual void ice_throw() const;
2181
+ };
2182
+
2183
+ class ICE_API FacetNotExistException : public ::Ice::RequestFailedException
2184
+ {
2185
+ public:
2186
+
2187
+ FacetNotExistException(const char*, int);
2188
+ FacetNotExistException(const char*, int, const ::Ice::Identity&, const ::std::string&, const ::std::string&);
2189
+ virtual ~FacetNotExistException() throw();
2190
+
2191
+ virtual ::std::string ice_id() const;
2192
+ virtual void ice_print(::std::ostream&) const;
2193
+ virtual FacetNotExistException* ice_clone() const;
2194
+ virtual void ice_throw() const;
2195
+ };
2196
+
2197
+ class ICE_API OperationNotExistException : public ::Ice::RequestFailedException
2198
+ {
2199
+ public:
2200
+
2201
+ OperationNotExistException(const char*, int);
2202
+ OperationNotExistException(const char*, int, const ::Ice::Identity&, const ::std::string&, const ::std::string&);
2203
+ virtual ~OperationNotExistException() throw();
2204
+
2205
+ virtual ::std::string ice_id() const;
2206
+ virtual void ice_print(::std::ostream&) const;
2207
+ virtual OperationNotExistException* ice_clone() const;
2208
+ virtual void ice_throw() const;
2209
+ };
2210
+
2211
+ class ICE_API SyscallException : public ::Ice::LocalException
2212
+ {
2213
+ public:
2214
+
2215
+ SyscallException(const char*, int);
2216
+ SyscallException(const char*, int, ::Ice::Int);
2217
+ virtual ~SyscallException() throw();
2218
+
2219
+ virtual ::std::string ice_id() const;
2220
+ virtual void ice_print(::std::ostream&) const;
2221
+ virtual SyscallException* ice_clone() const;
2222
+ virtual void ice_throw() const;
2223
+
2224
+ ::Ice::Int error;
2225
+ };
2226
+
2227
+ class ICE_API SocketException : public ::Ice::SyscallException
2228
+ {
2229
+ public:
2230
+
2231
+ SocketException(const char*, int);
2232
+ SocketException(const char*, int, ::Ice::Int);
2233
+ virtual ~SocketException() throw();
2234
+
2235
+ virtual ::std::string ice_id() const;
2236
+ virtual void ice_print(::std::ostream&) const;
2237
+ virtual SocketException* ice_clone() const;
2238
+ virtual void ice_throw() const;
2239
+ };
2240
+
2241
+ class ICE_API CFNetworkException : public ::Ice::SocketException
2242
+ {
2243
+ public:
2244
+
2245
+ CFNetworkException(const char*, int);
2246
+ CFNetworkException(const char*, int, ::Ice::Int, const ::std::string&);
2247
+ virtual ~CFNetworkException() throw();
2248
+
2249
+ virtual ::std::string ice_id() const;
2250
+ virtual void ice_print(::std::ostream&) const;
2251
+ virtual CFNetworkException* ice_clone() const;
2252
+ virtual void ice_throw() const;
2253
+
2254
+ ::std::string domain;
2255
+ };
2256
+
2257
+ class ICE_API FileException : public ::Ice::SyscallException
2258
+ {
2259
+ public:
2260
+
2261
+ FileException(const char*, int);
2262
+ FileException(const char*, int, ::Ice::Int, const ::std::string&);
2263
+ virtual ~FileException() throw();
2264
+
2265
+ virtual ::std::string ice_id() const;
2266
+ virtual void ice_print(::std::ostream&) const;
2267
+ virtual FileException* ice_clone() const;
2268
+ virtual void ice_throw() const;
2269
+
2270
+ ::std::string path;
2271
+ };
2272
+
2273
+ class ICE_API ConnectFailedException : public ::Ice::SocketException
2274
+ {
2275
+ public:
2276
+
2277
+ ConnectFailedException(const char*, int);
2278
+ ConnectFailedException(const char*, int, ::Ice::Int);
2279
+ virtual ~ConnectFailedException() throw();
2280
+
2281
+ virtual ::std::string ice_id() const;
2282
+ virtual void ice_print(::std::ostream&) const;
2283
+ virtual ConnectFailedException* ice_clone() const;
2284
+ virtual void ice_throw() const;
2285
+ };
2286
+
2287
+ class ICE_API ConnectionRefusedException : public ::Ice::ConnectFailedException
2288
+ {
2289
+ public:
2290
+
2291
+ ConnectionRefusedException(const char*, int);
2292
+ ConnectionRefusedException(const char*, int, ::Ice::Int);
2293
+ virtual ~ConnectionRefusedException() throw();
2294
+
2295
+ virtual ::std::string ice_id() const;
2296
+ virtual void ice_print(::std::ostream&) const;
2297
+ virtual ConnectionRefusedException* ice_clone() const;
2298
+ virtual void ice_throw() const;
2299
+ };
2300
+
2301
+ class ICE_API ConnectionLostException : public ::Ice::SocketException
2302
+ {
2303
+ public:
2304
+
2305
+ ConnectionLostException(const char*, int);
2306
+ ConnectionLostException(const char*, int, ::Ice::Int);
2307
+ virtual ~ConnectionLostException() throw();
2308
+
2309
+ virtual ::std::string ice_id() const;
2310
+ virtual void ice_print(::std::ostream&) const;
2311
+ virtual ConnectionLostException* ice_clone() const;
2312
+ virtual void ice_throw() const;
2313
+ };
2314
+
2315
+ class ICE_API DNSException : public ::Ice::LocalException
2316
+ {
2317
+ public:
2318
+
2319
+ DNSException(const char*, int);
2320
+ DNSException(const char*, int, ::Ice::Int, const ::std::string&);
2321
+ virtual ~DNSException() throw();
2322
+
2323
+ virtual ::std::string ice_id() const;
2324
+ virtual void ice_print(::std::ostream&) const;
2325
+ virtual DNSException* ice_clone() const;
2326
+ virtual void ice_throw() const;
2327
+
2328
+ ::Ice::Int error;
2329
+ ::std::string host;
2330
+ };
2331
+
2332
+ class ICE_API OperationInterruptedException : public ::Ice::LocalException
2333
+ {
2334
+ public:
2335
+
2336
+ OperationInterruptedException(const char*, int);
2337
+ virtual ~OperationInterruptedException() throw();
2338
+
2339
+ virtual ::std::string ice_id() const;
2340
+ virtual void ice_print(::std::ostream&) const;
2341
+ virtual OperationInterruptedException* ice_clone() const;
2342
+ virtual void ice_throw() const;
2343
+ };
2344
+
2345
+ class ICE_API TimeoutException : public ::Ice::LocalException
2346
+ {
2347
+ public:
2348
+
2349
+ TimeoutException(const char*, int);
2350
+ virtual ~TimeoutException() throw();
2351
+
2352
+ virtual ::std::string ice_id() const;
2353
+ virtual void ice_print(::std::ostream&) const;
2354
+ virtual TimeoutException* ice_clone() const;
2355
+ virtual void ice_throw() const;
2356
+ };
2357
+
2358
+ class ICE_API ConnectTimeoutException : public ::Ice::TimeoutException
2359
+ {
2360
+ public:
2361
+
2362
+ ConnectTimeoutException(const char*, int);
2363
+ virtual ~ConnectTimeoutException() throw();
2364
+
2365
+ virtual ::std::string ice_id() const;
2366
+ virtual void ice_print(::std::ostream&) const;
2367
+ virtual ConnectTimeoutException* ice_clone() const;
2368
+ virtual void ice_throw() const;
2369
+ };
2370
+
2371
+ class ICE_API CloseTimeoutException : public ::Ice::TimeoutException
2372
+ {
2373
+ public:
2374
+
2375
+ CloseTimeoutException(const char*, int);
2376
+ virtual ~CloseTimeoutException() throw();
2377
+
2378
+ virtual ::std::string ice_id() const;
2379
+ virtual void ice_print(::std::ostream&) const;
2380
+ virtual CloseTimeoutException* ice_clone() const;
2381
+ virtual void ice_throw() const;
2382
+ };
2383
+
2384
+ class ICE_API ConnectionTimeoutException : public ::Ice::TimeoutException
2385
+ {
2386
+ public:
2387
+
2388
+ ConnectionTimeoutException(const char*, int);
2389
+ virtual ~ConnectionTimeoutException() throw();
2390
+
2391
+ virtual ::std::string ice_id() const;
2392
+ virtual void ice_print(::std::ostream&) const;
2393
+ virtual ConnectionTimeoutException* ice_clone() const;
2394
+ virtual void ice_throw() const;
2395
+ };
2396
+
2397
+ class ICE_API InvocationTimeoutException : public ::Ice::TimeoutException
2398
+ {
2399
+ public:
2400
+
2401
+ InvocationTimeoutException(const char*, int);
2402
+ virtual ~InvocationTimeoutException() throw();
2403
+
2404
+ virtual ::std::string ice_id() const;
2405
+ virtual void ice_print(::std::ostream&) const;
2406
+ virtual InvocationTimeoutException* ice_clone() const;
2407
+ virtual void ice_throw() const;
2408
+ };
2409
+
2410
+ class ICE_API InvocationCanceledException : public ::Ice::LocalException
2411
+ {
2412
+ public:
2413
+
2414
+ InvocationCanceledException(const char*, int);
2415
+ virtual ~InvocationCanceledException() throw();
2416
+
2417
+ virtual ::std::string ice_id() const;
2418
+ virtual void ice_print(::std::ostream&) const;
2419
+ virtual InvocationCanceledException* ice_clone() const;
2420
+ virtual void ice_throw() const;
2421
+ };
2422
+
2423
+ class ICE_API ProtocolException : public ::Ice::LocalException
2424
+ {
2425
+ public:
2426
+
2427
+ ProtocolException(const char*, int);
2428
+ ProtocolException(const char*, int, const ::std::string&);
2429
+ virtual ~ProtocolException() throw();
2430
+
2431
+ virtual ::std::string ice_id() const;
2432
+ virtual void ice_print(::std::ostream&) const;
2433
+ virtual ProtocolException* ice_clone() const;
2434
+ virtual void ice_throw() const;
2435
+
2436
+ ::std::string reason;
2437
+ };
2438
+
2439
+ class ICE_API BadMagicException : public ::Ice::ProtocolException
2440
+ {
2441
+ public:
2442
+
2443
+ BadMagicException(const char*, int);
2444
+ BadMagicException(const char*, int, const ::std::string&, const ::Ice::ByteSeq&);
2445
+ virtual ~BadMagicException() throw();
2446
+
2447
+ virtual ::std::string ice_id() const;
2448
+ virtual void ice_print(::std::ostream&) const;
2449
+ virtual BadMagicException* ice_clone() const;
2450
+ virtual void ice_throw() const;
2451
+
2452
+ ::Ice::ByteSeq badMagic;
2453
+ };
2454
+
2455
+ class ICE_API UnsupportedProtocolException : public ::Ice::ProtocolException
2456
+ {
2457
+ public:
2458
+
2459
+ UnsupportedProtocolException(const char*, int);
2460
+ UnsupportedProtocolException(const char*, int, const ::std::string&, const ::Ice::ProtocolVersion&, const ::Ice::ProtocolVersion&);
2461
+ virtual ~UnsupportedProtocolException() throw();
2462
+
2463
+ virtual ::std::string ice_id() const;
2464
+ virtual void ice_print(::std::ostream&) const;
2465
+ virtual UnsupportedProtocolException* ice_clone() const;
2466
+ virtual void ice_throw() const;
2467
+
2468
+ ::Ice::ProtocolVersion bad;
2469
+ ::Ice::ProtocolVersion supported;
2470
+ };
2471
+
2472
+ class ICE_API UnsupportedEncodingException : public ::Ice::ProtocolException
2473
+ {
2474
+ public:
2475
+
2476
+ UnsupportedEncodingException(const char*, int);
2477
+ UnsupportedEncodingException(const char*, int, const ::std::string&, const ::Ice::EncodingVersion&, const ::Ice::EncodingVersion&);
2478
+ virtual ~UnsupportedEncodingException() throw();
2479
+
2480
+ virtual ::std::string ice_id() const;
2481
+ virtual void ice_print(::std::ostream&) const;
2482
+ virtual UnsupportedEncodingException* ice_clone() const;
2483
+ virtual void ice_throw() const;
2484
+
2485
+ ::Ice::EncodingVersion bad;
2486
+ ::Ice::EncodingVersion supported;
2487
+ };
2488
+
2489
+ class ICE_API UnknownMessageException : public ::Ice::ProtocolException
2490
+ {
2491
+ public:
2492
+
2493
+ UnknownMessageException(const char*, int);
2494
+ UnknownMessageException(const char*, int, const ::std::string&);
2495
+ virtual ~UnknownMessageException() throw();
2496
+
2497
+ virtual ::std::string ice_id() const;
2498
+ virtual void ice_print(::std::ostream&) const;
2499
+ virtual UnknownMessageException* ice_clone() const;
2500
+ virtual void ice_throw() const;
2501
+ };
2502
+
2503
+ class ICE_API ConnectionNotValidatedException : public ::Ice::ProtocolException
2504
+ {
2505
+ public:
2506
+
2507
+ ConnectionNotValidatedException(const char*, int);
2508
+ ConnectionNotValidatedException(const char*, int, const ::std::string&);
2509
+ virtual ~ConnectionNotValidatedException() throw();
2510
+
2511
+ virtual ::std::string ice_id() const;
2512
+ virtual void ice_print(::std::ostream&) const;
2513
+ virtual ConnectionNotValidatedException* ice_clone() const;
2514
+ virtual void ice_throw() const;
2515
+ };
2516
+
2517
+ class ICE_API UnknownRequestIdException : public ::Ice::ProtocolException
2518
+ {
2519
+ public:
2520
+
2521
+ UnknownRequestIdException(const char*, int);
2522
+ UnknownRequestIdException(const char*, int, const ::std::string&);
2523
+ virtual ~UnknownRequestIdException() throw();
2524
+
2525
+ virtual ::std::string ice_id() const;
2526
+ virtual void ice_print(::std::ostream&) const;
2527
+ virtual UnknownRequestIdException* ice_clone() const;
2528
+ virtual void ice_throw() const;
2529
+ };
2530
+
2531
+ class ICE_API UnknownReplyStatusException : public ::Ice::ProtocolException
2532
+ {
2533
+ public:
2534
+
2535
+ UnknownReplyStatusException(const char*, int);
2536
+ UnknownReplyStatusException(const char*, int, const ::std::string&);
2537
+ virtual ~UnknownReplyStatusException() throw();
2538
+
2539
+ virtual ::std::string ice_id() const;
2540
+ virtual void ice_print(::std::ostream&) const;
2541
+ virtual UnknownReplyStatusException* ice_clone() const;
2542
+ virtual void ice_throw() const;
2543
+ };
2544
+
2545
+ class ICE_API CloseConnectionException : public ::Ice::ProtocolException
2546
+ {
2547
+ public:
2548
+
2549
+ CloseConnectionException(const char*, int);
2550
+ CloseConnectionException(const char*, int, const ::std::string&);
2551
+ virtual ~CloseConnectionException() throw();
2552
+
2553
+ virtual ::std::string ice_id() const;
2554
+ virtual void ice_print(::std::ostream&) const;
2555
+ virtual CloseConnectionException* ice_clone() const;
2556
+ virtual void ice_throw() const;
2557
+ };
2558
+
2559
+ class ICE_API ConnectionManuallyClosedException : public ::Ice::LocalException
2560
+ {
2561
+ public:
2562
+
2563
+ ConnectionManuallyClosedException(const char*, int);
2564
+ ConnectionManuallyClosedException(const char*, int, bool);
2565
+ virtual ~ConnectionManuallyClosedException() throw();
2566
+
2567
+ virtual ::std::string ice_id() const;
2568
+ virtual void ice_print(::std::ostream&) const;
2569
+ virtual ConnectionManuallyClosedException* ice_clone() const;
2570
+ virtual void ice_throw() const;
2571
+
2572
+ bool graceful;
2573
+ };
2574
+
2575
+ class ICE_API IllegalMessageSizeException : public ::Ice::ProtocolException
2576
+ {
2577
+ public:
2578
+
2579
+ IllegalMessageSizeException(const char*, int);
2580
+ IllegalMessageSizeException(const char*, int, const ::std::string&);
2581
+ virtual ~IllegalMessageSizeException() throw();
2582
+
2583
+ virtual ::std::string ice_id() const;
2584
+ virtual void ice_print(::std::ostream&) const;
2585
+ virtual IllegalMessageSizeException* ice_clone() const;
2586
+ virtual void ice_throw() const;
2587
+ };
2588
+
2589
+ class ICE_API CompressionException : public ::Ice::ProtocolException
2590
+ {
2591
+ public:
2592
+
2593
+ CompressionException(const char*, int);
2594
+ CompressionException(const char*, int, const ::std::string&);
2595
+ virtual ~CompressionException() throw();
2596
+
2597
+ virtual ::std::string ice_id() const;
2598
+ virtual void ice_print(::std::ostream&) const;
2599
+ virtual CompressionException* ice_clone() const;
2600
+ virtual void ice_throw() const;
2601
+ };
2602
+
2603
+ class ICE_API DatagramLimitException : public ::Ice::ProtocolException
2604
+ {
2605
+ public:
2606
+
2607
+ DatagramLimitException(const char*, int);
2608
+ DatagramLimitException(const char*, int, const ::std::string&);
2609
+ virtual ~DatagramLimitException() throw();
2610
+
2611
+ virtual ::std::string ice_id() const;
2612
+ virtual void ice_print(::std::ostream&) const;
2613
+ virtual DatagramLimitException* ice_clone() const;
2614
+ virtual void ice_throw() const;
2615
+ };
2616
+
2617
+ class ICE_API MarshalException : public ::Ice::ProtocolException
2618
+ {
2619
+ public:
2620
+
2621
+ MarshalException(const char*, int);
2622
+ MarshalException(const char*, int, const ::std::string&);
2623
+ virtual ~MarshalException() throw();
2624
+
2625
+ virtual ::std::string ice_id() const;
2626
+ virtual void ice_print(::std::ostream&) const;
2627
+ virtual MarshalException* ice_clone() const;
2628
+ virtual void ice_throw() const;
2629
+ };
2630
+
2631
+ class ICE_API ProxyUnmarshalException : public ::Ice::MarshalException
2632
+ {
2633
+ public:
2634
+
2635
+ ProxyUnmarshalException(const char*, int);
2636
+ ProxyUnmarshalException(const char*, int, const ::std::string&);
2637
+ virtual ~ProxyUnmarshalException() throw();
2638
+
2639
+ virtual ::std::string ice_id() const;
2640
+ virtual void ice_print(::std::ostream&) const;
2641
+ virtual ProxyUnmarshalException* ice_clone() const;
2642
+ virtual void ice_throw() const;
2643
+ };
2644
+
2645
+ class ICE_API UnmarshalOutOfBoundsException : public ::Ice::MarshalException
2646
+ {
2647
+ public:
2648
+
2649
+ UnmarshalOutOfBoundsException(const char*, int);
2650
+ UnmarshalOutOfBoundsException(const char*, int, const ::std::string&);
2651
+ virtual ~UnmarshalOutOfBoundsException() throw();
2652
+
2653
+ virtual ::std::string ice_id() const;
2654
+ virtual void ice_print(::std::ostream&) const;
2655
+ virtual UnmarshalOutOfBoundsException* ice_clone() const;
2656
+ virtual void ice_throw() const;
2657
+ };
2658
+
2659
+ class ICE_API NoValueFactoryException : public ::Ice::MarshalException
2660
+ {
2661
+ public:
2662
+
2663
+ NoValueFactoryException(const char*, int);
2664
+ NoValueFactoryException(const char*, int, const ::std::string&, const ::std::string&);
2665
+ virtual ~NoValueFactoryException() throw();
2666
+
2667
+ virtual ::std::string ice_id() const;
2668
+ virtual void ice_print(::std::ostream&) const;
2669
+ virtual NoValueFactoryException* ice_clone() const;
2670
+ virtual void ice_throw() const;
2671
+
2672
+ ::std::string type;
2673
+ };
2674
+
2675
+ class ICE_API UnexpectedObjectException : public ::Ice::MarshalException
2676
+ {
2677
+ public:
2678
+
2679
+ UnexpectedObjectException(const char*, int);
2680
+ UnexpectedObjectException(const char*, int, const ::std::string&, const ::std::string&, const ::std::string&);
2681
+ virtual ~UnexpectedObjectException() throw();
2682
+
2683
+ virtual ::std::string ice_id() const;
2684
+ virtual void ice_print(::std::ostream&) const;
2685
+ virtual UnexpectedObjectException* ice_clone() const;
2686
+ virtual void ice_throw() const;
2687
+
2688
+ ::std::string type;
2689
+ ::std::string expectedType;
2690
+ };
2691
+
2692
+ class ICE_API MemoryLimitException : public ::Ice::MarshalException
2693
+ {
2694
+ public:
2695
+
2696
+ MemoryLimitException(const char*, int);
2697
+ MemoryLimitException(const char*, int, const ::std::string&);
2698
+ virtual ~MemoryLimitException() throw();
2699
+
2700
+ virtual ::std::string ice_id() const;
2701
+ virtual void ice_print(::std::ostream&) const;
2702
+ virtual MemoryLimitException* ice_clone() const;
2703
+ virtual void ice_throw() const;
2704
+ };
2705
+
2706
+ class ICE_API StringConversionException : public ::Ice::MarshalException
2707
+ {
2708
+ public:
2709
+
2710
+ StringConversionException(const char*, int);
2711
+ StringConversionException(const char*, int, const ::std::string&);
2712
+ virtual ~StringConversionException() throw();
2713
+
2714
+ virtual ::std::string ice_id() const;
2715
+ virtual void ice_print(::std::ostream&) const;
2716
+ virtual StringConversionException* ice_clone() const;
2717
+ virtual void ice_throw() const;
2718
+ };
2719
+
2720
+ class ICE_API EncapsulationException : public ::Ice::MarshalException
2721
+ {
2722
+ public:
2723
+
2724
+ EncapsulationException(const char*, int);
2725
+ EncapsulationException(const char*, int, const ::std::string&);
2726
+ virtual ~EncapsulationException() throw();
2727
+
2728
+ virtual ::std::string ice_id() const;
2729
+ virtual void ice_print(::std::ostream&) const;
2730
+ virtual EncapsulationException* ice_clone() const;
2731
+ virtual void ice_throw() const;
2732
+ };
2733
+
2734
+ class ICE_API FeatureNotSupportedException : public ::Ice::LocalException
2735
+ {
2736
+ public:
2737
+
2738
+ FeatureNotSupportedException(const char*, int);
2739
+ FeatureNotSupportedException(const char*, int, const ::std::string&);
2740
+ virtual ~FeatureNotSupportedException() throw();
2741
+
2742
+ virtual ::std::string ice_id() const;
2743
+ virtual void ice_print(::std::ostream&) const;
2744
+ virtual FeatureNotSupportedException* ice_clone() const;
2745
+ virtual void ice_throw() const;
2746
+
2747
+ ::std::string unsupportedFeature;
2748
+ };
2749
+
2750
+ class ICE_API SecurityException : public ::Ice::LocalException
2751
+ {
2752
+ public:
2753
+
2754
+ SecurityException(const char*, int);
2755
+ SecurityException(const char*, int, const ::std::string&);
2756
+ virtual ~SecurityException() throw();
2757
+
2758
+ virtual ::std::string ice_id() const;
2759
+ virtual void ice_print(::std::ostream&) const;
2760
+ virtual SecurityException* ice_clone() const;
2761
+ virtual void ice_throw() const;
2762
+
2763
+ ::std::string reason;
2764
+ };
2765
+
2766
+ class ICE_API FixedProxyException : public ::Ice::LocalException
2767
+ {
2768
+ public:
2769
+
2770
+ FixedProxyException(const char*, int);
2771
+ virtual ~FixedProxyException() throw();
2772
+
2773
+ virtual ::std::string ice_id() const;
2774
+ virtual void ice_print(::std::ostream&) const;
2775
+ virtual FixedProxyException* ice_clone() const;
2776
+ virtual void ice_throw() const;
2777
+ };
2778
+
2779
+ class ICE_API ResponseSentException : public ::Ice::LocalException
2780
+ {
2781
+ public:
2782
+
2783
+ ResponseSentException(const char*, int);
2784
+ virtual ~ResponseSentException() throw();
2785
+
2786
+ virtual ::std::string ice_id() const;
2787
+ virtual void ice_print(::std::ostream&) const;
2788
+ virtual ResponseSentException* ice_clone() const;
2789
+ virtual void ice_throw() const;
2790
+ };
2791
+
2792
+ }
2793
+
2794
+ namespace Ice
2795
+ {
2796
+
2797
+ }
2798
+
2799
+ #endif
2800
+
2801
+ #include <IceUtil/PopDisableWarnings.h>
2802
+ #endif