zeroc-ice 3.6.5 → 3.7.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (777) hide show
  1. checksums.yaml +5 -5
  2. data/ICE_LICENSE +17 -17
  3. data/LICENSE +12 -12
  4. data/bin/slice2rb +1 -6
  5. data/ext/Communicator.cpp +223 -61
  6. data/ext/Communicator.h +1 -6
  7. data/ext/Config.h +23 -7
  8. data/ext/Connection.cpp +108 -76
  9. data/ext/Connection.h +4 -6
  10. data/ext/Endpoint.cpp +16 -54
  11. data/ext/Endpoint.h +1 -6
  12. data/ext/ImplicitContext.cpp +1 -10
  13. data/ext/ImplicitContext.h +1 -6
  14. data/ext/Init.cpp +4 -6
  15. data/ext/Logger.cpp +1 -6
  16. data/ext/Logger.h +1 -6
  17. data/ext/Operation.cpp +38 -54
  18. data/ext/Operation.h +1 -6
  19. data/ext/Properties.cpp +3 -8
  20. data/ext/Properties.h +1 -6
  21. data/ext/Proxy.cpp +111 -70
  22. data/ext/Proxy.h +1 -6
  23. data/ext/Slice.cpp +5 -20
  24. data/ext/Slice.h +1 -6
  25. data/ext/Types.cpp +313 -224
  26. data/ext/Types.h +118 -71
  27. data/ext/Util.cpp +69 -36
  28. data/ext/Util.h +117 -42
  29. data/ext/ValueFactoryManager.cpp +440 -0
  30. data/ext/ValueFactoryManager.h +95 -0
  31. data/ext/extconf.rb +52 -48
  32. data/ext/ice/cpp/include/Ice/Application.h +275 -105
  33. data/ext/ice/cpp/include/Ice/AsyncResult.h +124 -337
  34. data/ext/ice/cpp/include/Ice/AsyncResultF.h +4 -7
  35. data/ext/ice/cpp/include/Ice/BatchRequestInterceptor.h +39 -16
  36. data/ext/ice/cpp/include/Ice/BatchRequestQueueF.h +1 -6
  37. data/ext/ice/cpp/include/Ice/Buffer.h +10 -15
  38. data/ext/ice/cpp/include/Ice/CommunicatorAsync.h +56 -17
  39. data/ext/ice/cpp/include/Ice/Comparable.h +205 -0
  40. data/ext/ice/cpp/include/Ice/Config.h +16 -39
  41. data/ext/ice/cpp/include/Ice/ConnectionAsync.h +203 -16
  42. data/ext/ice/cpp/include/Ice/ConnectionIF.h +7 -6
  43. data/ext/ice/cpp/include/Ice/ConsoleUtil.h +23 -0
  44. data/ext/ice/cpp/include/Ice/DefaultValueFactory.h +57 -0
  45. data/ext/ice/cpp/include/Ice/DispatchInterceptor.h +20 -12
  46. data/ext/ice/cpp/include/Ice/Dispatcher.h +35 -19
  47. data/ext/ice/cpp/include/Ice/DynamicLibrary.h +7 -10
  48. data/ext/ice/cpp/include/Ice/DynamicLibraryF.h +1 -6
  49. data/ext/ice/cpp/include/Ice/Exception.h +110 -63
  50. data/ext/ice/cpp/include/Ice/ExceptionHelpers.h +74 -0
  51. data/ext/ice/cpp/include/Ice/FactoryTable.h +22 -18
  52. data/ext/ice/cpp/include/Ice/FactoryTableInit.h +28 -31
  53. data/ext/ice/cpp/include/Ice/Format.h +17 -18
  54. data/ext/ice/cpp/include/Ice/Functional.h +38 -38
  55. data/ext/ice/cpp/include/Ice/GCObject.h +9 -10
  56. data/ext/ice/cpp/include/Ice/Handle.h +6 -16
  57. data/ext/ice/cpp/include/Ice/Ice.h +9 -10
  58. data/ext/ice/cpp/include/Ice/IconvStringConverter.h +377 -0
  59. data/ext/ice/cpp/include/Ice/Incoming.h +132 -38
  60. data/ext/ice/cpp/include/Ice/IncomingAsync.h +109 -31
  61. data/ext/ice/cpp/include/Ice/IncomingAsyncF.h +7 -6
  62. data/ext/ice/cpp/include/Ice/Initialize.h +872 -60
  63. data/ext/ice/cpp/include/Ice/InputStream.h +1514 -0
  64. data/ext/ice/cpp/include/Ice/InstanceF.h +1 -7
  65. data/ext/ice/cpp/include/Ice/InterfaceByValue.h +57 -0
  66. data/ext/ice/cpp/include/Ice/LocalObject.h +13 -14
  67. data/ext/ice/cpp/include/Ice/LocalObjectF.h +1 -6
  68. data/ext/ice/cpp/include/Ice/LoggerUtil.h +56 -24
  69. data/ext/ice/cpp/include/Ice/MetricsAdminI.h +124 -71
  70. data/ext/ice/cpp/include/Ice/MetricsFunctional.h +25 -10
  71. data/ext/ice/cpp/include/Ice/MetricsObserverI.h +116 -32
  72. data/ext/ice/cpp/include/Ice/NativePropertiesAdmin.h +61 -30
  73. data/ext/ice/cpp/include/Ice/Object.h +413 -78
  74. data/ext/ice/cpp/include/Ice/ObjectF.h +12 -8
  75. data/ext/ice/cpp/include/Ice/ObserverHelper.h +18 -13
  76. data/ext/ice/cpp/include/Ice/Optional.h +1114 -0
  77. data/ext/ice/cpp/include/Ice/OutgoingAsync.h +684 -89
  78. data/ext/ice/cpp/include/Ice/OutgoingAsyncF.h +12 -11
  79. data/ext/ice/cpp/include/Ice/OutputStream.h +1092 -0
  80. data/ext/ice/cpp/include/Ice/Protocol.h +49 -17
  81. data/ext/ice/cpp/include/Ice/Proxy.h +3438 -745
  82. data/ext/ice/cpp/include/Ice/ProxyF.h +13 -38
  83. data/ext/ice/cpp/include/Ice/ProxyFactoryF.h +1 -6
  84. data/ext/ice/cpp/include/Ice/ProxyHandle.h +43 -55
  85. data/ext/ice/cpp/include/Ice/ReferenceF.h +1 -6
  86. data/ext/ice/cpp/include/Ice/RegisterPlugins.h +84 -12
  87. data/ext/ice/cpp/include/Ice/RequestHandlerF.h +10 -9
  88. data/ext/ice/cpp/include/Ice/ResponseHandlerF.h +6 -6
  89. data/ext/ice/cpp/include/Ice/SHA1.h +42 -0
  90. data/ext/ice/cpp/include/Ice/ServantManagerF.h +1 -6
  91. data/ext/ice/cpp/include/Ice/Service.h +273 -154
  92. data/ext/ice/cpp/include/Ice/SliceChecksums.h +5 -6
  93. data/ext/ice/cpp/include/Ice/SlicedData.h +121 -53
  94. data/ext/ice/cpp/include/Ice/SlicedDataF.h +17 -11
  95. data/ext/ice/cpp/include/Ice/StreamHelpers.h +453 -140
  96. data/ext/ice/cpp/include/Ice/StringConverter.h +78 -0
  97. data/ext/ice/cpp/include/Ice/ThreadPoolF.h +1 -6
  98. data/ext/ice/cpp/include/Ice/UUID.h +19 -0
  99. data/ext/ice/cpp/include/{IceUtil → Ice}/UniquePtr.h +22 -28
  100. data/ext/ice/cpp/include/Ice/UniqueRef.h +97 -0
  101. data/ext/ice/cpp/include/Ice/UserExceptionFactory.h +45 -13
  102. data/ext/ice/cpp/include/Ice/Value.h +139 -0
  103. data/ext/ice/cpp/include/Ice/ValueF.h +21 -0
  104. data/ext/ice/cpp/include/IceSSL/Config.h +8 -28
  105. data/ext/ice/cpp/include/IceSSL/IceSSL.h +17 -11
  106. data/ext/ice/cpp/include/IceSSL/OpenSSL.h +147 -0
  107. data/ext/ice/cpp/include/IceSSL/Plugin.h +461 -448
  108. data/ext/ice/cpp/include/IceSSL/SChannel.h +72 -0
  109. data/ext/ice/cpp/include/IceSSL/SecureTransport.h +72 -0
  110. data/ext/ice/cpp/include/IceSSL/UWP.h +62 -0
  111. data/ext/ice/cpp/include/IceUtil/Atomic.h +7 -14
  112. data/ext/ice/cpp/include/IceUtil/Cond.h +17 -23
  113. data/ext/ice/cpp/include/IceUtil/Config.h +166 -46
  114. data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +92 -0
  115. data/ext/ice/cpp/include/IceUtil/CountDownLatch.h +5 -10
  116. data/ext/ice/cpp/include/IceUtil/CtrlCHandler.h +63 -41
  117. data/ext/ice/cpp/include/IceUtil/DisableWarnings.h +5 -13
  118. data/ext/ice/cpp/include/IceUtil/Exception.h +284 -75
  119. data/ext/ice/cpp/include/IceUtil/FileUtil.h +143 -0
  120. data/ext/ice/cpp/include/IceUtil/Functional.h +4 -6
  121. data/ext/ice/cpp/include/IceUtil/Handle.h +11 -16
  122. data/ext/ice/cpp/include/IceUtil/IceUtil.h +4 -15
  123. data/ext/ice/cpp/include/IceUtil/InputUtil.h +3 -8
  124. data/ext/ice/cpp/include/IceUtil/Iterator.h +2 -7
  125. data/ext/ice/cpp/include/IceUtil/Lock.h +8 -15
  126. data/ext/ice/cpp/include/IceUtil/Monitor.h +1 -7
  127. data/ext/ice/cpp/include/IceUtil/Mutex.h +19 -23
  128. data/ext/ice/cpp/include/IceUtil/MutexProtocol.h +2 -7
  129. data/ext/ice/cpp/include/IceUtil/MutexPtrLock.h +4 -9
  130. data/ext/ice/cpp/include/IceUtil/MutexPtrTryLock.h +4 -9
  131. data/ext/ice/cpp/include/IceUtil/Optional.h +134 -23
  132. data/ext/ice/cpp/include/IceUtil/Options.h +17 -23
  133. data/ext/ice/cpp/include/IceUtil/OutputUtil.h +61 -37
  134. data/ext/ice/cpp/include/IceUtil/PopDisableWarnings.h +6 -11
  135. data/ext/ice/cpp/include/IceUtil/PushDisableWarnings.h +18 -15
  136. data/ext/ice/cpp/include/IceUtil/Random.h +39 -8
  137. data/ext/ice/cpp/include/IceUtil/RecMutex.h +7 -13
  138. data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +53 -0
  139. data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +10 -15
  140. data/ext/ice/cpp/include/IceUtil/ScopedArray.h +8 -7
  141. data/ext/ice/cpp/include/IceUtil/Shared.h +5 -12
  142. data/ext/ice/cpp/{src → include}/IceUtil/StopWatch.h +2 -7
  143. data/ext/ice/cpp/include/IceUtil/StringConverter.h +146 -126
  144. data/ext/ice/cpp/include/IceUtil/StringUtil.h +32 -26
  145. data/ext/ice/cpp/include/IceUtil/Thread.h +10 -17
  146. data/ext/ice/cpp/include/IceUtil/ThreadException.h +33 -47
  147. data/ext/ice/cpp/include/IceUtil/Time.h +3 -8
  148. data/ext/ice/cpp/include/IceUtil/Timer.h +18 -18
  149. data/ext/ice/cpp/include/IceUtil/UUID.h +6 -7
  150. data/ext/ice/cpp/include/IceUtil/UndefSysMacros.h +1 -6
  151. data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +170 -0
  152. data/ext/ice/cpp/include/generated/Ice/Communicator.h +1156 -0
  153. data/ext/ice/cpp/include/{Ice → generated/Ice}/CommunicatorF.h +51 -16
  154. data/ext/ice/cpp/include/generated/Ice/Connection.h +1660 -0
  155. data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +119 -0
  156. data/ext/ice/cpp/include/generated/Ice/Current.h +322 -0
  157. data/ext/ice/cpp/include/generated/Ice/Endpoint.h +943 -0
  158. data/ext/ice/cpp/include/generated/Ice/EndpointF.h +166 -0
  159. data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +118 -0
  160. data/ext/ice/cpp/include/{Ice → generated/Ice}/FacetMap.h +31 -15
  161. data/ext/ice/cpp/include/generated/Ice/Identity.h +264 -0
  162. data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +278 -0
  163. data/ext/ice/cpp/include/{Ice → generated/Ice}/ImplicitContextF.h +51 -16
  164. data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +1143 -0
  165. data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +128 -0
  166. data/ext/ice/cpp/include/generated/Ice/LocalException.h +7041 -0
  167. data/ext/ice/cpp/include/generated/Ice/Locator.h +3850 -0
  168. data/ext/ice/cpp/include/generated/Ice/LocatorF.h +147 -0
  169. data/ext/ice/cpp/include/generated/Ice/Logger.h +231 -0
  170. data/ext/ice/cpp/include/{Ice → generated/Ice}/LoggerF.h +51 -16
  171. data/ext/ice/cpp/include/generated/Ice/Metrics.h +4717 -0
  172. data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +1175 -0
  173. data/ext/ice/cpp/include/{Ice → generated/Ice}/ObjectAdapterF.h +51 -16
  174. data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +197 -0
  175. data/ext/ice/cpp/include/generated/Ice/Plugin.h +306 -0
  176. data/ext/ice/cpp/include/generated/Ice/PluginF.h +110 -0
  177. data/ext/ice/cpp/include/generated/Ice/Process.h +971 -0
  178. data/ext/ice/cpp/include/generated/Ice/ProcessF.h +125 -0
  179. data/ext/ice/cpp/include/generated/Ice/Properties.h +446 -0
  180. data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +1360 -0
  181. data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +134 -0
  182. data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +2689 -0
  183. data/ext/ice/cpp/include/generated/Ice/Router.h +1838 -0
  184. data/ext/ice/cpp/include/generated/Ice/RouterF.h +125 -0
  185. data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +299 -0
  186. data/ext/ice/cpp/include/{Ice → generated/Ice}/ServantLocatorF.h +51 -16
  187. data/ext/ice/cpp/include/{Ice → generated/Ice}/SliceChecksumDict.h +34 -14
  188. data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +318 -0
  189. data/ext/ice/cpp/include/generated/Ice/Version.h +357 -0
  190. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +223 -0
  191. data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +101 -0
  192. data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +181 -0
  193. data/ext/ice/cpp/src/Ice/ACM.cpp +38 -27
  194. data/ext/ice/cpp/src/Ice/ACM.h +9 -7
  195. data/ext/ice/cpp/src/Ice/ACMF.h +30 -0
  196. data/ext/ice/cpp/src/Ice/Acceptor.cpp +6 -6
  197. data/ext/ice/cpp/src/Ice/Acceptor.h +4 -8
  198. data/ext/ice/cpp/src/Ice/AcceptorF.h +1 -6
  199. data/ext/ice/cpp/src/Ice/ArgVector.cpp +59 -0
  200. data/ext/ice/cpp/src/Ice/ArgVector.h +36 -0
  201. data/ext/ice/cpp/src/Ice/AsyncResult.cpp +15 -544
  202. data/ext/ice/cpp/src/Ice/Base64.cpp +22 -28
  203. data/ext/ice/cpp/src/Ice/Base64.h +1 -6
  204. data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +41 -18
  205. data/ext/ice/cpp/src/Ice/BatchRequestQueue.h +15 -15
  206. data/ext/ice/cpp/src/Ice/Buffer.cpp +75 -18
  207. data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +21 -12
  208. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.cpp +86 -197
  209. data/ext/ice/cpp/src/Ice/CollocatedRequestHandler.h +17 -23
  210. data/ext/ice/cpp/src/Ice/Communicator.cpp +43 -15
  211. data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +28 -11
  212. data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +318 -117
  213. data/ext/ice/cpp/src/Ice/CommunicatorI.h +95 -40
  214. data/ext/ice/cpp/src/{IceUtil → Ice}/Cond.cpp +3 -8
  215. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.cpp +55 -122
  216. data/ext/ice/cpp/src/Ice/ConnectRequestHandler.h +15 -31
  217. data/ext/ice/cpp/src/Ice/ConnectRequestHandlerF.h +6 -7
  218. data/ext/ice/cpp/src/Ice/Connection.cpp +111 -20
  219. data/ext/ice/cpp/src/Ice/ConnectionF.cpp +28 -11
  220. data/ext/ice/cpp/src/Ice/ConnectionFactory.cpp +300 -107
  221. data/ext/ice/cpp/src/Ice/ConnectionFactory.h +44 -28
  222. data/ext/ice/cpp/src/Ice/ConnectionFactoryF.h +30 -0
  223. data/ext/ice/cpp/src/Ice/ConnectionI.cpp +785 -713
  224. data/ext/ice/cpp/src/Ice/ConnectionI.h +105 -80
  225. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.cpp +2 -20
  226. data/ext/ice/cpp/src/Ice/ConnectionRequestHandler.h +5 -9
  227. data/ext/ice/cpp/src/Ice/Connector.cpp +6 -6
  228. data/ext/ice/cpp/src/Ice/Connector.h +4 -8
  229. data/ext/ice/cpp/src/Ice/ConnectorF.h +1 -6
  230. data/ext/ice/cpp/src/{IceUtil → Ice}/CountDownLatch.cpp +4 -9
  231. data/ext/ice/cpp/src/Ice/Current.cpp +30 -12
  232. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.cpp +10 -16
  233. data/ext/ice/cpp/src/Ice/DefaultsAndOverrides.h +1 -6
  234. data/ext/ice/cpp/src/Ice/DefaultsAndOverridesF.h +1 -6
  235. data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +13 -25
  236. data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +34 -28
  237. data/ext/ice/cpp/src/Ice/Endpoint.cpp +107 -19
  238. data/ext/ice/cpp/src/Ice/EndpointF.cpp +28 -11
  239. data/ext/ice/cpp/src/Ice/EndpointFactory.cpp +152 -6
  240. data/ext/ice/cpp/src/Ice/EndpointFactory.h +72 -11
  241. data/ext/ice/cpp/src/Ice/EndpointFactoryF.h +1 -6
  242. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.cpp +41 -36
  243. data/ext/ice/cpp/src/Ice/EndpointFactoryManager.h +10 -9
  244. data/ext/ice/cpp/src/Ice/EndpointFactoryManagerF.h +1 -6
  245. data/ext/ice/cpp/src/Ice/EndpointI.cpp +18 -7
  246. data/ext/ice/cpp/src/Ice/EndpointI.h +39 -18
  247. data/ext/ice/cpp/src/Ice/EndpointIF.h +18 -10
  248. data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +19 -12
  249. data/ext/ice/cpp/src/Ice/EventHandler.cpp +6 -9
  250. data/ext/ice/cpp/src/Ice/EventHandler.h +13 -13
  251. data/ext/ice/cpp/src/Ice/EventHandlerF.h +5 -7
  252. data/ext/ice/cpp/src/Ice/Exception.cpp +102 -98
  253. data/ext/ice/cpp/src/Ice/FacetMap.cpp +21 -12
  254. data/ext/ice/cpp/src/Ice/FactoryTable.cpp +37 -33
  255. data/ext/ice/cpp/src/Ice/FactoryTableInit.cpp +2 -9
  256. data/ext/ice/cpp/src/Ice/GCObject.cpp +29 -31
  257. data/ext/ice/cpp/src/Ice/HashUtil.h +3 -9
  258. data/ext/ice/cpp/src/Ice/HttpParser.cpp +1 -7
  259. data/ext/ice/cpp/src/Ice/HttpParser.h +1 -6
  260. data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +128 -111
  261. data/ext/ice/cpp/src/Ice/IPEndpointI.h +23 -19
  262. data/ext/ice/cpp/src/Ice/IPEndpointIF.h +6 -7
  263. data/ext/ice/cpp/src/Ice/IconvStringConverter.cpp +51 -0
  264. data/ext/ice/cpp/src/Ice/Identity.cpp +25 -16
  265. data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +41 -13
  266. data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +28 -11
  267. data/ext/ice/cpp/src/Ice/ImplicitContextI.cpp +11 -28
  268. data/ext/ice/cpp/src/Ice/ImplicitContextI.h +7 -10
  269. data/ext/ice/cpp/src/Ice/Incoming.cpp +284 -255
  270. data/ext/ice/cpp/src/Ice/IncomingAsync.cpp +104 -214
  271. data/ext/ice/cpp/src/Ice/IncomingRequest.h +5 -9
  272. data/ext/ice/cpp/src/Ice/Initialize.cpp +309 -193
  273. data/ext/ice/cpp/src/Ice/InputStream.cpp +2726 -0
  274. data/ext/ice/cpp/src/Ice/Instance.cpp +243 -262
  275. data/ext/ice/cpp/src/Ice/Instance.h +30 -23
  276. data/ext/ice/cpp/src/Ice/Instrumentation.cpp +137 -23
  277. data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +28 -11
  278. data/ext/ice/cpp/src/Ice/InstrumentationI.cpp +118 -105
  279. data/ext/ice/cpp/src/Ice/InstrumentationI.h +30 -36
  280. data/ext/ice/cpp/src/Ice/LocalException.cpp +1191 -422
  281. data/ext/ice/cpp/src/Ice/LocalObject.cpp +1 -7
  282. data/ext/ice/cpp/src/Ice/Locator.cpp +1282 -1222
  283. data/ext/ice/cpp/src/Ice/LocatorF.cpp +30 -12
  284. data/ext/ice/cpp/src/Ice/LocatorInfo.cpp +150 -186
  285. data/ext/ice/cpp/src/Ice/LocatorInfo.h +31 -36
  286. data/ext/ice/cpp/src/Ice/LocatorInfoF.h +1 -6
  287. data/ext/ice/cpp/src/Ice/Logger.cpp +39 -12
  288. data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +182 -88
  289. data/ext/ice/cpp/src/Ice/LoggerAdminI.h +4 -9
  290. data/ext/ice/cpp/src/Ice/LoggerF.cpp +28 -11
  291. data/ext/ice/cpp/src/Ice/LoggerI.cpp +26 -55
  292. data/ext/ice/cpp/src/Ice/LoggerI.h +7 -18
  293. data/ext/ice/cpp/src/Ice/LoggerUtil.cpp +10 -17
  294. data/ext/ice/cpp/src/Ice/Metrics.cpp +1280 -1107
  295. data/ext/ice/cpp/src/Ice/MetricsAdminI.cpp +58 -33
  296. data/ext/ice/cpp/src/Ice/MetricsObserverI.cpp +1 -7
  297. data/ext/ice/cpp/src/Ice/Network.cpp +753 -408
  298. data/ext/ice/cpp/src/Ice/Network.h +99 -36
  299. data/ext/ice/cpp/src/Ice/NetworkF.h +2 -7
  300. data/ext/ice/cpp/src/Ice/NetworkProxy.cpp +20 -19
  301. data/ext/ice/cpp/src/Ice/NetworkProxy.h +5 -7
  302. data/ext/ice/cpp/src/Ice/NetworkProxyF.h +1 -6
  303. data/ext/ice/cpp/src/Ice/OSLogLoggerI.cpp +57 -0
  304. data/ext/ice/cpp/src/Ice/OSLogLoggerI.h +40 -0
  305. data/ext/ice/cpp/src/Ice/Object.cpp +227 -232
  306. data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +45 -13
  307. data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +28 -11
  308. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.cpp +83 -33
  309. data/ext/ice/cpp/src/Ice/ObjectAdapterFactory.h +13 -12
  310. data/ext/ice/cpp/src/Ice/ObjectAdapterFactoryF.h +25 -0
  311. data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +298 -191
  312. data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +44 -39
  313. data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +41 -13
  314. data/ext/ice/cpp/src/Ice/ObserverHelper.cpp +9 -37
  315. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.cpp +67 -67
  316. data/ext/ice/cpp/src/Ice/OpaqueEndpointI.h +15 -11
  317. data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +801 -366
  318. data/ext/ice/cpp/src/Ice/OutputStream.cpp +1367 -0
  319. data/ext/ice/cpp/src/Ice/Plugin.cpp +52 -14
  320. data/ext/ice/cpp/src/Ice/PluginF.cpp +28 -11
  321. data/ext/ice/cpp/src/Ice/PluginManagerI.cpp +27 -51
  322. data/ext/ice/cpp/src/Ice/PluginManagerI.h +7 -13
  323. data/ext/ice/cpp/src/Ice/Process.cpp +294 -128
  324. data/ext/ice/cpp/src/Ice/ProcessF.cpp +30 -12
  325. data/ext/ice/cpp/src/Ice/Properties.cpp +42 -15
  326. data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +382 -340
  327. data/ext/ice/cpp/src/Ice/PropertiesAdminI.cpp +83 -24
  328. data/ext/ice/cpp/src/Ice/PropertiesAdminI.h +29 -10
  329. data/ext/ice/cpp/src/Ice/PropertiesF.cpp +30 -12
  330. data/ext/ice/cpp/src/Ice/PropertiesI.cpp +46 -57
  331. data/ext/ice/cpp/src/Ice/PropertiesI.h +18 -26
  332. data/ext/ice/cpp/src/Ice/PropertyNames.cpp +112 -19
  333. data/ext/ice/cpp/src/Ice/PropertyNames.h +4 -7
  334. data/ext/ice/cpp/src/Ice/Protocol.cpp +6 -19
  335. data/ext/ice/cpp/src/Ice/ProtocolInstance.cpp +37 -7
  336. data/ext/ice/cpp/src/Ice/ProtocolInstance.h +9 -25
  337. data/ext/ice/cpp/src/Ice/ProtocolInstanceF.h +1 -6
  338. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.cpp +6 -6
  339. data/ext/ice/cpp/src/Ice/ProtocolPluginFacade.h +3 -6
  340. data/ext/ice/cpp/src/Ice/ProtocolPluginFacadeF.h +1 -6
  341. data/ext/ice/cpp/src/Ice/Proxy.cpp +729 -957
  342. data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +33 -38
  343. data/ext/ice/cpp/src/Ice/ProxyFactory.h +16 -16
  344. data/ext/ice/cpp/src/Ice/Reference.cpp +190 -106
  345. data/ext/ice/cpp/src/Ice/Reference.h +39 -28
  346. data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +69 -118
  347. data/ext/ice/cpp/src/Ice/ReferenceFactory.h +12 -17
  348. data/ext/ice/cpp/src/Ice/ReferenceFactoryF.h +1 -6
  349. data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +19 -9
  350. data/ext/ice/cpp/src/Ice/RegisterPluginsInit.h +1 -6
  351. data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +766 -565
  352. data/ext/ice/cpp/src/Ice/ReplyStatus.h +1 -6
  353. data/ext/ice/cpp/src/Ice/RequestHandler.cpp +5 -8
  354. data/ext/ice/cpp/src/Ice/RequestHandler.h +10 -18
  355. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.cpp +10 -11
  356. data/ext/ice/cpp/src/Ice/RequestHandlerFactory.h +2 -7
  357. data/ext/ice/cpp/src/Ice/ResponseHandler.cpp +3 -11
  358. data/ext/ice/cpp/src/Ice/ResponseHandler.h +16 -12
  359. data/ext/ice/cpp/src/Ice/RetryQueue.cpp +12 -20
  360. data/ext/ice/cpp/src/Ice/RetryQueue.h +7 -11
  361. data/ext/ice/cpp/src/Ice/RetryQueueF.h +1 -6
  362. data/ext/ice/cpp/src/Ice/Router.cpp +614 -492
  363. data/ext/ice/cpp/src/Ice/RouterF.cpp +30 -12
  364. data/ext/ice/cpp/src/Ice/RouterInfo.cpp +93 -99
  365. data/ext/ice/cpp/src/Ice/RouterInfo.h +42 -38
  366. data/ext/ice/cpp/src/Ice/RouterInfoF.h +1 -6
  367. data/ext/ice/cpp/src/{IceUtil → Ice}/SHA1.cpp +23 -28
  368. data/ext/ice/cpp/src/Ice/Selector.cpp +948 -855
  369. data/ext/ice/cpp/src/Ice/Selector.h +100 -152
  370. data/ext/ice/cpp/src/Ice/ServantLocator.cpp +41 -13
  371. data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +28 -11
  372. data/ext/ice/cpp/src/Ice/ServantManager.cpp +24 -45
  373. data/ext/ice/cpp/src/Ice/ServantManager.h +1 -6
  374. data/ext/ice/cpp/src/Ice/SharedContext.h +2 -7
  375. data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +21 -12
  376. data/ext/ice/cpp/src/Ice/SliceChecksums.cpp +2 -7
  377. data/ext/ice/cpp/src/Ice/SlicedData.cpp +72 -25
  378. data/ext/ice/cpp/src/Ice/StreamSocket.cpp +208 -76
  379. data/ext/ice/cpp/src/Ice/StreamSocket.h +13 -9
  380. data/ext/ice/cpp/src/Ice/StringConverterPlugin.cpp +57 -22
  381. data/ext/ice/cpp/src/Ice/StringUtil.h +30 -0
  382. data/ext/ice/cpp/src/Ice/SysLoggerI.cpp +6 -7
  383. data/ext/ice/cpp/src/Ice/SysLoggerI.h +2 -8
  384. data/ext/ice/cpp/src/Ice/SystemdJournalI.cpp +66 -0
  385. data/ext/ice/cpp/src/Ice/SystemdJournalI.h +39 -0
  386. data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +169 -49
  387. data/ext/ice/cpp/src/Ice/TcpAcceptor.h +12 -10
  388. data/ext/ice/cpp/src/Ice/TcpConnector.cpp +6 -12
  389. data/ext/ice/cpp/src/Ice/TcpConnector.h +1 -7
  390. data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +51 -46
  391. data/ext/ice/cpp/src/Ice/TcpEndpointI.h +12 -14
  392. data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +17 -32
  393. data/ext/ice/cpp/src/Ice/TcpTransceiver.h +7 -15
  394. data/ext/ice/cpp/src/{IceUtil → Ice}/Thread.cpp +41 -54
  395. data/ext/ice/cpp/src/Ice/ThreadPool.cpp +242 -274
  396. data/ext/ice/cpp/src/Ice/ThreadPool.h +46 -48
  397. data/ext/ice/cpp/src/{IceUtil → Ice}/Timer.cpp +38 -26
  398. data/ext/ice/cpp/src/Ice/TraceLevels.cpp +2 -7
  399. data/ext/ice/cpp/src/Ice/TraceLevels.h +1 -6
  400. data/ext/ice/cpp/src/Ice/TraceLevelsF.h +2 -7
  401. data/ext/ice/cpp/src/Ice/TraceUtil.cpp +53 -36
  402. data/ext/ice/cpp/src/Ice/TraceUtil.h +13 -11
  403. data/ext/ice/cpp/src/Ice/Transceiver.cpp +1 -7
  404. data/ext/ice/cpp/src/Ice/Transceiver.h +8 -12
  405. data/ext/ice/cpp/src/Ice/TransceiverF.h +3 -8
  406. data/ext/ice/cpp/src/Ice/UdpConnector.cpp +5 -13
  407. data/ext/ice/cpp/src/Ice/UdpConnector.h +1 -7
  408. data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +118 -60
  409. data/ext/ice/cpp/src/Ice/UdpEndpointI.h +13 -10
  410. data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +177 -236
  411. data/ext/ice/cpp/src/Ice/UdpTransceiver.h +15 -22
  412. data/ext/ice/cpp/src/Ice/Value.cpp +76 -0
  413. data/ext/ice/cpp/src/Ice/ValueFactory.cpp +83 -0
  414. data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.cpp +61 -0
  415. data/ext/ice/cpp/src/Ice/ValueFactoryManagerI.h +37 -0
  416. data/ext/ice/cpp/src/Ice/Version.cpp +25 -20
  417. data/ext/ice/cpp/src/Ice/VirtualShared.h +38 -0
  418. data/ext/ice/cpp/src/Ice/WSAcceptor.cpp +3 -14
  419. data/ext/ice/cpp/src/Ice/WSAcceptor.h +3 -12
  420. data/ext/ice/cpp/src/Ice/WSConnector.cpp +5 -16
  421. data/ext/ice/cpp/src/Ice/WSConnector.h +3 -11
  422. data/ext/ice/cpp/src/Ice/WSEndpoint.cpp +188 -89
  423. data/ext/ice/cpp/src/Ice/WSEndpoint.h +22 -37
  424. data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +65 -66
  425. data/ext/ice/cpp/src/Ice/WSTransceiver.h +7 -27
  426. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +596 -281
  427. data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +1383 -543
  428. data/ext/ice/cpp/src/IceDiscovery/LocatorI.cpp +89 -32
  429. data/ext/ice/cpp/src/IceDiscovery/LocatorI.h +59 -28
  430. data/ext/ice/cpp/src/IceDiscovery/LookupI.cpp +315 -66
  431. data/ext/ice/cpp/src/IceDiscovery/LookupI.h +83 -41
  432. data/ext/ice/cpp/src/IceDiscovery/PluginI.cpp +57 -64
  433. data/ext/ice/cpp/src/IceDiscovery/PluginI.h +3 -8
  434. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +450 -172
  435. data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +863 -406
  436. data/ext/ice/cpp/src/IceLocatorDiscovery/Plugin.h +47 -0
  437. data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +636 -144
  438. data/ext/ice/cpp/src/IceSSL/AcceptorI.cpp +20 -173
  439. data/ext/ice/cpp/src/IceSSL/AcceptorI.h +8 -22
  440. data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +279 -0
  441. data/ext/ice/cpp/src/IceSSL/CertificateI.h +64 -0
  442. data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +42 -17
  443. data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +61 -0
  444. data/ext/ice/cpp/src/IceSSL/ConnectorI.cpp +15 -64
  445. data/ext/ice/cpp/src/IceSSL/ConnectorI.h +6 -18
  446. data/ext/ice/cpp/src/IceSSL/EndpointI.cpp +207 -204
  447. data/ext/ice/cpp/src/IceSSL/EndpointI.h +43 -40
  448. data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +42 -16
  449. data/ext/ice/cpp/src/IceSSL/Instance.cpp +1 -11
  450. data/ext/ice/cpp/src/IceSSL/Instance.h +7 -12
  451. data/ext/ice/cpp/src/IceSSL/InstanceF.h +11 -12
  452. data/ext/ice/cpp/src/IceSSL/OpenSSLCertificateI.cpp +583 -0
  453. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +134 -115
  454. data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +59 -0
  455. data/ext/ice/cpp/src/IceSSL/OpenSSLEngineF.h +27 -0
  456. data/ext/ice/cpp/src/IceSSL/OpenSSLPluginI.cpp +127 -0
  457. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +477 -182
  458. data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.h +32 -26
  459. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.cpp +286 -0
  460. data/ext/ice/cpp/src/IceSSL/OpenSSLUtil.h +58 -0
  461. data/ext/ice/cpp/src/IceSSL/PluginI.cpp +71 -46
  462. data/ext/ice/cpp/src/IceSSL/PluginI.h +13 -23
  463. data/ext/ice/cpp/src/IceSSL/RFC2253.cpp +9 -60
  464. data/ext/ice/cpp/src/IceSSL/RFC2253.h +7 -12
  465. data/ext/ice/cpp/src/IceSSL/SChannelCertificateI.cpp +580 -0
  466. data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +523 -74
  467. data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +123 -0
  468. data/ext/ice/cpp/src/IceSSL/SChannelEngineF.h +31 -0
  469. data/ext/ice/cpp/src/IceSSL/SChannelPluginI.cpp +73 -0
  470. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +187 -221
  471. data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.h +24 -26
  472. data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +97 -94
  473. data/ext/ice/cpp/src/IceSSL/SSLEngine.h +26 -192
  474. data/ext/ice/cpp/src/IceSSL/SSLEngineF.h +4 -24
  475. data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +868 -0
  476. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.cpp +69 -201
  477. data/ext/ice/cpp/src/IceSSL/SecureTransportEngine.h +59 -0
  478. data/ext/ice/cpp/src/IceSSL/SecureTransportEngineF.h +29 -0
  479. data/ext/ice/cpp/src/IceSSL/SecureTransportPluginI.cpp +75 -0
  480. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +174 -161
  481. data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.h +29 -33
  482. data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +864 -0
  483. data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.h +45 -0
  484. data/ext/ice/cpp/src/IceSSL/TrustManager.cpp +12 -22
  485. data/ext/ice/cpp/src/IceSSL/TrustManager.h +4 -9
  486. data/ext/ice/cpp/src/IceSSL/TrustManagerF.h +3 -8
  487. data/ext/ice/cpp/src/IceSSL/UWPCertificateI.cpp +266 -0
  488. data/ext/ice/cpp/src/IceSSL/UWPEngine.cpp +338 -0
  489. data/ext/ice/cpp/src/IceSSL/UWPEngine.h +41 -0
  490. data/ext/ice/cpp/src/IceSSL/UWPEngineF.h +26 -0
  491. data/ext/ice/cpp/src/IceSSL/UWPPluginI.cpp +89 -0
  492. data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.cpp +383 -0
  493. data/ext/ice/cpp/src/IceSSL/UWPTransceiverI.h +71 -0
  494. data/ext/ice/cpp/src/IceSSL/Util.cpp +71 -1260
  495. data/ext/ice/cpp/src/IceSSL/Util.h +48 -142
  496. data/ext/ice/cpp/src/IceUtil/ConsoleUtil.cpp +157 -0
  497. data/ext/ice/cpp/src/IceUtil/ConvertUTF.cpp +22 -27
  498. data/ext/ice/cpp/src/IceUtil/ConvertUTF.h +34 -31
  499. data/ext/ice/cpp/src/IceUtil/CtrlCHandler.cpp +22 -36
  500. data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +30 -126
  501. data/ext/ice/cpp/src/IceUtil/InputUtil.cpp +1 -6
  502. data/ext/ice/cpp/src/IceUtil/MutexProtocol.cpp +1 -6
  503. data/ext/ice/cpp/src/IceUtil/Options.cpp +20 -33
  504. data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +47 -21
  505. data/ext/ice/cpp/src/IceUtil/Random.cpp +15 -20
  506. data/ext/ice/cpp/src/IceUtil/RecMutex.cpp +4 -19
  507. data/ext/ice/cpp/src/IceUtil/Shared.cpp +8 -8
  508. data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +501 -269
  509. data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +582 -244
  510. data/ext/ice/cpp/src/IceUtil/ThreadException.cpp +37 -79
  511. data/ext/ice/cpp/src/IceUtil/Time.cpp +6 -11
  512. data/ext/ice/cpp/src/IceUtil/UUID.cpp +17 -22
  513. data/ext/ice/cpp/src/IceUtil/Unicode.cpp +97 -101
  514. data/ext/ice/cpp/src/IceUtil/Unicode.h +21 -40
  515. data/ext/ice/cpp/src/IceUtil/UtilException.cpp +839 -0
  516. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +894 -234
  517. data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +72 -0
  518. data/ext/ice/cpp/src/Slice/Checksum.cpp +2 -7
  519. data/ext/ice/cpp/src/Slice/Checksum.h +21 -0
  520. data/ext/ice/cpp/src/Slice/FileTracker.cpp +25 -83
  521. data/ext/ice/cpp/{include → src}/Slice/FileTracker.h +9 -14
  522. data/ext/ice/cpp/src/Slice/Grammar.cpp +1981 -1944
  523. data/ext/ice/cpp/src/Slice/Grammar.h +39 -19
  524. data/ext/ice/cpp/src/Slice/GrammarUtil.h +14 -20
  525. data/ext/ice/cpp/src/Slice/JavaUtil.cpp +2752 -1948
  526. data/ext/ice/cpp/src/Slice/JavaUtil.h +398 -0
  527. data/ext/ice/cpp/src/Slice/MD5.cpp +1 -6
  528. data/ext/ice/cpp/src/Slice/MD5.h +1 -6
  529. data/ext/ice/cpp/src/Slice/MD5I.cpp +8 -1
  530. data/ext/ice/cpp/src/Slice/MD5I.h +1 -1
  531. data/ext/ice/cpp/src/Slice/PHPUtil.cpp +17 -20
  532. data/ext/ice/cpp/src/Slice/PHPUtil.h +36 -0
  533. data/ext/ice/cpp/src/Slice/Parser.cpp +1190 -426
  534. data/ext/ice/cpp/{include → src}/Slice/Parser.h +143 -91
  535. data/ext/ice/cpp/src/Slice/Preprocessor.cpp +67 -36
  536. data/ext/ice/cpp/{include → src}/Slice/Preprocessor.h +8 -18
  537. data/ext/ice/cpp/src/Slice/Python.cpp +218 -111
  538. data/ext/ice/cpp/src/Slice/PythonUtil.cpp +787 -699
  539. data/ext/ice/cpp/src/Slice/PythonUtil.h +70 -0
  540. data/ext/ice/cpp/src/Slice/Ruby.cpp +42 -43
  541. data/ext/ice/cpp/src/Slice/RubyUtil.cpp +175 -445
  542. data/ext/ice/cpp/{include → src}/Slice/RubyUtil.h +6 -11
  543. data/ext/ice/cpp/src/Slice/Scanner.cpp +390 -399
  544. data/ext/ice/cpp/src/Slice/{Util.cpp → SliceUtil.cpp} +36 -69
  545. data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +456 -0
  546. data/ext/ice/cpp/src/Slice/Util.h +50 -0
  547. data/ice.gemspec +2 -9
  548. data/lib/Glacier2.rb +1 -6
  549. data/lib/Glacier2/Metrics.rb +6 -50
  550. data/lib/Glacier2/PermissionsVerifier.rb +23 -99
  551. data/lib/Glacier2/PermissionsVerifierF.rb +2 -7
  552. data/lib/Glacier2/Router.rb +31 -78
  553. data/lib/Glacier2/RouterF.rb +2 -7
  554. data/lib/Glacier2/SSLInfo.rb +3 -11
  555. data/lib/Glacier2/Session.rb +87 -311
  556. data/lib/Ice.rb +84 -58
  557. data/lib/Ice/BuiltinSequences.rb +3 -8
  558. data/lib/Ice/Communicator.rb +54 -61
  559. data/lib/Ice/CommunicatorF.rb +2 -7
  560. data/lib/Ice/Connection.rb +152 -166
  561. data/lib/Ice/ConnectionF.rb +2 -7
  562. data/lib/Ice/Current.rb +3 -15
  563. data/lib/Ice/Endpoint.rb +56 -137
  564. data/lib/Ice/EndpointF.rb +2 -7
  565. data/lib/Ice/EndpointTypes.rb +2 -11
  566. data/lib/Ice/FacetMap.rb +3 -8
  567. data/lib/Ice/Identity.rb +4 -12
  568. data/lib/Ice/ImplicitContext.rb +4 -38
  569. data/lib/Ice/ImplicitContextF.rb +2 -7
  570. data/lib/Ice/Instrumentation.rb +22 -279
  571. data/lib/Ice/InstrumentationF.rb +2 -7
  572. data/lib/Ice/LocalException.rb +94 -145
  573. data/lib/Ice/Locator.rb +50 -169
  574. data/lib/Ice/LocatorF.rb +2 -7
  575. data/lib/Ice/Logger.rb +4 -38
  576. data/lib/Ice/LoggerF.rb +2 -7
  577. data/lib/Ice/Metrics.rb +60 -420
  578. data/lib/Ice/ObjectAdapter.rb +29 -0
  579. data/lib/Ice/ObjectAdapterF.rb +2 -7
  580. data/lib/Ice/ObjectFactory.rb +4 -34
  581. data/lib/Ice/Plugin.rb +6 -64
  582. data/lib/Ice/PluginF.rb +2 -7
  583. data/lib/Ice/Process.rb +15 -56
  584. data/lib/Ice/ProcessF.rb +2 -7
  585. data/lib/Ice/Properties.rb +4 -45
  586. data/lib/Ice/PropertiesAdmin.rb +18 -60
  587. data/lib/Ice/PropertiesF.rb +2 -7
  588. data/lib/Ice/RemoteLogger.rb +33 -119
  589. data/lib/Ice/Router.rb +28 -105
  590. data/lib/Ice/RouterF.rb +2 -7
  591. data/lib/Ice/ServantLocator.rb +26 -0
  592. data/lib/Ice/ServantLocatorF.rb +24 -0
  593. data/lib/Ice/SliceChecksumDict.rb +2 -7
  594. data/lib/Ice/ValueFactory.rb +28 -0
  595. data/lib/Ice/Version.rb +4 -15
  596. data/lib/IceBox.rb +1 -6
  597. data/lib/IceBox/IceBox.rb +43 -152
  598. data/lib/IceGrid.rb +1 -9
  599. data/lib/IceGrid/Admin.rb +550 -431
  600. data/lib/IceGrid/Descriptor.rb +61 -533
  601. data/lib/IceGrid/Exception.rb +23 -49
  602. data/lib/IceGrid/FileParser.rb +13 -54
  603. data/lib/IceGrid/PluginFacade.rb +35 -0
  604. data/lib/IceGrid/Registry.rb +150 -62
  605. data/lib/IceGrid/Session.rb +24 -68
  606. data/lib/IceGrid/UserAccountMapper.rb +13 -54
  607. data/lib/IcePatch2.rb +1 -6
  608. data/lib/IcePatch2/FileInfo.rb +4 -15
  609. data/lib/IcePatch2/FileServer.rb +32 -80
  610. data/lib/IceStorm.rb +1 -6
  611. data/lib/IceStorm/IceStorm.rb +78 -210
  612. data/lib/IceStorm/Metrics.rb +10 -93
  613. data/slice/Glacier2/Metrics.ice +20 -10
  614. data/slice/Glacier2/PermissionsVerifier.ice +19 -12
  615. data/slice/Glacier2/PermissionsVerifierF.ice +16 -9
  616. data/slice/Glacier2/Router.ice +19 -13
  617. data/slice/Glacier2/RouterF.ice +16 -9
  618. data/slice/Glacier2/SSLInfo.ice +17 -10
  619. data/slice/Glacier2/Session.ice +24 -18
  620. data/slice/Ice/BuiltinSequences.ice +18 -9
  621. data/slice/Ice/Communicator.ice +180 -64
  622. data/slice/Ice/CommunicatorF.ice +18 -9
  623. data/slice/Ice/Connection.ice +208 -75
  624. data/slice/Ice/ConnectionF.ice +18 -9
  625. data/slice/Ice/Current.ice +37 -28
  626. data/slice/Ice/Endpoint.ice +73 -21
  627. data/slice/Ice/EndpointF.ice +19 -10
  628. data/slice/Ice/EndpointTypes.ice +21 -13
  629. data/slice/Ice/FacetMap.ice +19 -10
  630. data/slice/Ice/Identity.ice +24 -10
  631. data/slice/Ice/ImplicitContext.ice +41 -33
  632. data/slice/Ice/ImplicitContextF.ice +17 -9
  633. data/slice/Ice/Instrumentation.ice +37 -30
  634. data/slice/Ice/InstrumentationF.ice +19 -10
  635. data/slice/Ice/LocalException.ice +118 -112
  636. data/slice/Ice/Locator.ice +28 -21
  637. data/slice/Ice/LocatorF.ice +18 -9
  638. data/slice/Ice/Logger.ice +26 -18
  639. data/slice/Ice/LoggerF.ice +18 -9
  640. data/slice/Ice/Metrics.ice +42 -30
  641. data/slice/Ice/ObjectAdapter.ice +88 -53
  642. data/slice/Ice/ObjectAdapterF.ice +18 -9
  643. data/slice/Ice/ObjectFactory.ice +28 -17
  644. data/slice/Ice/Plugin.ice +25 -13
  645. data/slice/Ice/PluginF.ice +22 -9
  646. data/slice/Ice/Process.ice +20 -11
  647. data/slice/Ice/ProcessF.ice +18 -9
  648. data/slice/Ice/Properties.ice +42 -28
  649. data/slice/Ice/PropertiesAdmin.ice +20 -10
  650. data/slice/Ice/PropertiesF.ice +18 -9
  651. data/slice/Ice/RemoteLogger.ice +23 -19
  652. data/slice/Ice/Router.ice +28 -13
  653. data/slice/Ice/RouterF.ice +18 -9
  654. data/slice/Ice/ServantLocator.ice +40 -29
  655. data/slice/Ice/ServantLocatorF.ice +18 -9
  656. data/slice/Ice/SliceChecksumDict.ice +18 -9
  657. data/slice/Ice/ValueFactory.ice +132 -0
  658. data/slice/Ice/Version.ice +20 -10
  659. data/slice/IceBT/ConnectionInfo.ice +58 -0
  660. data/slice/IceBT/EndpointInfo.ice +56 -0
  661. data/slice/IceBT/Types.ice +44 -0
  662. data/slice/IceBox/IceBox.ice +45 -27
  663. data/slice/IceDiscovery/IceDiscovery.ice +75 -10
  664. data/slice/IceGrid/Admin.ice +410 -44
  665. data/slice/IceGrid/Descriptor.ice +47 -34
  666. data/slice/IceGrid/Exception.ice +43 -32
  667. data/slice/IceGrid/FileParser.ice +21 -12
  668. data/slice/IceGrid/PluginFacade.ice +26 -18
  669. data/slice/IceGrid/Registry.ice +150 -21
  670. data/slice/IceGrid/Session.ice +25 -17
  671. data/slice/IceGrid/UserAccountMapper.ice +23 -14
  672. data/slice/IceIAP/ConnectionInfo.ice +73 -0
  673. data/slice/IceIAP/EndpointInfo.ice +67 -0
  674. data/slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +19 -12
  675. data/slice/IcePatch2/FileInfo.ice +19 -13
  676. data/slice/IcePatch2/FileServer.ice +27 -18
  677. data/slice/IceSSL/ConnectionInfo.ice +27 -23
  678. data/slice/IceSSL/ConnectionInfoF.ice +30 -0
  679. data/slice/IceSSL/EndpointInfo.ice +21 -36
  680. data/slice/IceStorm/IceStorm.ice +33 -24
  681. data/slice/IceStorm/Metrics.ice +19 -11
  682. metadata +148 -120
  683. data/ext/ObjectFactory.cpp +0 -140
  684. data/ext/ObjectFactory.h +0 -50
  685. data/ext/ice/cpp/include/Ice/ACMF.h +0 -30
  686. data/ext/ice/cpp/include/Ice/BasicStream.h +0 -1335
  687. data/ext/ice/cpp/include/Ice/BuiltinSequences.h +0 -82
  688. data/ext/ice/cpp/include/Ice/Communicator.h +0 -200
  689. data/ext/ice/cpp/include/Ice/Connection.h +0 -497
  690. data/ext/ice/cpp/include/Ice/ConnectionF.h +0 -74
  691. data/ext/ice/cpp/include/Ice/ConnectionFactoryF.h +0 -30
  692. data/ext/ice/cpp/include/Ice/Current.h +0 -102
  693. data/ext/ice/cpp/include/Ice/DefaultObjectFactory.h +0 -48
  694. data/ext/ice/cpp/include/Ice/DeprecatedStringConverter.h +0 -62
  695. data/ext/ice/cpp/include/Ice/Endpoint.h +0 -341
  696. data/ext/ice/cpp/include/Ice/EndpointF.h +0 -93
  697. data/ext/ice/cpp/include/Ice/EndpointTypes.h +0 -82
  698. data/ext/ice/cpp/include/Ice/Identity.h +0 -168
  699. data/ext/ice/cpp/include/Ice/ImplicitContext.h +0 -102
  700. data/ext/ice/cpp/include/Ice/Instrumentation.h +0 -365
  701. data/ext/ice/cpp/include/Ice/InstrumentationF.h +0 -75
  702. data/ext/ice/cpp/include/Ice/LocalException.h +0 -1030
  703. data/ext/ice/cpp/include/Ice/Locator.h +0 -2193
  704. data/ext/ice/cpp/include/Ice/LocatorF.h +0 -93
  705. data/ext/ice/cpp/include/Ice/Logger.h +0 -100
  706. data/ext/ice/cpp/include/Ice/Metrics.h +0 -2974
  707. data/ext/ice/cpp/include/Ice/ObjectAdapter.h +0 -168
  708. data/ext/ice/cpp/include/Ice/ObjectAdapterFactoryF.h +0 -26
  709. data/ext/ice/cpp/include/Ice/ObjectFactory.h +0 -92
  710. data/ext/ice/cpp/include/Ice/ObjectFactoryF.h +0 -66
  711. data/ext/ice/cpp/include/Ice/ObjectFactoryManagerF.h +0 -26
  712. data/ext/ice/cpp/include/Ice/Outgoing.h +0 -225
  713. data/ext/ice/cpp/include/Ice/Plugin.h +0 -125
  714. data/ext/ice/cpp/include/Ice/PluginF.h +0 -70
  715. data/ext/ice/cpp/include/Ice/Process.h +0 -574
  716. data/ext/ice/cpp/include/Ice/ProcessF.h +0 -83
  717. data/ext/ice/cpp/include/Ice/Properties.h +0 -136
  718. data/ext/ice/cpp/include/Ice/PropertiesAdmin.h +0 -830
  719. data/ext/ice/cpp/include/Ice/PropertiesF.h +0 -87
  720. data/ext/ice/cpp/include/Ice/RemoteLogger.h +0 -1500
  721. data/ext/ice/cpp/include/Ice/Router.h +0 -1159
  722. data/ext/ice/cpp/include/Ice/RouterF.h +0 -83
  723. data/ext/ice/cpp/include/Ice/ServantLocator.h +0 -96
  724. data/ext/ice/cpp/include/Ice/Stream.h +0 -447
  725. data/ext/ice/cpp/include/Ice/StreamF.h +0 -30
  726. data/ext/ice/cpp/include/Ice/Version.h +0 -262
  727. data/ext/ice/cpp/include/IceSSL/ConnectionInfo.h +0 -158
  728. data/ext/ice/cpp/include/IceSSL/EndpointInfo.h +0 -142
  729. data/ext/ice/cpp/include/IceUtil/AbstractMutex.h +0 -119
  730. data/ext/ice/cpp/include/IceUtil/Cache.h +0 -362
  731. data/ext/ice/cpp/include/IceUtil/IconvStringConverter.h +0 -302
  732. data/ext/ice/cpp/include/IceUtil/SHA1.h +0 -47
  733. data/ext/ice/cpp/include/Slice/CPlusPlusUtil.h +0 -65
  734. data/ext/ice/cpp/include/Slice/Checksum.h +0 -26
  735. data/ext/ice/cpp/include/Slice/CsUtil.h +0 -92
  736. data/ext/ice/cpp/include/Slice/DotNetNames.h +0 -34
  737. data/ext/ice/cpp/include/Slice/JavaUtil.h +0 -279
  738. data/ext/ice/cpp/include/Slice/ObjCUtil.h +0 -127
  739. data/ext/ice/cpp/include/Slice/PHPUtil.h +0 -50
  740. data/ext/ice/cpp/include/Slice/PythonUtil.h +0 -64
  741. data/ext/ice/cpp/include/Slice/Util.h +0 -56
  742. data/ext/ice/cpp/src/Ice/BasicStream.cpp +0 -3428
  743. data/ext/ice/cpp/src/Ice/DeprecatedStringConverter.cpp +0 -62
  744. data/ext/ice/cpp/src/Ice/ObjectFactoryF.cpp +0 -44
  745. data/ext/ice/cpp/src/Ice/ObjectFactoryManager.cpp +0 -139
  746. data/ext/ice/cpp/src/Ice/ObjectFactoryManager.h +0 -43
  747. data/ext/ice/cpp/src/Ice/Outgoing.cpp +0 -694
  748. data/ext/ice/cpp/src/Ice/Stream.cpp +0 -53
  749. data/ext/ice/cpp/src/Ice/StreamI.cpp +0 -832
  750. data/ext/ice/cpp/src/Ice/StreamI.h +0 -198
  751. data/ext/ice/cpp/src/IceSSL/Certificate.cpp +0 -1336
  752. data/ext/ice/cpp/src/IceUtil/ArgVector.cpp +0 -64
  753. data/ext/ice/cpp/src/IceUtil/ArgVector.h +0 -41
  754. data/ext/ice/cpp/src/IceUtil/Exception.cpp +0 -792
  755. data/ext/ice/cpp/src/IceUtil/FileUtil.h +0 -185
  756. data/ext/ice/cpp/src/Slice/CsUtil.cpp +0 -2660
  757. data/ext/ice/cpp/src/Slice/DotNetNames.cpp +0 -146
  758. data/ext/ice/cpp/src/Slice/ObjCUtil.cpp +0 -1310
  759. data/lib/Ice/ObjectFactoryF.rb +0 -29
  760. data/lib/IceGrid/Locator.rb +0 -106
  761. data/lib/IceGrid/Observer.rb +0 -572
  762. data/lib/IceGrid/Query.rb +0 -169
  763. data/slice/Freeze/BackgroundSaveEvictor.ice +0 -111
  764. data/slice/Freeze/CatalogData.ice +0 -49
  765. data/slice/Freeze/Connection.ice +0 -121
  766. data/slice/Freeze/ConnectionF.ice +0 -20
  767. data/slice/Freeze/DB.ice +0 -37
  768. data/slice/Freeze/Evictor.ice +0 -346
  769. data/slice/Freeze/EvictorF.ice +0 -22
  770. data/slice/Freeze/EvictorStorage.ice +0 -72
  771. data/slice/Freeze/Exception.ice +0 -100
  772. data/slice/Freeze/Transaction.ice +0 -58
  773. data/slice/Freeze/TransactionalEvictor.ice +0 -50
  774. data/slice/Ice/ObjectFactoryF.ice +0 -21
  775. data/slice/IceGrid/Locator.ice +0 -57
  776. data/slice/IceGrid/Observer.ice +0 -395
  777. data/slice/IceGrid/Query.ice +0 -131
