blob: f5b6daa46b7d5fe218bda612248bf9bc5c2980aa [file] [log] [blame]
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -07003 *
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.pcepio.types;
17
18import java.util.Objects;
19
20import org.jboss.netty.buffer.ChannelBuffer;
21import org.onosproject.pcepio.protocol.PcepVersion;
22import org.slf4j.Logger;
23import org.slf4j.LoggerFactory;
24
25import com.google.common.base.MoreObjects;
26
27/**
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053028 * Provides IPv4 Router Id Of Remote Node.
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070029 */
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053030public class IPv4RouterIdOfRemoteNodeSubTlv implements PcepValueType {
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070031
32 /* Reference :[RFC5305]/4.3
33 * 0 1 2 3
34 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
35 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
36 | Type=[TDB28] | Length=4 |
37 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053038 | IPv4 Router Id Of Remote Node |
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070039 +-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-++-+-+-+-+-+-+-+-+-++-+-+-+-
40 */
41
Ray Milkey9c9cde42018-01-12 14:22:06 -080042 private static final Logger log = LoggerFactory.getLogger(IPv4RouterIdOfRemoteNodeSubTlv.class);
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070043
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053044 public static final short TYPE = 19;
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070045 public static final short LENGTH = 4;
46
47 private final int rawValue;
48
49 /**
50 * Constructor to initialize rawValue.
51 *
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053052 * @param rawValue IPv4 RouterId Of Remote Node Tlv
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070053 */
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053054 public IPv4RouterIdOfRemoteNodeSubTlv(int rawValue) {
55 log.debug("IPv4RouterIdOfRemoteNodeTlv");
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070056 this.rawValue = rawValue;
57 }
58
59 /**
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053060 * Returns newly created IPv4RouterIdOfRemoteNodeTlv object.
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070061 *
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053062 * @param raw IPv4 RouterId Of Remote Node
63 * @return object of IPv4RouterIdOfRemoteNodeTlv
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070064 */
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053065 public static IPv4RouterIdOfRemoteNodeSubTlv of(final int raw) {
66 return new IPv4RouterIdOfRemoteNodeSubTlv(raw);
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070067 }
68
69 /**
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053070 * Returns value of IPv4 Router Id Of Remote Node.
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070071 *
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +053072 * @return rawValue IPv4 Router Id Of Remote Node
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -070073 */
74 public int getInt() {
75 return rawValue;
76 }
77
78 @Override
79 public PcepVersion getVersion() {
80 return PcepVersion.PCEP_1;
81 }
82
83 @Override
84 public short getType() {
85 return TYPE;
86 }
87
88 @Override
89 public short getLength() {
90 return LENGTH;
91 }
92
93 @Override
94 public int hashCode() {
95 return Objects.hash(rawValue);
96 }
97
98 @Override
99 public boolean equals(Object obj) {
100 if (this == obj) {
101 return true;
102 }
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +0530103 if (obj instanceof IPv4RouterIdOfRemoteNodeSubTlv) {
104 IPv4RouterIdOfRemoteNodeSubTlv other = (IPv4RouterIdOfRemoteNodeSubTlv) obj;
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -0700105 return Objects.equals(rawValue, other.rawValue);
106 }
107 return false;
108 }
109
110 @Override
111 public int write(ChannelBuffer c) {
112 int iLenStartIndex = c.writerIndex();
113 c.writeShort(TYPE);
114 c.writeShort(LENGTH);
115 c.writeInt(rawValue);
116 return c.writerIndex() - iLenStartIndex;
117 }
118
119 /**
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +0530120 * Reads the channel buffer and returns object of IPv4RouterIdOfRemoteNodeTlv.
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -0700121 *
122 * @param c input channel buffer
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +0530123 * @return object of IPv4RouterIdOfRemoteNodeTlv
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -0700124 */
Mahesh Poojary Sf1bbd362016-02-25 18:19:59 +0530125 public static IPv4RouterIdOfRemoteNodeSubTlv read(ChannelBuffer c) {
126 return IPv4RouterIdOfRemoteNodeSubTlv.of(c.readInt());
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -0700127 }
128
129 @Override
130 public String toString() {
Sho SHIMIZU7cdbcf72015-09-03 14:43:05 -0700131 return MoreObjects.toStringHelper(getClass())
132 .add("Type", TYPE)
133 .add("Length", LENGTH)
134 .add("Value", rawValue)
Sho SHIMIZUe81e4db2015-09-03 09:44:38 -0700135 .toString();
136 }
137}