You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by rm...@apache.org on 2016/12/06 09:25:30 UTC

flink git commit: [hotfix] Check for null in OperatorSnapshotResult#cancel

Repository: flink
Updated Branches:
  refs/heads/master 8d7c3ff08 -> 8134f4433


[hotfix] Check for null in OperatorSnapshotResult#cancel

This closes #2950


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/8134f443
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/8134f443
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/8134f443

Branch: refs/heads/master
Commit: 8134f4433f13d768bf21cfde5c0ea36f1fe08748
Parents: 8d7c3ff
Author: Stefan Richter <s....@data-artisans.com>
Authored: Tue Dec 6 10:08:51 2016 +0100
Committer: Robert Metzger <rm...@apache.org>
Committed: Tue Dec 6 10:24:55 2016 +0100

----------------------------------------------------------------------
 .../api/operators/OperatorSnapshotResult.java   | 16 +++-
 .../operators/OperatorSnapshotResultTest.java   | 99 ++++++++++++++++++++
 2 files changed, 111 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/8134f443/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResult.java
----------------------------------------------------------------------
diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResult.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResult.java
index 4265edc..8b9f758 100644
--- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResult.java
+++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResult.java
@@ -21,6 +21,7 @@ package org.apache.flink.streaming.api.operators;
 import org.apache.flink.runtime.state.KeyGroupsStateHandle;
 import org.apache.flink.runtime.state.OperatorStateHandle;
 
+import java.util.concurrent.Future;
 import java.util.concurrent.RunnableFuture;
 
 /**
@@ -34,6 +35,7 @@ public class OperatorSnapshotResult {
 	private RunnableFuture<OperatorStateHandle> operatorStateRawFuture;
 
 	public OperatorSnapshotResult() {
+		this(null, null, null, null);
 	}
 
 	public OperatorSnapshotResult(
@@ -80,9 +82,15 @@ public class OperatorSnapshotResult {
 	}
 
 	public void cancel() {
-		getKeyedStateManagedFuture().cancel(true);
-		getOperatorStateManagedFuture().cancel(true);
-		getKeyedStateRawFuture().cancel(true);
-		getOperatorStateRawFuture().cancel(true);
+		cancelIfNotNull(getKeyedStateManagedFuture());
+		cancelIfNotNull(getOperatorStateManagedFuture());
+		cancelIfNotNull(getKeyedStateRawFuture());
+		cancelIfNotNull(getOperatorStateRawFuture());
+	}
+
+	private static void cancelIfNotNull(Future<?> future) {
+		if (null != future) {
+			future.cancel(true);
+		}
 	}
 }

http://git-wip-us.apache.org/repos/asf/flink/blob/8134f443/flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResultTest.java
----------------------------------------------------------------------
diff --git a/flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResultTest.java b/flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResultTest.java
new file mode 100644
index 0000000..7e0ce5b
--- /dev/null
+++ b/flink-streaming-java/src/test/java/org/apache/flink/streaming/api/operators/OperatorSnapshotResultTest.java
@@ -0,0 +1,99 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.streaming.api.operators;
+
+import org.apache.flink.runtime.state.KeyGroupsStateHandle;
+import org.apache.flink.runtime.state.OperatorStateHandle;
+import org.junit.Assert;
+import org.junit.Test;
+
+import java.util.concurrent.ExecutionException;
+import java.util.concurrent.RunnableFuture;
+import java.util.concurrent.TimeUnit;
+import java.util.concurrent.TimeoutException;
+
+public class OperatorSnapshotResultTest {
+
+	@Test
+	public void testCancel() {
+		OperatorSnapshotResult operatorSnapshotResult = new OperatorSnapshotResult();
+
+		operatorSnapshotResult.cancel();
+
+		RunnableFuture<KeyGroupsStateHandle> keyedStateManagedFuture = new TestRunnableFuture<>();
+		RunnableFuture<KeyGroupsStateHandle> keyedStateRawFuture = new TestRunnableFuture<>();
+		RunnableFuture<OperatorStateHandle> operatorStateManagedFuture = new TestRunnableFuture<>();
+		RunnableFuture<OperatorStateHandle> operatorStateRawFuture = new TestRunnableFuture<>();
+
+		operatorSnapshotResult = new OperatorSnapshotResult(
+				keyedStateManagedFuture,
+				keyedStateRawFuture,
+				operatorStateManagedFuture,
+				operatorStateRawFuture);
+
+		operatorSnapshotResult.cancel();
+
+		Assert.assertTrue(keyedStateManagedFuture.isCancelled());
+		Assert.assertTrue(keyedStateRawFuture.isCancelled());
+		Assert.assertTrue(operatorStateManagedFuture.isCancelled());
+		Assert.assertTrue(operatorStateRawFuture.isCancelled());
+
+	}
+
+	static final class TestRunnableFuture<T> implements RunnableFuture<T> {
+
+		private boolean canceled;
+
+		public TestRunnableFuture() {
+			this.canceled = false;
+		}
+
+		@Override
+		public void run() {
+
+		}
+
+		@Override
+		public boolean cancel(boolean mayInterruptIfRunning) {
+			return canceled = true;
+		}
+
+		@Override
+		public boolean isCancelled() {
+			return canceled;
+		}
+
+		@Override
+		public boolean isDone() {
+			return false;
+		}
+
+		@Override
+		public T get() throws InterruptedException, ExecutionException {
+			return null;
+		}
+
+		@Override
+		public T get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
+			return null;
+		}
+	}
+
+
+}
\ No newline at end of file