blob: 1e79d19a3718a5e87dc1924e18e4866215fa7150 [file] [log] [blame]
Jian Li10a09062016-07-26 23:58:50 +09001/*
2 * Copyright 2016-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.lisp.msg.protocols;
17
Jian Li26069e22016-08-10 22:00:52 +090018import io.netty.buffer.ByteBuf;
19import org.onosproject.lisp.msg.exceptions.LispParseError;
Jian Lia7b394d2016-08-21 23:11:46 +090020import org.onosproject.lisp.msg.exceptions.LispReaderException;
Jian Li10a09062016-07-26 23:58:50 +090021import org.onosproject.lisp.msg.types.LispAfiAddress;
22
23/**
24 * LISP EID record section which is part of LISP map request message.
25 */
Jian Li631e62a2016-08-03 22:42:00 +090026public final class LispEidRecord {
Jian Li10a09062016-07-26 23:58:50 +090027
28 private final byte maskLength;
29 private final LispAfiAddress prefix;
30
31 /**
32 * Initializes LispEidRecord with mask length and EID prefix.
33 *
34 * @param maskLength mask length
35 * @param prefix EID prefix
36 */
37 public LispEidRecord(byte maskLength, LispAfiAddress prefix) {
38 this.maskLength = maskLength;
39 this.prefix = prefix;
40 }
41
42 /**
43 * Obtains mask length of the EID Record.
44 *
45 * @return mask length of the EID Record
46 */
47 public byte getMaskLength() {
48 return maskLength;
49 }
50
51 /**
52 * Obtains EID prefix.
53 *
54 * @return EID prefix
55 */
56 public LispAfiAddress getPrefix() {
57 return prefix;
58 }
Jian Li26069e22016-08-10 22:00:52 +090059
60 /**
61 * A private LISP message reader for EidRecord portion.
62 */
Jian Lia7b394d2016-08-21 23:11:46 +090063 public static class EidRecordReader implements LispMessageReader<LispEidRecord> {
Jian Li26069e22016-08-10 22:00:52 +090064
Jian Li47671902016-08-11 01:18:18 +090065 private static final int RESERVED_SKIP_LENGTH = 1;
66
Jian Li26069e22016-08-10 22:00:52 +090067 @Override
Jian Lia7b394d2016-08-21 23:11:46 +090068 public LispEidRecord readFrom(ByteBuf byteBuf) throws LispParseError, LispReaderException {
Jian Li47671902016-08-11 01:18:18 +090069
70 // let's skip the reserved field
71 byteBuf.skipBytes(RESERVED_SKIP_LENGTH);
72
73 short maskLength = (short) byteBuf.readUnsignedShort();
74
Jian Lia7b394d2016-08-21 23:11:46 +090075 LispAfiAddress prefix = new LispAfiAddress.AfiAddressReader().readFrom(byteBuf);
Jian Li47671902016-08-11 01:18:18 +090076
77 return new LispEidRecord((byte) maskLength, prefix);
Jian Li26069e22016-08-10 22:00:52 +090078 }
79 }
Jian Li10a09062016-07-26 23:58:50 +090080}