MVPN RFC6514 Extendend communities
[bgpcep.git] / bgp / parser-impl / src / main / java / org / opendaylight / protocol / bgp / parser / impl / message / BGPKeepAliveMessageParser.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.protocol.bgp.parser.impl.message;
9
10 import com.google.common.base.Preconditions;
11 import io.netty.buffer.ByteBuf;
12 import io.netty.buffer.Unpooled;
13 import org.opendaylight.protocol.bgp.parser.BGPDocumentedException;
14 import org.opendaylight.protocol.bgp.parser.spi.MessageParser;
15 import org.opendaylight.protocol.bgp.parser.spi.MessageSerializer;
16 import org.opendaylight.protocol.bgp.parser.spi.MessageUtil;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev180329.Keepalive;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev180329.KeepaliveBuilder;
19 import org.opendaylight.yangtools.yang.binding.Notification;
20
21 public final class BGPKeepAliveMessageParser implements MessageParser, MessageSerializer {
22     public static final int TYPE = 4;
23     private static final Keepalive KEEPALIVE_MSG = new KeepaliveBuilder().build();
24     private static final ByteBuf KEEPALIVE_BYTES = Unpooled.buffer();
25
26     static {
27         MessageUtil.formatMessage(TYPE, Unpooled.EMPTY_BUFFER,KEEPALIVE_BYTES);
28     }
29
30     @Override
31     public Keepalive parseMessageBody(final ByteBuf body, final int messageLength) throws BGPDocumentedException {
32         if (body.isReadable()) {
33             throw BGPDocumentedException.badMessageLength("Message length field not within valid range.", messageLength);
34         }
35         return KEEPALIVE_MSG;
36     }
37
38     @Override
39     public void serializeMessage(final Notification message, final ByteBuf bytes) {
40         Preconditions.checkArgument(message instanceof Keepalive);
41         bytes.writeBytes(KEEPALIVE_BYTES.slice());
42     }
43 }