/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.netconf.server.util; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.ChannelInboundHandlerAdapter; import java.util.Map; import org.opendaylight.netconf.api.DocumentedException; import org.opendaylight.netconf.server.SendErrorExceptionUtil; import org.opendaylight.yangtools.yang.common.ErrorSeverity; import org.opendaylight.yangtools.yang.common.ErrorTag; import org.opendaylight.yangtools.yang.common.ErrorType; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public final class DeserializerExceptionHandler extends ChannelInboundHandlerAdapter { private static final Logger LOG = LoggerFactory.getLogger(DeserializerExceptionHandler.class); @Override public void exceptionCaught(final ChannelHandlerContext ctx, final Throwable cause) { LOG.warn("An exception occurred during message handling", cause); handleDeserializerException(ctx, cause); } private static void handleDeserializerException(final ChannelHandlerContext ctx, final Throwable cause) { final String message = cause.getMessage(); SendErrorExceptionUtil.sendErrorMessage(ctx.channel(), new DocumentedException(message, ErrorType.RPC, ErrorTag.MALFORMED_MESSAGE, ErrorSeverity.ERROR, message != null ? Map.of("cause", message) : Map.of())); } }