org.opendaylight.netconf.impl.util.DeserializerExceptionHandler.java Source code

Java tutorial

Introduction

Here is the source code for org.opendaylight.netconf.impl.util.DeserializerExceptionHandler.java

Source

/*
 * 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.impl.util;

import com.google.common.collect.Maps;
import io.netty.channel.ChannelHandler;
import io.netty.channel.ChannelHandlerContext;
import java.util.Map;
import org.opendaylight.controller.config.util.xml.DocumentedException;
import org.opendaylight.netconf.util.messages.SendErrorExceptionUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public final class DeserializerExceptionHandler implements ChannelHandler {

    private static final Logger LOG = LoggerFactory.getLogger(DeserializerExceptionHandler.class);

    @Override
    public void handlerAdded(ChannelHandlerContext ctx) throws Exception {
        // NOOP
    }

    @Override
    public void handlerRemoved(ChannelHandlerContext ctx) throws Exception {
        // NOOP
    }

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
        LOG.warn("An exception occurred during message handling", cause);
        handleDeserializerException(ctx, cause);
    }

    private void handleDeserializerException(ChannelHandlerContext ctx, Throwable cause) {

        Map<String, String> info = Maps.newHashMap();
        info.put("cause", cause.getMessage());
        DocumentedException ex = new DocumentedException(cause.getMessage(), DocumentedException.ErrorType.rpc,
                DocumentedException.ErrorTag.malformed_message, DocumentedException.ErrorSeverity.error, info);

        SendErrorExceptionUtil.sendErrorMessage(ctx.channel(), ex);
    }
}