Bug 611 - BGP Update message serialization
[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
12 import io.netty.buffer.ByteBuf;
13 import io.netty.buffer.Unpooled;
14
15 import org.opendaylight.protocol.bgp.parser.BGPDocumentedException;
16 import org.opendaylight.protocol.bgp.parser.spi.MessageParser;
17 import org.opendaylight.protocol.bgp.parser.spi.MessageSerializer;
18 import org.opendaylight.protocol.bgp.parser.spi.MessageUtil;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.Keepalive;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.KeepaliveBuilder;
21 import org.opendaylight.yangtools.yang.binding.Notification;
22
23 public class BGPKeepAliveMessageParser implements MessageParser, MessageSerializer {
24     public static final int TYPE = 4;
25     private static final ByteBuf bytes = Unpooled.copiedBuffer(MessageUtil.formatMessage(TYPE, new byte[0]));
26     private static final Keepalive msg = new KeepaliveBuilder().build();
27
28     @Override
29     public Keepalive parseMessageBody(final ByteBuf body, final int messageLength) throws BGPDocumentedException {
30         if (body.isReadable()) {
31             throw BGPDocumentedException.badMessageLength("Message length field not within valid range.", messageLength);
32         }
33         return this.msg;
34     }
35
36     @Override
37     public void serializeMessage(final Notification message, ByteBuf bytes) {
38         Preconditions.checkArgument(message instanceof Keepalive);
39         bytes.writeBytes(this.bytes);
40     }
41 }