Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 056CC200BA9 for ; Sun, 23 Oct 2016 11:18:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 046AF160B02; Sun, 23 Oct 2016 09:18:17 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4DDE7160AD8 for ; Sun, 23 Oct 2016 11:18:16 +0200 (CEST) Received: (qmail 27185 invoked by uid 500); 23 Oct 2016 09:18:15 -0000 Mailing-List: contact commits-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list commits@flink.apache.org Received: (qmail 27168 invoked by uid 99); 23 Oct 2016 09:18:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 23 Oct 2016 09:18:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6A6DAF1598; Sun, 23 Oct 2016 09:18:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: trohrmann@apache.org To: commits@flink.apache.org Date: Sun, 23 Oct 2016 09:18:16 -0000 Message-Id: In-Reply-To: <956853539272414f966ab4a57c96a743@git.apache.org> References: <956853539272414f966ab4a57c96a743@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/5] flink git commit: [FLINK-4851] [rm] Introduce FatalErrorHandler and MetricRegistry to RM archived-at: Sun, 23 Oct 2016 09:18:17 -0000 http://git-wip-us.apache.org/repos/asf/flink/blob/f38bf448/flink-runtime/src/test/java/org/apache/flink/runtime/util/TestingFatalErrorHandler.java ---------------------------------------------------------------------- diff --git a/flink-runtime/src/test/java/org/apache/flink/runtime/util/TestingFatalErrorHandler.java b/flink-runtime/src/test/java/org/apache/flink/runtime/util/TestingFatalErrorHandler.java new file mode 100644 index 0000000..616313c --- /dev/null +++ b/flink-runtime/src/test/java/org/apache/flink/runtime/util/TestingFatalErrorHandler.java @@ -0,0 +1,83 @@ +/* + * 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.runtime.util; + +import org.apache.flink.runtime.rpc.FatalErrorHandler; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.util.concurrent.atomic.AtomicReference; + +/** + * Testing fatal error handler which records the occurred exceptions during the execution of the + * tests. Captured exceptions are thrown as a {@link TestingException}. + */ +public class TestingFatalErrorHandler implements FatalErrorHandler { + private static final Logger LOG = LoggerFactory.getLogger(TestingFatalErrorHandler.class); + private final AtomicReference atomicThrowable; + + public TestingFatalErrorHandler() { + atomicThrowable = new AtomicReference<>(null); + } + + public void rethrowError() throws TestingException { + Throwable throwable = atomicThrowable.get(); + + if (throwable != null) { + throw new TestingException(throwable); + } + } + + public boolean hasExceptionOccurred() { + return atomicThrowable.get() != null; + } + + public Throwable getException() { + return atomicThrowable.get(); + } + + @Override + public void onFatalError(Throwable exception) { + LOG.error("OnFatalError:", exception); + + if (!atomicThrowable.compareAndSet(null, exception)) { + atomicThrowable.get().addSuppressed(exception); + } + } + + //------------------------------------------------------------------ + // static utility classes + //------------------------------------------------------------------ + + private static final class TestingException extends Exception { + public TestingException(String message) { + super(message); + } + + public TestingException(String message, Throwable cause) { + super(message, cause); + } + + public TestingException(Throwable cause) { + super(cause); + } + + private static final long serialVersionUID = -4648195335470914498L; + } +}