Merge remote-tracking branch 'remotes/origin/master' into ignite-1093
Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/58a4199b Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/58a4199b Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/58a4199b Branch: refs/heads/ignite-1093 Commit: 58a4199bad1b3d0b81646998ed8e0c7ac5b95cad Parents: d89f1b0 e2f522b Author: Anton Vinogradov <[email protected]> Authored: Fri Aug 28 17:01:14 2015 +0300 Committer: Anton Vinogradov <[email protected]> Committed: Fri Aug 28 17:01:14 2015 +0300 ---------------------------------------------------------------------- .../ignite/internal/IgniteInternalFuture.java | 10 + .../org/apache/ignite/internal/IgnitionEx.java | 23 +- .../internal/portable/PortableContext.java | 124 +- .../processors/cache/GridCacheAdapter.java | 10 +- .../distributed/dht/GridDhtTxPrepareFuture.java | 6 +- .../dht/atomic/GridDhtAtomicCache.java | 10 +- .../query/GridCacheQueryFutureAdapter.java | 7 + .../processors/igfs/IgfsDataManager.java | 169 ++- .../processors/igfs/IgfsMetaManager.java | 43 +- .../processors/igfs/IgfsOutputStreamImpl.java | 2 + .../internal/processors/igfs/IgfsUtils.java | 52 + .../platform/PlatformAwareEventFilter.java | 4 +- .../processors/platform/PlatformContext.java | 149 +++ .../platform/PlatformNoopProcessor.java | 5 + .../processors/platform/PlatformProcessor.java | 7 + .../processors/platform/PlatformTarget.java | 76 ++ .../cache/PlatformCacheEntryFilter.java | 29 + .../cache/query/PlatformContinuousQuery.java | 58 + .../platform/compute/PlatformJob.java | 39 + .../platform/services/PlatformService.java | 44 + .../util/future/GridEmbeddedFuture.java | 55 +- .../util/future/GridFinishedFuture.java | 5 + .../internal/util/future/GridFutureAdapter.java | 58 +- ...acheAsyncOperationsFailoverAbstractTest.java | 329 ++++++ .../CacheAsyncOperationsFailoverAtomicTest.java | 32 + .../CacheAsyncOperationsFailoverTxTest.java | 32 + .../distributed/CacheAsyncOperationsTest.java | 280 +++++ .../igfs/IgfsBackupFailoverSelfTest.java | 137 ++- .../testframework/junits/GridAbstractTest.java | 2 +- .../IgniteCacheFailoverTestSuite2.java | 4 + .../testsuites/IgniteCacheTestSuite3.java | 2 + .../platform/PlatformAbstractPredicate.java | 64 ++ .../processors/platform/PlatformBootstrap.java | 1 - .../processors/platform/PlatformTarget.java | 76 -- .../platform/cache/PlatformCache.java | 1056 ++++++++++++++++++ .../cache/PlatformCacheEntryFilterImpl.java | 105 ++ .../cache/PlatformCacheEntryProcessor.java | 212 ++++ .../PlatformCachePartialUpdateException.java | 68 ++ .../query/PlatformContinuousQueryImpl.java | 230 ++++ .../PlatformContinuousQueryRemoteFilter.java | 183 +++ .../platform/cluster/PlatformClusterGroup.java | 330 ++++++ .../cluster/PlatformClusterNodeFilter.java | 77 ++ .../platform/compute/PlatformAbstractJob.java | 154 +++ .../platform/compute/PlatformAbstractTask.java | 202 ++++ .../PlatformBalancingMultiClosureTask.java | 78 ++ ...tformBalancingSingleClosureAffinityTask.java | 86 ++ .../PlatformBalancingSingleClosureTask.java | 77 ++ .../PlatformBroadcastingMultiClosureTask.java | 83 ++ .../PlatformBroadcastingSingleClosureTask.java | 81 ++ .../platform/compute/PlatformClosureJob.java | 102 ++ .../platform/compute/PlatformCompute.java | 323 ++++++ .../platform/compute/PlatformFullJob.java | 217 ++++ .../platform/compute/PlatformFullTask.java | 185 +++ .../compute/PlatformNativeException.java | 75 ++ .../datastreamer/PlatformDataStreamer.java | 222 ++++ .../datastreamer/PlatformStreamReceiver.java | 114 ++ .../platform/dotnet/PlatformDotNetService.java | 27 + .../dotnet/PlatformDotNetServiceImpl.java | 47 + .../platform/events/PlatformEventFilter.java | 161 +++ .../platform/events/PlatformEvents.java | 388 +++++++ .../messaging/PlatformMessageFilter.java | 109 ++ .../messaging/PlatformMessageLocalFilter.java | 102 ++ .../platform/messaging/PlatformMessaging.java | 162 +++ .../services/PlatformAbstractService.java | 223 ++++ .../platform/services/PlatformServices.java | 252 +++++ .../platform/utils/PlatformUtils.java | 75 ++ scripts/apply-pull-request.sh | 2 + 67 files changed, 7463 insertions(+), 289 deletions(-) ----------------------------------------------------------------------
