zeroc-ice 3.6.5 → 3.7.4

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