zeroc-ice 3.6.5 → 3.7.0

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