blob: 34a387e628c873f01227f042fced937631992faa [file] [log] [blame]
Shashikanth VH60e73982016-02-10 11:25:34 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Shashikanth VH60e73982016-02-10 11:25:34 +05303 *
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.bgpio.types;
17
Shashikanth VHc53a4132016-02-11 18:33:34 +053018import java.util.LinkedList;
Shashikanth VH60e73982016-02-10 11:25:34 +053019import java.util.Objects;
20
21import org.jboss.netty.buffer.ChannelBuffer;
22import org.onosproject.bgpio.exceptions.BgpParseException;
23import org.onosproject.bgpio.util.Constants;
24import java.util.List;
25import com.google.common.base.MoreObjects;
26
27/**
28 * Provides implementation of BGP flow specification component.
29 */
30public class BgpFsIcmpCode implements BgpValueType {
31 public static final byte FLOW_SPEC_TYPE = Constants.BGP_FLOWSPEC_ICMP_CD;
32 private List<BgpFsOperatorValue> operatorValue;
33
34 /**
35 * Constructor to initialize the value.
36 *
37 * @param operatorValue list of operator and value
38 */
39 public BgpFsIcmpCode(List<BgpFsOperatorValue> operatorValue) {
40 this.operatorValue = operatorValue;
41 }
42
43 @Override
44 public short getType() {
45 return this.FLOW_SPEC_TYPE;
46 }
47
48 @Override
49 public int hashCode() {
50 return Objects.hash(operatorValue);
51 }
52
53 @Override
54 public boolean equals(Object obj) {
55 if (this == obj) {
56 return true;
57 }
58 if (obj instanceof BgpFsIcmpCode) {
59 BgpFsIcmpCode other = (BgpFsIcmpCode) obj;
60 return this.operatorValue.equals(other.operatorValue);
61 }
62 return false;
63 }
64
65 @Override
66 public int write(ChannelBuffer cb) {
67 int iLenStartIndex = cb.writerIndex();
68
69 cb.writeByte(FLOW_SPEC_TYPE);
70
71 for (BgpFsOperatorValue fsOperVal : operatorValue) {
72 cb.writeByte(fsOperVal.option());
73 cb.writeBytes(fsOperVal.value());
74 }
75
76 return cb.writerIndex() - iLenStartIndex;
77 }
78
79 /**
80 * Reads the channel buffer and returns object.
81 *
82 * @param cb channelBuffer
Shashikanth VH60e73982016-02-10 11:25:34 +053083 * @return object of flow spec ICMP code
84 * @throws BgpParseException while parsing BgpFsIcmpCode
85 */
Shashikanth VHc53a4132016-02-11 18:33:34 +053086 public static BgpFsIcmpCode read(ChannelBuffer cb) throws BgpParseException {
87 List<BgpFsOperatorValue> operatorValue = new LinkedList<>();
88 byte option;
89 byte icmpCode;
90
91 do {
92 option = (byte) cb.readByte();
93 icmpCode = cb.readByte();
94 operatorValue.add(new BgpFsOperatorValue(option, new byte[] {(byte) icmpCode}));
95 } while ((option & Constants.BGP_FLOW_SPEC_END_OF_LIST_MASK) == 0);
96
97 return new BgpFsIcmpCode(operatorValue);
Shashikanth VH60e73982016-02-10 11:25:34 +053098 }
99
100 @Override
101 public String toString() {
102 return MoreObjects.toStringHelper(getClass())
103 .add("FLOW_SPEC_TYPE", FLOW_SPEC_TYPE)
104 .add("operatorValue", operatorValue).toString();
105 }
106
107 @Override
108 public int compareTo(Object o) {
109 // TODO Auto-generated method stub
110 return 0;
111 }
112}