blob: e4ea7dba2d0510f76ef96cab61170cdc7f7e1347 [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 Liedc5db12016-08-23 17:30:19 +090021import org.onosproject.lisp.msg.exceptions.LispWriterException;
Jian Li10a09062016-07-26 23:58:50 +090022import org.onosproject.lisp.msg.types.LispAfiAddress;
23
Jian Lid4e63702016-08-30 18:29:20 +090024import static com.google.common.base.Preconditions.checkNotNull;
Jian Liedc5db12016-08-23 17:30:19 +090025import static org.onosproject.lisp.msg.types.LispAfiAddress.AfiAddressWriter;
26
Jian Li10a09062016-07-26 23:58:50 +090027/**
28 * LISP EID record section which is part of LISP map request message.
29 */
Jian Li631e62a2016-08-03 22:42:00 +090030public final class LispEidRecord {
Jian Li10a09062016-07-26 23:58:50 +090031
32 private final byte maskLength;
33 private final LispAfiAddress prefix;
34
35 /**
36 * Initializes LispEidRecord with mask length and EID prefix.
37 *
38 * @param maskLength mask length
39 * @param prefix EID prefix
40 */
41 public LispEidRecord(byte maskLength, LispAfiAddress prefix) {
42 this.maskLength = maskLength;
Jian Lid4e63702016-08-30 18:29:20 +090043
44 checkNotNull(prefix, "Must specify an address prefix");
45
Jian Li10a09062016-07-26 23:58:50 +090046 this.prefix = prefix;
47 }
48
49 /**
50 * Obtains mask length of the EID Record.
51 *
52 * @return mask length of the EID Record
53 */
54 public byte getMaskLength() {
55 return maskLength;
56 }
57
58 /**
59 * Obtains EID prefix.
60 *
61 * @return EID prefix
62 */
63 public LispAfiAddress getPrefix() {
64 return prefix;
65 }
Jian Li26069e22016-08-10 22:00:52 +090066
67 /**
Jian Liedc5db12016-08-23 17:30:19 +090068 * A LISP message reader for EidRecord portion.
Jian Li26069e22016-08-10 22:00:52 +090069 */
Jian Liedc5db12016-08-23 17:30:19 +090070 public static final class EidRecordReader implements LispMessageReader<LispEidRecord> {
Jian Li26069e22016-08-10 22:00:52 +090071
Jian Li47671902016-08-11 01:18:18 +090072 private static final int RESERVED_SKIP_LENGTH = 1;
73
Jian Li26069e22016-08-10 22:00:52 +090074 @Override
Jian Lia7b394d2016-08-21 23:11:46 +090075 public LispEidRecord readFrom(ByteBuf byteBuf) throws LispParseError, LispReaderException {
Jian Li47671902016-08-11 01:18:18 +090076
77 // let's skip the reserved field
78 byteBuf.skipBytes(RESERVED_SKIP_LENGTH);
79
Jian Lib26d3502016-08-31 01:43:24 +090080 // mask length -> 8 bits
81 short maskLength = byteBuf.readUnsignedByte();
Jian Li47671902016-08-11 01:18:18 +090082
Jian Lia7b394d2016-08-21 23:11:46 +090083 LispAfiAddress prefix = new LispAfiAddress.AfiAddressReader().readFrom(byteBuf);
Jian Li47671902016-08-11 01:18:18 +090084
85 return new LispEidRecord((byte) maskLength, prefix);
Jian Li26069e22016-08-10 22:00:52 +090086 }
87 }
Jian Liedc5db12016-08-23 17:30:19 +090088
89 /**
90 * A LISP message writer for EidRecord portion.
91 */
92 public static final class EidRecordWriter implements LispMessageWriter<LispEidRecord> {
93
94 private static final int UNUSED_ZERO = 0;
95
96 @Override
97 public void writeTo(ByteBuf byteBuf, LispEidRecord message) throws LispWriterException {
98
99 // fill zero into reserved field
100 byteBuf.writeByte((short) UNUSED_ZERO);
101
102 // mask length
103 byteBuf.writeByte(message.getMaskLength());
104
105 // EID prefix AFI with EID prefix
106 AfiAddressWriter afiAddressWriter = new AfiAddressWriter();
107 afiAddressWriter.writeTo(byteBuf, message.getPrefix());
108 }
109 }
Jian Li10a09062016-07-26 23:58:50 +0900110}