blob: 49a12e86e100355e3e1dcbacdf7e3ea369734fb5 [file] [log] [blame]
Jonathan Hart3930f632015-10-19 12:12:51 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Jonathan Hart3930f632015-10-19 12:12:51 -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 */
16
17package org.onosproject.routing.fpm.protocol;
18
19import com.google.common.base.MoreObjects;
20import org.onlab.packet.DeserializationException;
21
Kalhee Kimba366062017-11-07 16:32:09 +000022import org.jboss.netty.buffer.ChannelBuffer;
Jonathan Hart3930f632015-10-19 12:12:51 -070023import java.nio.ByteBuffer;
24
25/**
26 * Output interface route attribute.
27 */
28public final class RouteAttributeOif extends RouteAttribute {
29
30 private static final int VALUE_LENGTH = 4;
31
32 private final long outputInterface;
33
34 /**
35 * Class constructor.
36 *
37 * @param length length
38 * @param type type
39 * @param outputInterface output interface
40 */
Kalhee Kimba366062017-11-07 16:32:09 +000041 public RouteAttributeOif(int length, int type, long outputInterface) {
Jonathan Hart3930f632015-10-19 12:12:51 -070042 super(length, type);
43
44 this.outputInterface = outputInterface;
45 }
46
47 /**
48 * Returns the output interface.
49 *
50 * @return output interface
51 */
52 public long outputInterface() {
53 return outputInterface;
54 }
55
56 @Override
57 public String toString() {
58 return MoreObjects.toStringHelper(getClass())
59 .add("type", type())
60 .add("length", length())
61 .add("outputInterface", outputInterface)
62 .toString();
63 }
64
65 /**
66 * Returns a decoder for a output interface route attribute.
67 *
68 * @return output interface route attribute decoder
69 */
70 public static RouteAttributeDecoder<RouteAttributeOif> decoder() {
71 return (int length, int type, byte[] value) -> {
72 if (value.length != VALUE_LENGTH) {
73 throw new DeserializationException("Wrong value length");
74 }
75
76 long outputInterface = Integer.reverseBytes(ByteBuffer.wrap(value).getInt());
77
78 return new RouteAttributeOif(length, type, outputInterface);
79 };
80 }
Kalhee Kimba366062017-11-07 16:32:09 +000081
82 /**
83 * Encode the RouteAttributeOif contents into the ChannelBuffer.
84 *
85 * @param cb channelbuffer to be filled in
86 */
87 @Override
88 public void encode(ChannelBuffer cb) {
89
90 cb.writeShort(Short.reverseBytes((short) length()));
91 cb.writeShort(Short.reverseBytes((short) type()));
92 cb.writeInt(Integer.reverseBytes((int) outputInterface));
93 }
Jonathan Hart3930f632015-10-19 12:12:51 -070094}