308b542950891cfa08bdca74afe513efbd4842ae
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / BGPMessageHeaderDecoder.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.rib.impl;
9
10 import io.netty.handler.codec.LengthFieldBasedFrameDecoder;
11
12 /**
13  * @see <a href="http://tools.ietf.org/html/rfc4271#section-4.1">BGP Message Header</a>
14  */
15 final class BGPMessageHeaderDecoder extends LengthFieldBasedFrameDecoder {
16
17     private static final int MARKER_SIZE = 16;
18
19     /*
20      * the length field represents the length of the whole message including the header
21      */
22     private static final int LENGTH_SIZE = 2;
23
24     private static final int MAX_FRAME_SIZE = 4096;
25
26     private static final int EXTENDED_MAX_FRAME_SIZE = 65535;
27
28     /*
29
30      0                   1                   2                   3
31       0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
32       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
33       |                                                               |
34       |                                                               |
35       |                                                               |
36       |                                                               |
37       |                           Marker                              |
38       |                                                               |
39       |                                                               |
40       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
41       |          Length               |      Type     |
42       +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
43
44      */
45
46
47     private BGPMessageHeaderDecoder(final int maxFrameSize) {
48         super(maxFrameSize, MARKER_SIZE, LENGTH_SIZE, -MARKER_SIZE - LENGTH_SIZE, 0);
49     }
50
51     static BGPMessageHeaderDecoder getBGPMessageHeaderDecoder() {
52         return new BGPMessageHeaderDecoder(MAX_FRAME_SIZE);
53     }
54
55     static BGPMessageHeaderDecoder getExtendedBGPMessageHeaderDecoder() {
56         return new BGPMessageHeaderDecoder(EXTENDED_MAX_FRAME_SIZE);
57     }
58
59
60 }