blob: f0b8120bcabb82b074aac10524ecd0c2cb27584f [file] [log] [blame]
bharat saraswalf7364db2015-08-11 13:39:31 +05301/*
2 * Copyright 2015 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.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/**
28 * Provides Autonomous System Tlv which contains opaque value (32 Bit AS Number).
29 */
30public class AutonomousSystemTlv implements PcepValueType {
31
32 /* Reference :RFC3209
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=[TBD10] | Length=4 |
37 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
38 | opaque value (32 Bit AS Number) |
39 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
40 */
41
42 protected static final Logger log = LoggerFactory.getLogger(AutonomousSystemTlv.class);
43
44 public static final short TYPE = 100; //TODD:change this TBD10
45 public static final short LENGTH = 4;
46
47 private final int rawValue;
48
49 /**
50 * constructor to initialize Autonomous system tlv value.
51 *
52 * @param rawValue value of Autonomous system tlv
53 */
54 public AutonomousSystemTlv(int rawValue) {
55 this.rawValue = rawValue;
56 }
57
58 /**
59 * To create instance of AutonomousSystemTlv.
60 *
61 * @param raw opaque value ofc 32 Bit AS Number
62 * @return object of AutonomousSystemTlv
63 */
64 public static AutonomousSystemTlv of(final int raw) {
65 return new AutonomousSystemTlv(raw);
66 }
67
68 /**
69 * Returns opaque value of 32 Bit AS Number.
70 *
71 * @return int value of rawValue
72 */
73 public int getInt() {
74 return rawValue;
75 }
76
77 @Override
78 public PcepVersion getVersion() {
79 return PcepVersion.PCEP_1;
80 }
81
82 @Override
83 public short getType() {
84 return TYPE;
85 }
86
87 @Override
88 public short getLength() {
89 return LENGTH;
90 }
91
92 @Override
93 public int hashCode() {
94 return Objects.hash(rawValue);
95 }
96
97 @Override
98 public boolean equals(Object obj) {
99 if (this == obj) {
100 return true;
101 }
102 if (obj instanceof AutonomousSystemTlv) {
103 AutonomousSystemTlv other = (AutonomousSystemTlv) obj;
104 return Objects.equals(rawValue, other.rawValue);
105 }
106 return false;
107 }
108
109 @Override
110 public int write(ChannelBuffer c) {
111 int iLenStartIndex = c.writerIndex();
112 c.writeShort(TYPE);
113 c.writeShort(LENGTH);
114 c.writeInt(rawValue);
115 return c.writerIndex() - iLenStartIndex;
116 }
117
118 /**
119 * Reads the channel buffer and returns object of AutonomousSystemTlv.
120 *
121 * @param c type of channel buffer
122 * @return object of AutonomousSystemTlv
123 */
124 public static AutonomousSystemTlv read(ChannelBuffer c) {
125 return AutonomousSystemTlv.of(c.readInt());
126 }
127
128 @Override
129 public void print() {
130 log.debug("AutonomousSystemTlv");
131 log.debug("Type: " + TYPE);
132 log.debug("Length: " + LENGTH);
133 log.debug("Value: " + rawValue);
134 }
135
136 @Override
137 public String toString() {
138 return MoreObjects.toStringHelper(getClass())
139 .add("TYPE", TYPE)
140 .add("Length", LENGTH)
141 .add("value", rawValue)
142 .toString();
143 }
144}