blob: d933783579df94e4cabc1712e0fadc32db044d28 [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;
Jian Li1118c122016-11-01 21:58:15 +090019import com.google.common.base.Objects;
Jian Li26069e22016-08-10 22:00:52 +090020import org.onosproject.lisp.msg.exceptions.LispParseError;
Jian Lia7b394d2016-08-21 23:11:46 +090021import org.onosproject.lisp.msg.exceptions.LispReaderException;
Jian Liedc5db12016-08-23 17:30:19 +090022import org.onosproject.lisp.msg.exceptions.LispWriterException;
Jian Li10a09062016-07-26 23:58:50 +090023import org.onosproject.lisp.msg.types.LispAfiAddress;
24
Jian Li1118c122016-11-01 21:58:15 +090025import static com.google.common.base.MoreObjects.toStringHelper;
Jian Lid4e63702016-08-30 18:29:20 +090026import static com.google.common.base.Preconditions.checkNotNull;
Jian Liedc5db12016-08-23 17:30:19 +090027import static org.onosproject.lisp.msg.types.LispAfiAddress.AfiAddressWriter;
28
Jian Li10a09062016-07-26 23:58:50 +090029/**
30 * LISP EID record section which is part of LISP map request message.
31 */
Jian Li631e62a2016-08-03 22:42:00 +090032public final class LispEidRecord {
Jian Li10a09062016-07-26 23:58:50 +090033
34 private final byte maskLength;
35 private final LispAfiAddress prefix;
36
37 /**
38 * Initializes LispEidRecord with mask length and EID prefix.
39 *
40 * @param maskLength mask length
41 * @param prefix EID prefix
42 */
43 public LispEidRecord(byte maskLength, LispAfiAddress prefix) {
44 this.maskLength = maskLength;
Jian Lid4e63702016-08-30 18:29:20 +090045
46 checkNotNull(prefix, "Must specify an address prefix");
47
Jian Li10a09062016-07-26 23:58:50 +090048 this.prefix = prefix;
49 }
50
51 /**
52 * Obtains mask length of the EID Record.
53 *
54 * @return mask length of the EID Record
55 */
56 public byte getMaskLength() {
57 return maskLength;
58 }
59
60 /**
61 * Obtains EID prefix.
62 *
63 * @return EID prefix
64 */
65 public LispAfiAddress getPrefix() {
66 return prefix;
67 }
Jian Li26069e22016-08-10 22:00:52 +090068
Jian Li1118c122016-11-01 21:58:15 +090069 @Override
70 public String toString() {
71 return toStringHelper(this)
72 .add("maskLength", maskLength)
73 .add("prefix", prefix).toString();
74 }
75
76 @Override
77 public boolean equals(Object o) {
78 if (this == o) {
79 return true;
80 }
81 if (o == null || getClass() != o.getClass()) {
82 return false;
83 }
84
85 LispEidRecord that = (LispEidRecord) o;
86 return Objects.equal(maskLength, that.maskLength) &&
87 Objects.equal(prefix, that.prefix);
88 }
89
90 @Override
91 public int hashCode() {
92 return Objects.hashCode(maskLength, prefix);
93 }
94
Jian Li26069e22016-08-10 22:00:52 +090095 /**
Jian Liedc5db12016-08-23 17:30:19 +090096 * A LISP message reader for EidRecord portion.
Jian Li26069e22016-08-10 22:00:52 +090097 */
Jian Liedc5db12016-08-23 17:30:19 +090098 public static final class EidRecordReader implements LispMessageReader<LispEidRecord> {
Jian Li26069e22016-08-10 22:00:52 +090099
Jian Li47671902016-08-11 01:18:18 +0900100 private static final int RESERVED_SKIP_LENGTH = 1;
101
Jian Li26069e22016-08-10 22:00:52 +0900102 @Override
Jian Lia7b394d2016-08-21 23:11:46 +0900103 public LispEidRecord readFrom(ByteBuf byteBuf) throws LispParseError, LispReaderException {
Jian Li47671902016-08-11 01:18:18 +0900104
105 // let's skip the reserved field
106 byteBuf.skipBytes(RESERVED_SKIP_LENGTH);
107
Jian Lib26d3502016-08-31 01:43:24 +0900108 // mask length -> 8 bits
109 short maskLength = byteBuf.readUnsignedByte();
Jian Li47671902016-08-11 01:18:18 +0900110
Jian Lia7b394d2016-08-21 23:11:46 +0900111 LispAfiAddress prefix = new LispAfiAddress.AfiAddressReader().readFrom(byteBuf);
Jian Li47671902016-08-11 01:18:18 +0900112
113 return new LispEidRecord((byte) maskLength, prefix);
Jian Li26069e22016-08-10 22:00:52 +0900114 }
115 }
Jian Liedc5db12016-08-23 17:30:19 +0900116
117 /**
118 * A LISP message writer for EidRecord portion.
119 */
120 public static final class EidRecordWriter implements LispMessageWriter<LispEidRecord> {
121
122 private static final int UNUSED_ZERO = 0;
123
124 @Override
125 public void writeTo(ByteBuf byteBuf, LispEidRecord message) throws LispWriterException {
126
127 // fill zero into reserved field
128 byteBuf.writeByte((short) UNUSED_ZERO);
129
130 // mask length
131 byteBuf.writeByte(message.getMaskLength());
132
133 // EID prefix AFI with EID prefix
134 AfiAddressWriter afiAddressWriter = new AfiAddressWriter();
135 afiAddressWriter.writeTo(byteBuf, message.getPrefix());
136 }
137 }
Jian Li10a09062016-07-26 23:58:50 +0900138}