@@ -1,11 +1,6 @@
1
- // **********************************************************************
2
1
  //
3
- // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
2
+ // Copyright (c) ZeroC, Inc. All rights reserved.
4
3
  //
5
- // This copy of Ice is licensed to you under the terms described in the
6
- // ICE_LICENSE file included in this distribution.
7
- //
8
- // **********************************************************************
9
4
 
10
5
  #ifndef ICE_UNKNOWN_ENDPOINT_I_H
11
6
  #define ICE_UNKNOWN_ENDPOINT_I_H
@@ -17,14 +12,17 @@ namespace IceInternal
17
12
  {
18
13
 
19
14
  class OpaqueEndpointI : public EndpointI
15
+ #ifdef ICE_CPP11_MAPPING
16
+ , public std::enable_shared_from_this<OpaqueEndpointI>
17
+ #endif
20
18
  {
21
19
  public:
22
20
 
23
21
  OpaqueEndpointI(std::vector<std::string>&);
24
- OpaqueEndpointI(Ice::Short, BasicStream*);
22
+ OpaqueEndpointI(Ice::Short, Ice::InputStream*);
25
23
 
26
- virtual void streamWrite(BasicStream*) const;
27
- virtual Ice::EndpointInfoPtr getInfo() const;
24
+ virtual void streamWrite(Ice::OutputStream*) const;
25
+ virtual Ice::EndpointInfoPtr getInfo() const ICE_NOEXCEPT;
28
26
  virtual Ice::Short type() const;
29
27
  virtual const std::string& protocol() const;
30
28
 
@@ -40,19 +38,25 @@ public:
40
38
  virtual TransceiverPtr transceiver() const;
41
39
  virtual void connectors_async(Ice::EndpointSelectionType, const EndpointI_connectorsPtr&) const;
42
40
  virtual AcceptorPtr acceptor(const std::string&) const;
43
- virtual std::vector<EndpointIPtr> expand() const;
41
+ virtual std::vector<EndpointIPtr> expandIfWildcard() const;
42
+ virtual std::vector<EndpointIPtr> expandHost(EndpointIPtr&) const;
44
43
  virtual bool equivalent(const EndpointIPtr&) const;
45
44
  virtual Ice::Int hash() const;
46
45
  virtual std::string options() const;
47
46
 
47
+ #ifdef ICE_CPP11_MAPPING
48
+ virtual bool operator==(const Ice::Endpoint&) const;
49
+ virtual bool operator<(const Ice::Endpoint&) const;
50
+ #else
48
51
  virtual bool operator==(const Ice::LocalObject&) const;
49
52
  virtual bool operator<(const Ice::LocalObject&) const;
50
-
53
+ #endif
51
54
 
52
55
  using EndpointI::connectionId;
53
56
 
54
57
  protected:
55
58
 
59
+ virtual void streamWriteImpl(Ice::OutputStream*) const;
56
60
  virtual bool checkOption(const std::string&, const std::string&, const std::string&);
57
61
 
58
62
  private:
@@ -1,11 +1,6 @@
1
- // **********************************************************************
2
1
  //
3
- // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
2
+ // Copyright (c) ZeroC, Inc. All rights reserved.
4
3
  //
5
- // This copy of Ice is licensed to you under the terms described in the
6
- // ICE_LICENSE file included in this distribution.
7
- //
8
- // **********************************************************************
9
4
 
10
5
  #include <Ice/OutgoingAsync.h>
11
6
  #include <Ice/ConnectionI.h>
@@ -17,91 +12,595 @@
17
12
  #include <Ice/ImplicitContextI.h>
18
13
  #include <Ice/ThreadPool.h>
19
14
  #include <Ice/RetryQueue.h>
15
+ #include <Ice/ConnectionFactory.h>
16
+ #include <Ice/ObjectAdapterFactory.h>
17
+ #include <Ice/LoggerUtil.h>
20
18
 
21
19
  using namespace std;
22
20
  using namespace Ice;
23
21
  using namespace IceInternal;
24
22
 
23
+ #ifndef ICE_CPP11_MAPPING
25
24
  IceUtil::Shared* IceInternal::upCast(OutgoingAsyncBase* p) { return p; }
26
25
  IceUtil::Shared* IceInternal::upCast(ProxyOutgoingAsyncBase* p) { return p; }
27
26
  IceUtil::Shared* IceInternal::upCast(OutgoingAsync* p) { return p; }
28
- IceUtil::Shared* IceInternal::upCast(CommunicatorFlushBatchAsync* p) { return p; }
27
+ #endif
28
+
29
+ const unsigned char OutgoingAsyncBase::OK = 0x1;
30
+ const unsigned char OutgoingAsyncBase::Sent = 0x2;
31
+ #ifndef ICE_CPP11_MAPPING
32
+ const unsigned char OutgoingAsyncBase::Done = 0x4;
33
+ const unsigned char OutgoingAsyncBase::EndCalled = 0x8;
34
+ #endif
35
+
36
+ OutgoingAsyncCompletionCallback::~OutgoingAsyncCompletionCallback()
37
+ {
38
+ // Out of line to avoid weak vtable
39
+ }
29
40
 
30
41
  bool
31
42
  OutgoingAsyncBase::sent()
32
43
  {
33
- return sent(true);
44
+ return sentImpl(true);
34
45
  }
35
46
 
36
47
  bool
37
- OutgoingAsyncBase::completed(const Exception& ex)
48
+ OutgoingAsyncBase::exception(const Exception& ex)
38
49
  {
39
- return finished(ex);
50
+ return exceptionImpl(ex);
40
51
  }
41
52
 
42
53
  bool
43
- OutgoingAsyncBase::completed()
54
+ OutgoingAsyncBase::response()
44
55
  {
45
56
  assert(false); // Must be overriden by request that can handle responses
46
57
  return false;
47
58
  }
48
59
 
49
- BasicStream*
50
- OutgoingAsyncBase::getIs()
51
- {
52
- return 0; // Must be overriden by request that can handle responses
53
- }
60
+ void
61
+ OutgoingAsyncBase::invokeSentAsync()
62
+ {
63
+ class AsynchronousSent : public DispatchWorkItem
64
+ {
65
+ public:
66
+
67
+ AsynchronousSent(const ConnectionPtr& connection, const OutgoingAsyncBasePtr& outAsync) :
68
+ DispatchWorkItem(connection), _outAsync(outAsync)
69
+ {
70
+ }
71
+
72
+ virtual void
73
+ run()
74
+ {
75
+ _outAsync->invokeSent();
76
+ }
77
+
78
+ private:
79
+
80
+ const OutgoingAsyncBasePtr _outAsync;
81
+ };
82
+
83
+ //
84
+ // This is called when it's not safe to call the sent callback
85
+ // synchronously from this thread. Instead the exception callback
86
+ // is called asynchronously from the client thread pool.
87
+ //
88
+ try
89
+ {
90
+ _instance->clientThreadPool()->dispatch(new AsynchronousSent(_cachedConnection, ICE_SHARED_FROM_THIS));
91
+ }
92
+ catch(const Ice::CommunicatorDestroyedException&)
93
+ {
94
+ }
95
+ }
96
+
97
+ void
98
+ OutgoingAsyncBase::invokeExceptionAsync()
99
+ {
100
+ class AsynchronousException : public DispatchWorkItem
101
+ {
102
+ public:
103
+
104
+ AsynchronousException(const ConnectionPtr& c, const OutgoingAsyncBasePtr& outAsync) :
105
+ DispatchWorkItem(c), _outAsync(outAsync)
106
+ {
107
+ }
108
+
109
+ virtual void
110
+ run()
111
+ {
112
+ _outAsync->invokeException();
113
+ }
114
+
115
+ private:
116
+
117
+ const OutgoingAsyncBasePtr _outAsync;
118
+ };
119
+
120
+ //
121
+ // CommunicatorDestroyedException is the only exception that can propagate directly from this method.
122
+ //
123
+ _instance->clientThreadPool()->dispatch(new AsynchronousException(_cachedConnection, ICE_SHARED_FROM_THIS));
124
+ }
125
+
126
+ void
127
+ OutgoingAsyncBase::invokeResponseAsync()
128
+ {
129
+ class AsynchronousResponse : public DispatchWorkItem
130
+ {
131
+ public:
132
+
133
+ AsynchronousResponse(const ConnectionPtr& connection, const OutgoingAsyncBasePtr& outAsync) :
134
+ DispatchWorkItem(connection), _outAsync(outAsync)
135
+ {
136
+ }
137
+
138
+ virtual void
139
+ run()
140
+ {
141
+ _outAsync->invokeResponse();
142
+ }
143
+
144
+ private:
145
+
146
+ const OutgoingAsyncBasePtr _outAsync;
147
+ };
148
+
149
+ //
150
+ // CommunicatorDestroyedException is the only exception that can propagate directly from this method.
151
+ //
152
+ _instance->clientThreadPool()->dispatch(new AsynchronousResponse(_cachedConnection, ICE_SHARED_FROM_THIS));
153
+ }
154
+
155
+ void
156
+ OutgoingAsyncBase::invokeSent()
157
+ {
158
+ try
159
+ {
160
+ handleInvokeSent(_sentSynchronously, this);
161
+ }
162
+ catch(const std::exception& ex)
163
+ {
164
+ warning(ex);
165
+ }
166
+ catch(...)
167
+ {
168
+ warning();
169
+ }
170
+
171
+ if(_observer && _doneInSent)
172
+ {
173
+ _observer.detach();
174
+ }
175
+ }
176
+
177
+ void
178
+ OutgoingAsyncBase::invokeException()
179
+ {
180
+ try
181
+ {
182
+ handleInvokeException(*_ex, this);
183
+ }
184
+ catch(const std::exception& ex)
185
+ {
186
+ warning(ex);
187
+ }
188
+ catch(...)
189
+ {
190
+ warning();
191
+ }
192
+
193
+ _observer.detach();
194
+ }
195
+
196
+ void
197
+ OutgoingAsyncBase::invokeResponse()
198
+ {
199
+ if(_ex)
200
+ {
201
+ invokeException();
202
+ return;
203
+ }
204
+
205
+ try
206
+ {
207
+ #ifdef ICE_CPP11_MAPPING
208
+ try
209
+ {
210
+ handleInvokeResponse(_state & OK, this);
211
+ }
212
+ catch(const Ice::Exception& ex)
213
+ {
214
+ if(handleException(ex))
215
+ {
216
+ handleInvokeException(ex, this);
217
+ }
218
+ }
219
+ catch(const exception_ptr& ex)
220
+ {
221
+ rethrow_exception(ex);
222
+ }
223
+ #else
224
+ handleInvokeResponse(_state & OK, this);
225
+ #endif
226
+ }
227
+ catch(const std::exception& ex)
228
+ {
229
+ warning(ex);
230
+ }
231
+ catch(...)
232
+ {
233
+ warning();
234
+ }
235
+
236
+ _observer.detach();
237
+ }
238
+
239
+ void
240
+ OutgoingAsyncBase::cancelable(const CancellationHandlerPtr& handler)
241
+ {
242
+ Lock sync(_m);
243
+ if(_cancellationException)
244
+ {
245
+ try
246
+ {
247
+ _cancellationException->ice_throw();
248
+ }
249
+ catch(const Ice::LocalException&)
250
+ {
251
+ _cancellationException.reset();
252
+ throw;
253
+ }
254
+ }
255
+ _cancellationHandler = handler;
256
+ }
257
+
258
+ void
259
+ OutgoingAsyncBase::cancel()
260
+ {
261
+ cancel(Ice::InvocationCanceledException(__FILE__, __LINE__));
262
+ }
263
+
264
+ OutgoingAsyncBase::OutgoingAsyncBase(const InstancePtr& instance) :
265
+ _instance(instance),
266
+ _sentSynchronously(false),
267
+ _doneInSent(false),
268
+ _state(0),
269
+ _os(instance.get(), Ice::currentProtocolEncoding),
270
+ _is(instance.get(), Ice::currentProtocolEncoding)
271
+ {
272
+ }
273
+
274
+ bool
275
+ OutgoingAsyncBase::sentImpl(bool done)
276
+ {
277
+ Lock sync(_m);
278
+ bool alreadySent = (_state & Sent) > 0;
279
+ _state |= Sent;
280
+ if(done)
281
+ {
282
+ _doneInSent = true;
283
+ _childObserver.detach();
284
+ _cancellationHandler = 0;
285
+ }
286
+
287
+ #ifndef ICE_CPP11_MAPPING
288
+ if(done)
289
+ {
290
+ _state |= Done | OK;
291
+ }
292
+ _m.notifyAll();
293
+ #endif
294
+
295
+ bool invoke = handleSent(done, alreadySent);
296
+ if(!invoke && _doneInSent)
297
+ {
298
+ _observer.detach();
299
+ }
300
+ return invoke;
301
+ }
302
+
303
+ bool
304
+ OutgoingAsyncBase::exceptionImpl(const Exception& ex)
305
+ {
306
+ Lock sync(_m);
307
+ ICE_SET_EXCEPTION_FROM_CLONE(_ex, ex.ice_clone());
308
+ if(_childObserver)
309
+ {
310
+ _childObserver.failed(ex.ice_id());
311
+ _childObserver.detach();
312
+ }
313
+ _cancellationHandler = 0;
314
+ _observer.failed(ex.ice_id());
315
+
316
+ #ifndef ICE_CPP11_MAPPING
317
+ _state |= Done;
318
+ _m.notifyAll();
319
+ #endif
320
+
321
+ bool invoke = handleException(ex);
322
+ if(!invoke)
323
+ {
324
+ _observer.detach();
325
+ }
326
+ return invoke;
327
+ }
328
+
329
+ bool
330
+ OutgoingAsyncBase::responseImpl(bool ok, bool invoke)
331
+ {
332
+ Lock sync(_m);
333
+ if(ok)
334
+ {
335
+ _state |= OK;
336
+ }
337
+
338
+ _cancellationHandler = 0;
339
+
340
+ #ifndef ICE_CPP11_MAPPING
341
+ _state |= Done;
342
+ _m.notifyAll();
343
+ #endif
344
+
345
+ try
346
+ {
347
+ invoke &= handleResponse(ok);
348
+ }
349
+ catch(const Ice::Exception& ex)
350
+ {
351
+ ICE_SET_EXCEPTION_FROM_CLONE(_ex, ex.ice_clone());
352
+ invoke = handleException(ex);
353
+ }
354
+ if(!invoke)
355
+ {
356
+ _observer.detach();
357
+ }
358
+ return invoke;
359
+ }
360
+
361
+ void
362
+ OutgoingAsyncBase::cancel(const Ice::LocalException& ex)
363
+ {
364
+ CancellationHandlerPtr handler;
365
+ {
366
+ Lock sync(_m);
367
+ if(!_cancellationHandler)
368
+ {
369
+ ICE_SET_EXCEPTION_FROM_CLONE(_cancellationException, ex.ice_clone());
370
+ return;
371
+ }
372
+ handler = _cancellationHandler;
373
+ }
374
+ handler->asyncRequestCanceled(ICE_SHARED_FROM_THIS, ex);
375
+ }
376
+
377
+ #ifndef ICE_CPP11_MAPPING
378
+
379
+ Int
380
+ OutgoingAsyncBase::getHash() const
381
+ {
382
+ return static_cast<Int>(reinterpret_cast<Long>(this) >> 4);
383
+ }
384
+
385
+ CommunicatorPtr
386
+ OutgoingAsyncBase::getCommunicator() const
387
+ {
388
+ return 0;
389
+ }
390
+
391
+ ConnectionPtr
392
+ OutgoingAsyncBase::getConnection() const
393
+ {
394
+ return 0;
395
+ }
396
+
397
+ ObjectPrxPtr
398
+ OutgoingAsyncBase::getProxy() const
399
+ {
400
+ return 0;
401
+ }
402
+
403
+ Ice::LocalObjectPtr
404
+ OutgoingAsyncBase::getCookie() const
405
+ {
406
+ return _cookie;
407
+ }
408
+
409
+ const std::string&
410
+ OutgoingAsyncBase::getOperation() const
411
+ {
412
+ assert(false); // Must be overriden
413
+ static string empty;
414
+ return empty;
415
+ }
416
+
417
+ bool
418
+ OutgoingAsyncBase::isCompleted() const
419
+ {
420
+ Lock sync(_m);
421
+ return (_state & Done) > 0;
422
+ }
423
+
424
+ void
425
+ OutgoingAsyncBase::waitForCompleted()
426
+ {
427
+ Lock sync(_m);
428
+ while(!(_state & Done))
429
+ {
430
+ _m.wait();
431
+ }
432
+ }
433
+
434
+ bool
435
+ OutgoingAsyncBase::isSent() const
436
+ {
437
+ Lock sync(_m);
438
+ return (_state & Sent) > 0;
439
+ }
440
+
441
+ void
442
+ OutgoingAsyncBase::waitForSent()
443
+ {
444
+ Lock sync(_m);
445
+ while(!(_state & Sent) && !_ex.get())
446
+ {
447
+ _m.wait();
448
+ }
449
+ }
450
+
451
+ bool
452
+ OutgoingAsyncBase::sentSynchronously() const
453
+ {
454
+ return _sentSynchronously;
455
+ }
456
+
457
+ void
458
+ OutgoingAsyncBase::throwLocalException() const
459
+ {
460
+ Lock sync(_m);
461
+ if(_ex.get())
462
+ {
463
+ _ex->ice_throw();
464
+ }
465
+ }
466
+
467
+ bool
468
+ OutgoingAsyncBase::_waitForResponse()
469
+ {
470
+ Lock sync(_m);
471
+ if(_state & EndCalled)
472
+ {
473
+ throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "end_ method called more than once");
474
+ }
475
+ _state |= EndCalled;
476
+ while(!(_state & Done))
477
+ {
478
+ _m.wait();
479
+ }
480
+
481
+ if(_ex.get())
482
+ {
483
+ _ex->ice_throw();
484
+ }
485
+ return _state & OK;
486
+ }
487
+
488
+ Ice::InputStream*
489
+ OutgoingAsyncBase::_startReadParams()
490
+ {
491
+ _is.startEncapsulation();
492
+ return &_is;
493
+ }
494
+
495
+ void
496
+ OutgoingAsyncBase::_endReadParams()
497
+ {
498
+ _is.endEncapsulation();
499
+ }
500
+
501
+ void
502
+ OutgoingAsyncBase::_readEmptyParams()
503
+ {
504
+ _is.skipEmptyEncapsulation();
505
+ }
506
+
507
+ void
508
+ OutgoingAsyncBase::_readParamEncaps(const ::Ice::Byte*& encaps, ::Ice::Int& sz)
509
+ {
510
+ _is.readEncapsulation(encaps, sz);
511
+ }
512
+
513
+ void
514
+ OutgoingAsyncBase::_throwUserException()
515
+ {
516
+ try
517
+ {
518
+ _is.startEncapsulation();
519
+ _is.throwException();
520
+ }
521
+ catch(const Ice::UserException&)
522
+ {
523
+ _is.endEncapsulation();
524
+ throw;
525
+ }
526
+ }
527
+
528
+ void
529
+ OutgoingAsyncBase::_scheduleCallback(const CallbackPtr& cb)
530
+ {
531
+ //
532
+ // NOTE: for internal use only. This should only be called when the invocation has
533
+ // completed. Accessing _cachedConnection is not safe otherwise.
534
+ //
535
+
536
+ class WorkItem : public DispatchWorkItem
537
+ {
538
+ public:
539
+
540
+ WorkItem(const ConnectionPtr& connection, const CallbackPtr& cb) :
541
+ DispatchWorkItem(connection), _cb(cb)
542
+ {
543
+ }
544
+
545
+ virtual void run()
546
+ {
547
+ _cb->run();
548
+ }
549
+
550
+ private:
54
551
 
55
- OutgoingAsyncBase::OutgoingAsyncBase(const CommunicatorPtr& communicator,
56
- const InstancePtr& instance,
57
- const string& operation,
58
- const CallbackBasePtr& delegate,
59
- const LocalObjectPtr& cookie) :
60
- AsyncResult(communicator, instance, operation, delegate, cookie),
61
- _os(instance.get(), Ice::currentProtocolEncoding)
62
- {
552
+ CallbackPtr _cb;
553
+ };
554
+
555
+ //
556
+ // CommunicatorDestroyedException is the only exception that can propagate directly from this method.
557
+ //
558
+ _instance->clientThreadPool()->dispatch(new WorkItem(_cachedConnection, cb));
63
559
  }
64
560
 
65
- bool
66
- OutgoingAsyncBase::sent(bool done)
561
+ #endif
562
+
563
+ void
564
+ OutgoingAsyncBase::warning(const std::exception& exc) const
67
565
  {
68
- if(done)
566
+ if(_instance->initializationData().properties->getPropertyAsIntWithDefault("Ice.Warn.AMICallback", 1) > 0)
69
567
  {
70
- _childObserver.detach();
568
+ Ice::Warning out(_instance->initializationData().logger);
569
+ const Ice::Exception* ex = dynamic_cast<const Ice::Exception*>(&exc);
570
+ if(ex)
571
+ {
572
+ out << "Ice::Exception raised by AMI callback:\n" << *ex;
573
+ }
574
+ else
575
+ {
576
+ out << "std::exception raised by AMI callback:\n" << exc.what();
577
+ }
71
578
  }
72
- return AsyncResult::sent(done);
73
579
  }
74
580
 
75
- bool
76
- OutgoingAsyncBase::finished(const Exception& ex)
581
+ void
582
+ OutgoingAsyncBase::warning() const
77
583
  {
78
- if(_childObserver)
584
+ if(_instance->initializationData().properties->getPropertyAsIntWithDefault("Ice.Warn.AMICallback", 1) > 0)
79
585
  {
80
- _childObserver.failed(ex.ice_name());
81
- _childObserver.detach();
586
+ Ice::Warning out(_instance->initializationData().logger);
587
+ out << "unknown exception raised by AMI callback";
82
588
  }
83
- return AsyncResult::finished(ex);
84
- }
85
-
86
- Ice::ObjectPrx
87
- ProxyOutgoingAsyncBase::getProxy() const
88
- {
89
- return _proxy;
90
589
  }
91
590
 
92
591
  bool
93
- ProxyOutgoingAsyncBase::completed(const Exception& exc)
592
+ ProxyOutgoingAsyncBase::exception(const Exception& exc)
94
593
  {
95
594
  if(_childObserver)
96
595
  {
97
- _childObserver.failed(exc.ice_name());
596
+ _childObserver.failed(exc.ice_id());
98
597
  _childObserver.detach();
99
598
  }
100
599
 
101
600
  _cachedConnection = 0;
102
- if(_proxy->__reference()->getInvocationTimeout() == -2)
601
+ if(_proxy->_getReference()->getInvocationTimeout() == -2)
103
602
  {
104
- _instance->timer()->cancel(this);
603
+ _instance->timer()->cancel(ICE_SHARED_FROM_THIS);
105
604
  }
106
605
 
107
606
  //
@@ -115,17 +614,31 @@ ProxyOutgoingAsyncBase::completed(const Exception& exc)
115
614
  // the retry interval is 0. This method can be called with the
116
615
  // connection locked so we can't just retry here.
117
616
  //
118
- _instance->retryQueue()->add(this, handleException(exc));
617
+ _instance->retryQueue()->add(ICE_SHARED_FROM_THIS, _proxy->_handleException(exc, _handler, _mode, _sent, _cnt));
119
618
  return false;
120
619
  }
121
620
  catch(const Exception& ex)
122
621
  {
123
- return finished(ex); // No retries, we're done
622
+ return exceptionImpl(ex); // No retries, we're done
623
+ }
624
+ }
625
+
626
+ void
627
+ ProxyOutgoingAsyncBase::cancelable(const CancellationHandlerPtr& handler)
628
+ {
629
+ if(_proxy->_getReference()->getInvocationTimeout() == -2 && _cachedConnection)
630
+ {
631
+ const int timeout = _cachedConnection->timeout();
632
+ if(timeout > 0)
633
+ {
634
+ _instance->timer()->schedule(ICE_SHARED_FROM_THIS, IceUtil::Time::milliSeconds(timeout));
635
+ }
124
636
  }
637
+ OutgoingAsyncBase::cancelable(handler);
125
638
  }
126
639
 
127
640
  void
128
- ProxyOutgoingAsyncBase::retryException(const Exception& ex)
641
+ ProxyOutgoingAsyncBase::retryException(const Exception&)
129
642
  {
130
643
  try
131
644
  {
@@ -135,30 +648,16 @@ ProxyOutgoingAsyncBase::retryException(const Exception& ex)
135
648
  // require could end up waiting for the flush of the
136
649
  // connection to be done.
137
650
  //
138
- _proxy->__updateRequestHandler(_handler, 0); // Clear request handler and always retry.
139
- _instance->retryQueue()->add(this, 0);
651
+ _proxy->_updateRequestHandler(_handler, 0); // Clear request handler and always retry.
652
+ _instance->retryQueue()->add(ICE_SHARED_FROM_THIS, 0);
140
653
  }
141
654
  catch(const Ice::Exception& exc)
142
655
  {
143
- if(completed(exc))
144
- {
145
- invokeCompletedAsync();
146
- }
147
- }
148
- }
149
-
150
- void
151
- ProxyOutgoingAsyncBase::cancelable(const CancellationHandlerPtr& handler)
152
- {
153
- if(_proxy->__reference()->getInvocationTimeout() == -2 && _cachedConnection)
154
- {
155
- const int timeout = _cachedConnection->timeout();
156
- if(timeout > 0)
656
+ if(exception(exc))
157
657
  {
158
- _instance->timer()->schedule(this, IceUtil::Time::milliSeconds(timeout));
658
+ invokeExceptionAsync();
159
659
  }
160
660
  }
161
- AsyncResult::cancelable(handler);
162
661
  }
163
662
 
164
663
  void
@@ -172,9 +671,9 @@ ProxyOutgoingAsyncBase::abort(const Ice::Exception& ex)
172
671
  {
173
672
  assert(!_childObserver);
174
673
 
175
- if(finished(ex))
674
+ if(exceptionImpl(ex))
176
675
  {
177
- invokeCompletedAsync();
676
+ invokeExceptionAsync();
178
677
  }
179
678
  else if(dynamic_cast<const Ice::CommunicatorDestroyedException*>(&ex))
180
679
  {
@@ -187,18 +686,33 @@ ProxyOutgoingAsyncBase::abort(const Ice::Exception& ex)
187
686
  }
188
687
  }
189
688
 
190
- ProxyOutgoingAsyncBase::ProxyOutgoingAsyncBase(const ObjectPrx& prx,
191
- const string& operation,
192
- const CallbackBasePtr& delegate,
193
- const LocalObjectPtr& cookie) :
194
- OutgoingAsyncBase(prx->ice_getCommunicator(), prx->__reference()->getInstance(), operation, delegate, cookie),
689
+ #ifndef ICE_CPP11_MAPPING
690
+ Ice::ObjectPrx
691
+ ProxyOutgoingAsyncBase::getProxy() const
692
+ {
693
+ return _proxy;
694
+ }
695
+
696
+ Ice::CommunicatorPtr
697
+ ProxyOutgoingAsyncBase::getCommunicator() const
698
+ {
699
+ return _proxy->ice_getCommunicator();
700
+ }
701
+ #endif
702
+
703
+ ProxyOutgoingAsyncBase::ProxyOutgoingAsyncBase(const ObjectPrxPtr& prx) :
704
+ OutgoingAsyncBase(prx->_getReference()->getInstance()),
195
705
  _proxy(prx),
196
- _mode(Normal),
706
+ _mode(ICE_ENUM(OperationMode, Normal)),
197
707
  _cnt(0),
198
708
  _sent(false)
199
709
  {
200
710
  }
201
711
 
712
+ ProxyOutgoingAsyncBase::~ProxyOutgoingAsyncBase()
713
+ {
714
+ }
715
+
202
716
  void
203
717
  ProxyOutgoingAsyncBase::invokeImpl(bool userThread)
204
718
  {
@@ -206,10 +720,10 @@ ProxyOutgoingAsyncBase::invokeImpl(bool userThread)
206
720
  {
207
721
  if(userThread)
208
722
  {
209
- int invocationTimeout = _proxy->__reference()->getInvocationTimeout();
723
+ int invocationTimeout = _proxy->_getReference()->getInvocationTimeout();
210
724
  if(invocationTimeout > 0)
211
725
  {
212
- _instance->timer()->schedule(this, IceUtil::Time::milliSeconds(invocationTimeout));
726
+ _instance->timer()->schedule(ICE_SHARED_FROM_THIS, IceUtil::Time::milliSeconds(invocationTimeout));
213
727
  }
214
728
  }
215
729
  else
@@ -222,8 +736,8 @@ ProxyOutgoingAsyncBase::invokeImpl(bool userThread)
222
736
  try
223
737
  {
224
738
  _sent = false;
225
- _handler = _proxy->__getRequestHandler();
226
- AsyncStatus status = _handler->sendAsyncRequest(this);
739
+ _handler = _proxy->_getRequestHandler();
740
+ AsyncStatus status = _handler->sendAsyncRequest(ICE_SHARED_FROM_THIS);
227
741
  if(status & AsyncStatusSent)
228
742
  {
229
743
  if(userThread)
@@ -246,19 +760,19 @@ ProxyOutgoingAsyncBase::invokeImpl(bool userThread)
246
760
  }
247
761
  catch(const RetryException&)
248
762
  {
249
- _proxy->__updateRequestHandler(_handler, 0); // Clear request handler and always retry.
763
+ _proxy->_updateRequestHandler(_handler, 0); // Clear request handler and always retry.
250
764
  }
251
765
  catch(const Exception& ex)
252
766
  {
253
767
  if(_childObserver)
254
768
  {
255
- _childObserver.failed(ex.ice_name());
769
+ _childObserver.failed(ex.ice_id());
256
770
  _childObserver.detach();
257
771
  }
258
- int interval = handleException(ex);
772
+ int interval = _proxy->_handleException(ex, _handler, _mode, _sent, _cnt);
259
773
  if(interval > 0)
260
774
  {
261
- _instance->retryQueue()->add(this, interval);
775
+ _instance->retryQueue()->add(ICE_SHARED_FROM_THIS, interval);
262
776
  return;
263
777
  }
264
778
  else
@@ -272,63 +786,57 @@ ProxyOutgoingAsyncBase::invokeImpl(bool userThread)
272
786
  {
273
787
  //
274
788
  // If called from the user thread we re-throw, the exception
275
- // will be catch by the caller and abort() will be called.
789
+ // will be catch by the caller and abort(ex) will be called.
276
790
  //
277
791
  if(userThread)
278
792
  {
279
793
  throw;
280
794
  }
281
- else if(finished(ex)) // No retries, we're done
795
+ else if(exceptionImpl(ex)) // No retries, we're done
282
796
  {
283
- invokeCompletedAsync();
797
+ invokeExceptionAsync();
284
798
  }
285
799
  }
286
800
  }
287
801
 
288
802
  bool
289
- ProxyOutgoingAsyncBase::sent(bool done)
803
+ ProxyOutgoingAsyncBase::sentImpl(bool done)
290
804
  {
291
805
  _sent = true;
292
806
  if(done)
293
807
  {
294
- if(_proxy->__reference()->getInvocationTimeout() != -1)
808
+ if(_proxy->_getReference()->getInvocationTimeout() != -1)
295
809
  {
296
- _instance->timer()->cancel(this);
810
+ _instance->timer()->cancel(ICE_SHARED_FROM_THIS);
297
811
  }
298
812
  }
299
- return OutgoingAsyncBase::sent(done);
813
+ return OutgoingAsyncBase::sentImpl(done);
300
814
  }
301
815
 
302
816
  bool
303
- ProxyOutgoingAsyncBase::finished(const Exception& ex)
817
+ ProxyOutgoingAsyncBase::exceptionImpl(const Exception& ex)
304
818
  {
305
- if(_proxy->__reference()->getInvocationTimeout() != -1)
819
+ if(_proxy->_getReference()->getInvocationTimeout() != -1)
306
820
  {
307
- _instance->timer()->cancel(this);
821
+ _instance->timer()->cancel(ICE_SHARED_FROM_THIS);
308
822
  }
309
- return OutgoingAsyncBase::finished(ex);
823
+ return OutgoingAsyncBase::exceptionImpl(ex);
310
824
  }
311
825
 
312
826
  bool
313
- ProxyOutgoingAsyncBase::finished(bool ok)
827
+ ProxyOutgoingAsyncBase::responseImpl(bool ok, bool invoke)
314
828
  {
315
- if(_proxy->__reference()->getInvocationTimeout() != -1)
829
+ if(_proxy->_getReference()->getInvocationTimeout() != -1)
316
830
  {
317
- _instance->timer()->cancel(this);
831
+ _instance->timer()->cancel(ICE_SHARED_FROM_THIS);
318
832
  }
319
- return AsyncResult::finished(ok);
320
- }
321
-
322
- int
323
- ProxyOutgoingAsyncBase::handleException(const Exception& exc)
324
- {
325
- return _proxy->__handleException(exc, _handler, _mode, _sent, _cnt);
833
+ return OutgoingAsyncBase::responseImpl(ok, invoke);
326
834
  }
327
835
 
328
836
  void
329
837
  ProxyOutgoingAsyncBase::runTimerTask()
330
838
  {
331
- if(_proxy->__reference()->getInvocationTimeout() == -2)
839
+ if(_proxy->_getReference()->getInvocationTimeout() == -2)
332
840
  {
333
841
  cancel(ConnectionTimeoutException(__FILE__, __LINE__));
334
842
  }
@@ -338,24 +846,22 @@ ProxyOutgoingAsyncBase::runTimerTask()
338
846
  }
339
847
  }
340
848
 
341
- OutgoingAsync::OutgoingAsync(const ObjectPrx& prx,
342
- const string& operation,
343
- const CallbackBasePtr& delegate,
344
- const LocalObjectPtr& cookie) :
345
- ProxyOutgoingAsyncBase(prx, operation, delegate, cookie),
346
- _encoding(getCompatibleEncoding(prx->__reference()->getEncoding()))
849
+ OutgoingAsync::OutgoingAsync(const ObjectPrxPtr& prx, bool synchronous) :
850
+ ProxyOutgoingAsyncBase(prx),
851
+ _encoding(getCompatibleEncoding(prx->_getReference()->getEncoding())),
852
+ _synchronous(synchronous)
347
853
  {
348
854
  }
349
855
 
350
856
  void
351
- OutgoingAsync::prepare(const string& operation, OperationMode mode, const Context* context)
857
+ OutgoingAsync::prepare(const string& operation, OperationMode mode, const Context& context)
352
858
  {
353
- checkSupportedProtocol(getCompatibleProtocol(_proxy->__reference()->getProtocol()));
859
+ checkSupportedProtocol(getCompatibleProtocol(_proxy->_getReference()->getProtocol()));
354
860
 
355
861
  _mode = mode;
356
- _observer.attach(_proxy.get(), operation, context);
862
+ _observer.attach(_proxy, operation, context);
357
863
 
358
- switch(_proxy->__reference()->getMode())
864
+ switch(_proxy->_getReference()->getMode())
359
865
  {
360
866
  case Reference::ModeTwoway:
361
867
  case Reference::ModeOneway:
@@ -368,12 +874,12 @@ OutgoingAsync::prepare(const string& operation, OperationMode mode, const Contex
368
874
  case Reference::ModeBatchOneway:
369
875
  case Reference::ModeBatchDatagram:
370
876
  {
371
- _proxy->__getBatchRequestQueue()->prepareBatchRequest(&_os);
877
+ _proxy->_getBatchRequestQueue()->prepareBatchRequest(&_os);
372
878
  break;
373
879
  }
374
880
  }
375
881
 
376
- Reference* ref = _proxy->__reference().get();
882
+ Reference* ref = _proxy->_getReference().get();
377
883
 
378
884
  _os.write(ref->getIdentity());
379
885
 
@@ -394,12 +900,22 @@ OutgoingAsync::prepare(const string& operation, OperationMode mode, const Contex
394
900
 
395
901
  _os.write(static_cast<Byte>(_mode));
396
902
 
397
- if(context != 0)
903
+ #if defined(_MSC_VER) && (_MSC_VER <= 1600)
904
+ //
905
+ // COMPILERFIX v90 and v100 get confused with namespaces and we need to
906
+ // defined both Ice::noExplicitContext and IceProxy::Ice::noExplicitContext
907
+ // see comments in Ice/Proxy.h.
908
+ //
909
+ if(&context != &Ice::noExplicitContext &&
910
+ &context != &IceProxy::Ice::noExplicitContext)
911
+ #else
912
+ if(&context != &Ice::noExplicitContext)
913
+ #endif
398
914
  {
399
915
  //
400
916
  // Explicit context
401
917
  //
402
- _os.write(*context);
918
+ _os.write(context);
403
919
  }
404
920
  else
405
921
  {
@@ -422,61 +938,11 @@ OutgoingAsync::prepare(const string& operation, OperationMode mode, const Contex
422
938
  bool
423
939
  OutgoingAsync::sent()
424
940
  {
425
- return ProxyOutgoingAsyncBase::sent(!_proxy->ice_isTwoway()); // done = true if it's not a two-way proxy
426
- }
427
-
428
- AsyncStatus
429
- OutgoingAsync::invokeRemote(const ConnectionIPtr& connection, bool compress, bool response)
430
- {
431
- _cachedConnection = connection;
432
- return connection->sendAsyncRequest(this, compress, response, 0);
433
- }
434
-
435
- AsyncStatus
436
- OutgoingAsync::invokeCollocated(CollocatedRequestHandler* handler)
437
- {
438
- return handler->invokeAsyncRequest(this, 0);
439
- }
440
-
441
- void
442
- OutgoingAsync::abort(const Exception& ex)
443
- {
444
- const Reference::Mode mode = _proxy->__reference()->getMode();
445
- if(mode == Reference::ModeBatchOneway || mode == Reference::ModeBatchDatagram)
446
- {
447
- //
448
- // If we didn't finish a batch oneway or datagram request, we
449
- // must notify the connection about that we give up ownership
450
- // of the batch stream.
451
- //
452
- _proxy->__getBatchRequestQueue()->abortBatchRequest(&_os);
453
- }
454
-
455
- ProxyOutgoingAsyncBase::abort(ex);
456
- }
457
-
458
- void
459
- OutgoingAsync::invoke()
460
- {
461
- const Reference::Mode mode = _proxy->__reference()->getMode();
462
- if(mode == Reference::ModeBatchOneway || mode == Reference::ModeBatchDatagram)
463
- {
464
- _sentSynchronously = true;
465
- _proxy->__getBatchRequestQueue()->finishBatchRequest(&_os, _proxy, getOperation());
466
- finished(true);
467
- return; // Don't call sent/completed callback for batch AMI requests
468
- }
469
-
470
- //
471
- // NOTE: invokeImpl doesn't throw so this can be called from the
472
- // try block with the catch block calling abort() in case of an
473
- // exception.
474
- //
475
- invokeImpl(true); // userThread = true
941
+ return ProxyOutgoingAsyncBase::sentImpl(!_proxy->ice_isTwoway()); // done = true if it's not a two-way proxy
476
942
  }
477
943
 
478
944
  bool
479
- OutgoingAsync::completed()
945
+ OutgoingAsync::response()
480
946
  {
481
947
  //
482
948
  // NOTE: this method is called from ConnectionI.parseMessage
@@ -533,7 +999,7 @@ OutgoingAsync::completed()
533
999
  string operation;
534
1000
  _is.read(operation, false);
535
1001
 
536
- IceUtil::UniquePtr<RequestFailedException> ex;
1002
+ IceInternal::UniquePtr<RequestFailedException> ex;
537
1003
  switch(replyStatus)
538
1004
  {
539
1005
  case replyObjectNotExist:
@@ -565,6 +1031,7 @@ OutgoingAsync::completed()
565
1031
  ex->facet = facet;
566
1032
  ex->operation = operation;
567
1033
  ex->ice_throw();
1034
+ break;
568
1035
  }
569
1036
 
570
1037
  case replyUnknownException:
@@ -574,7 +1041,7 @@ OutgoingAsync::completed()
574
1041
  string unknown;
575
1042
  _is.read(unknown, false);
576
1043
 
577
- IceUtil::UniquePtr<UnknownException> ex;
1044
+ IceInternal::UniquePtr<UnknownException> ex;
578
1045
  switch(replyStatus)
579
1046
  {
580
1047
  case replyUnknownException:
@@ -604,6 +1071,7 @@ OutgoingAsync::completed()
604
1071
 
605
1072
  ex->unknown = unknown;
606
1073
  ex->ice_throw();
1074
+ break;
607
1075
  }
608
1076
 
609
1077
  default:
@@ -612,276 +1080,243 @@ OutgoingAsync::completed()
612
1080
  }
613
1081
  }
614
1082
 
615
- return finished(replyStatus == replyOK);
1083
+ return responseImpl(replyStatus == replyOK, true);
616
1084
  }
617
1085
  catch(const Exception& ex)
618
1086
  {
619
- return completed(ex);
1087
+ return exception(ex);
620
1088
  }
621
1089
  }
622
1090
 
623
- ProxyFlushBatchAsync::ProxyFlushBatchAsync(const ObjectPrx& proxy,
624
- const string& operation,
625
- const CallbackBasePtr& delegate,
626
- const LocalObjectPtr& cookie) :
627
- ProxyOutgoingAsyncBase(proxy, operation, delegate, cookie)
628
- {
629
- _observer.attach(proxy.get(), operation, 0);
630
- _batchRequestNum = proxy->__getBatchRequestQueue()->swap(&_os);
631
- }
632
-
633
1091
  AsyncStatus
634
- ProxyFlushBatchAsync::invokeRemote(const ConnectionIPtr& connection, bool compress, bool)
1092
+ OutgoingAsync::invokeRemote(const ConnectionIPtr& connection, bool compress, bool response)
635
1093
  {
636
- if(_batchRequestNum == 0)
637
- {
638
- if(sent())
639
- {
640
- return static_cast<AsyncStatus>(AsyncStatusSent | AsyncStatusInvokeSentCallback);
641
- }
642
- else
643
- {
644
- return AsyncStatusSent;
645
- }
646
- }
647
1094
  _cachedConnection = connection;
648
- return connection->sendAsyncRequest(this, compress, false, _batchRequestNum);
1095
+ return connection->sendAsyncRequest(ICE_SHARED_FROM_THIS, compress, response, 0);
649
1096
  }
650
1097
 
651
1098
  AsyncStatus
652
- ProxyFlushBatchAsync::invokeCollocated(CollocatedRequestHandler* handler)
1099
+ OutgoingAsync::invokeCollocated(CollocatedRequestHandler* handler)
653
1100
  {
654
- if(_batchRequestNum == 0)
655
- {
656
- if(sent())
657
- {
658
- return static_cast<AsyncStatus>(AsyncStatusSent | AsyncStatusInvokeSentCallback);
659
- }
660
- else
661
- {
662
- return AsyncStatusSent;
663
- }
664
- }
665
- return handler->invokeAsyncRequest(this, _batchRequestNum);
1101
+ return handler->invokeAsyncRequest(this, 0, _synchronous);
666
1102
  }
667
1103
 
668
1104
  void
669
- ProxyFlushBatchAsync::invoke()
670
- {
671
- checkSupportedProtocol(getCompatibleProtocol(_proxy->__reference()->getProtocol()));
672
- invokeImpl(true); // userThread = true
673
- }
674
-
675
- ProxyGetConnection::ProxyGetConnection(const ObjectPrx& prx,
676
- const string& operation,
677
- const CallbackBasePtr& delegate,
678
- const LocalObjectPtr& cookie) :
679
- ProxyOutgoingAsyncBase(prx, operation, delegate, cookie)
680
- {
681
- _observer.attach(prx.get(), operation, 0);
682
- }
683
-
684
- AsyncStatus
685
- ProxyGetConnection::invokeRemote(const ConnectionIPtr& connection, bool, bool)
1105
+ OutgoingAsync::abort(const Exception& ex)
686
1106
  {
687
- _cachedConnection = connection;
688
- if(finished(true))
1107
+ const Reference::Mode mode = _proxy->_getReference()->getMode();
1108
+ if(mode == Reference::ModeBatchOneway || mode == Reference::ModeBatchDatagram)
689
1109
  {
690
- invokeCompletedAsync();
1110
+ //
1111
+ // If we didn't finish a batch oneway or datagram request, we
1112
+ // must notify the connection about that we give up ownership
1113
+ // of the batch stream.
1114
+ //
1115
+ _proxy->_getBatchRequestQueue()->abortBatchRequest(&_os);
691
1116
  }
692
- return AsyncStatusSent;
1117
+
1118
+ ProxyOutgoingAsyncBase::abort(ex);
693
1119
  }
694
1120
 
695
- AsyncStatus
696
- ProxyGetConnection::invokeCollocated(CollocatedRequestHandler*)
1121
+ void
1122
+ OutgoingAsync::invoke(const string& operation)
697
1123
  {
698
- if(finished(true))
1124
+ const Reference::Mode mode = _proxy->_getReference()->getMode();
1125
+ if(mode == Reference::ModeBatchOneway || mode == Reference::ModeBatchDatagram)
699
1126
  {
700
- invokeCompletedAsync();
1127
+ _sentSynchronously = true;
1128
+ _proxy->_getBatchRequestQueue()->finishBatchRequest(&_os, _proxy, operation);
1129
+ responseImpl(true, false); // Don't call sent/completed callback for batch AMI requests
1130
+ return;
701
1131
  }
702
- return AsyncStatusSent;
703
- }
704
1132
 
705
- void
706
- ProxyGetConnection::invoke()
707
- {
1133
+ //
1134
+ // NOTE: invokeImpl doesn't throw so this can be called from the
1135
+ // try block with the catch block calling abort(ex) in case of an
1136
+ // exception.
1137
+ //
708
1138
  invokeImpl(true); // userThread = true
709
1139
  }
710
1140
 
711
- ConnectionFlushBatchAsync::ConnectionFlushBatchAsync(const ConnectionIPtr& connection,
712
- const CommunicatorPtr& communicator,
713
- const InstancePtr& instance,
714
- const string& operation,
715
- const CallbackBasePtr& delegate,
716
- const LocalObjectPtr& cookie) :
717
- OutgoingAsyncBase(communicator, instance, operation, delegate, cookie), _connection(connection)
718
- {
719
- _observer.attach(instance.get(), operation);
720
- }
721
-
722
- ConnectionPtr
723
- ConnectionFlushBatchAsync::getConnection() const
724
- {
725
- return _connection;
726
- }
727
-
1141
+ #ifdef ICE_CPP11_MAPPING
728
1142
  void
729
- ConnectionFlushBatchAsync::invoke()
1143
+ OutgoingAsync::invoke(const string& operation,
1144
+ Ice::OperationMode mode,
1145
+ Ice::FormatType format,
1146
+ const Ice::Context& context,
1147
+ function<void(Ice::OutputStream*)> write)
730
1148
  {
731
1149
  try
732
1150
  {
733
- AsyncStatus status;
734
- int batchRequestNum = _connection->getBatchRequestQueue()->swap(&_os);
735
- if(batchRequestNum == 0)
1151
+ prepare(operation, mode, context);
1152
+ if(write)
736
1153
  {
737
- status = AsyncStatusSent;
738
- if(sent())
739
- {
740
- status = static_cast<AsyncStatus>(status | AsyncStatusInvokeSentCallback);
741
- }
1154
+ _os.startEncapsulation(_encoding, format);
1155
+ write(&_os);
1156
+ _os.endEncapsulation();
742
1157
  }
743
1158
  else
744
1159
  {
745
- status = _connection->sendAsyncRequest(this, false, false, batchRequestNum);
746
- }
747
-
748
- if(status & AsyncStatusSent)
749
- {
750
- _sentSynchronously = true;
751
- if(status & AsyncStatusInvokeSentCallback)
752
- {
753
- invokeSent();
754
- }
1160
+ _os.writeEmptyEncapsulation(_encoding);
755
1161
  }
1162
+ invoke(operation);
756
1163
  }
757
- catch(const RetryException& ex)
1164
+ catch(const Ice::Exception& ex)
758
1165
  {
759
- if(completed(*ex.get()))
760
- {
761
- invokeCompletedAsync();
762
- }
1166
+ abort(ex);
763
1167
  }
764
- catch(const Exception& ex)
1168
+ }
1169
+
1170
+ void
1171
+ OutgoingAsync::throwUserException()
1172
+ {
1173
+ try
765
1174
  {
766
- if(completed(ex))
1175
+ _is.startEncapsulation();
1176
+ _is.throwException();
1177
+ }
1178
+ catch(const UserException& ex)
1179
+ {
1180
+ _is.endEncapsulation();
1181
+ if(_userException)
767
1182
  {
768
- invokeCompletedAsync();
1183
+ _userException(ex);
769
1184
  }
1185
+ throw UnknownUserException(__FILE__, __LINE__, ex.ice_id());
770
1186
  }
771
1187
  }
772
1188
 
773
- CommunicatorFlushBatchAsync::CommunicatorFlushBatchAsync(const CommunicatorPtr& communicator,
774
- const InstancePtr& instance,
775
- const string& operation,
776
- const CallbackBasePtr& cb,
777
- const LocalObjectPtr& cookie) :
778
- AsyncResult(communicator, instance, operation, cb, cookie)
1189
+ #endif
1190
+
1191
+ #ifdef ICE_CPP11_MAPPING
1192
+
1193
+ bool
1194
+ LambdaInvoke::handleSent(bool, bool alreadySent)
1195
+ {
1196
+ return _sent != nullptr && !alreadySent; // Invoke the sent callback only if not already invoked.
1197
+ }
1198
+
1199
+ bool
1200
+ LambdaInvoke::handleException(const Ice::Exception&)
779
1201
  {
780
- _observer.attach(instance.get(), operation);
1202
+ return _exception != nullptr; // Invoke the callback
1203
+ }
781
1204
 
782
- //
783
- // _useCount is initialized to 1 to prevent premature callbacks.
784
- // The caller must invoke ready() after all flush requests have
785
- // been initiated.
786
- //
787
- _useCount = 1;
1205
+ bool
1206
+ LambdaInvoke::handleResponse(bool)
1207
+ {
1208
+ return _response != nullptr;
1209
+ }
1210
+
1211
+ void
1212
+ LambdaInvoke::handleInvokeSent(bool sentSynchronously, OutgoingAsyncBase*) const
1213
+ {
1214
+ _sent(sentSynchronously);
788
1215
  }
789
1216
 
790
1217
  void
791
- CommunicatorFlushBatchAsync::flushConnection(const ConnectionIPtr& con)
1218
+ LambdaInvoke::handleInvokeException(const Ice::Exception& ex, OutgoingAsyncBase*) const
792
1219
  {
793
- class FlushBatch : public OutgoingAsyncBase
1220
+ try
794
1221
  {
795
- public:
1222
+ ex.ice_throw();
1223
+ }
1224
+ catch(const Ice::Exception&)
1225
+ {
1226
+ _exception(current_exception());
1227
+ }
1228
+ }
796
1229
 
797
- FlushBatch(const CommunicatorFlushBatchAsyncPtr& outAsync,
798
- const InstancePtr& instance,
799
- InvocationObserver& observer) :
800
- OutgoingAsyncBase(outAsync->getCommunicator(), instance, outAsync->getOperation(), __dummyCallback, 0),
801
- _outAsync(outAsync),
802
- _observer(observer)
803
- {
804
- }
1230
+ void
1231
+ LambdaInvoke::handleInvokeResponse(bool ok, OutgoingAsyncBase*) const
1232
+ {
1233
+ _response(ok);
1234
+ }
805
1235
 
806
- virtual bool sent()
807
- {
808
- _childObserver.detach();
809
- _outAsync->check(false);
810
- return false;
811
- }
1236
+ #else // C++98
812
1237
 
813
- virtual bool completed(const Exception& ex)
814
- {
815
- _childObserver.failed(ex.ice_name());
816
- _childObserver.detach();
817
- _outAsync->check(false);
818
- return false;
819
- }
1238
+ namespace
1239
+ {
820
1240
 
821
- private:
1241
+ //
1242
+ // Dummy class derived from CallbackBase
1243
+ // We use this class for the dummyCallback extern pointer in OutgoingAsync. In turn,
1244
+ // this allows us to test whether the user supplied a null delegate instance to the
1245
+ // generated begin_ method without having to generate a separate test to throw IllegalArgumentException
1246
+ // in the inlined versions of the begin_ method. In other words, this reduces the amount of generated
1247
+ // object code.
1248
+ //
1249
+ class DummyCallback : public CallbackBase
1250
+ {
1251
+ public:
822
1252
 
823
- virtual InvocationObserver& getObserver()
824
- {
825
- return _observer;
826
- }
1253
+ DummyCallback()
1254
+ {
1255
+ }
827
1256
 
828
- const CommunicatorFlushBatchAsyncPtr _outAsync;
829
- InvocationObserver& _observer;
830
- };
1257
+ virtual void
1258
+ completed(const Ice::AsyncResultPtr&) const
1259
+ {
1260
+ assert(false);
1261
+ }
831
1262
 
1263
+ virtual CallbackBasePtr
1264
+ verify(const Ice::LocalObjectPtr&)
832
1265
  {
833
- IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
834
- ++_useCount;
1266
+ //
1267
+ // Called by the AsyncResult constructor to verify the delegate. The dummy
1268
+ // delegate is passed when the user used a begin_ method without delegate.
1269
+ // By returning 0 here, we tell the AsyncResult that no delegates was
1270
+ // provided.
1271
+ //
1272
+ return 0;
835
1273
  }
836
1274
 
837
- try
1275
+ virtual void
1276
+ sent(const AsyncResultPtr&) const
838
1277
  {
839
- OutgoingAsyncBasePtr flushBatch = new FlushBatch(this, _instance, _observer);
840
- int batchRequestNum = con->getBatchRequestQueue()->swap(flushBatch->getOs());
841
- if(batchRequestNum == 0)
842
- {
843
- flushBatch->sent();
844
- }
845
- else
846
- {
847
- con->sendAsyncRequest(flushBatch, false, false, batchRequestNum);
848
- }
1278
+ assert(false);
849
1279
  }
850
- catch(const LocalException&)
1280
+
1281
+ virtual bool
1282
+ hasSentCallback() const
851
1283
  {
852
- check(false);
853
- throw;
1284
+ assert(false);
1285
+ return false;
854
1286
  }
1287
+ };
1288
+
855
1289
  }
856
1290
 
857
- void
858
- CommunicatorFlushBatchAsync::ready()
1291
+ //
1292
+ // This gives a pointer value to compare against in the generated
1293
+ // begin_ method to decide whether the caller passed a null pointer
1294
+ // versus the generated inline version of the begin_ method having
1295
+ // passed a pointer to the dummy delegate.
1296
+ //
1297
+ CallbackBasePtr IceInternal::dummyCallback = new DummyCallback;
1298
+
1299
+ CallbackBase::~CallbackBase()
859
1300
  {
860
- check(true);
1301
+ // Out of line to avoid weak vtable
861
1302
  }
862
1303
 
863
1304
  void
864
- CommunicatorFlushBatchAsync::check(bool userThread)
1305
+ CallbackBase::checkCallback(bool obj, bool cb)
865
1306
  {
1307
+ if(!obj)
866
1308
  {
867
- IceUtil::Monitor<IceUtil::Mutex>::Lock sync(_monitor);
868
- assert(_useCount > 0);
869
- if(--_useCount > 0)
870
- {
871
- return;
872
- }
1309
+ throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "callback object cannot be null");
873
1310
  }
874
-
875
- if(sent(true))
1311
+ if(!cb)
876
1312
  {
877
- if(userThread)
878
- {
879
- _sentSynchronously = true;
880
- invokeSent();
881
- }
882
- else
883
- {
884
- invokeSentAsync();
885
- }
1313
+ throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "callback cannot be null");
886
1314
  }
887
1315
  }
1316
+
1317
+ GenericCallbackBase::~GenericCallbackBase()
1318
+ {
1319
+ // Out of line to avoid weak vtable
1320
+ }
1321
+
1322
+ #endif