blob: 89dad4326e6a2b5107c3ab52805feb1672edc4ce [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 * Priority route attribute.
27 */
28public final class RouteAttributePriority extends RouteAttribute {
29
30 private static final int VALUE_LENGTH = 4;
31
32 private final long priority;
33
34 /**
35 * Class constructor.
36 *
37 * @param length length
38 * @param type type
39 * @param priority priority
40 */
Kalhee Kim715dd732018-01-23 14:39:56 +000041 private RouteAttributePriority(int length, int type, long priority) {
Jonathan Hart3930f632015-10-19 12:12:51 -070042 super(length, type);
43
44 this.priority = priority;
45 }
46
47 /**
48 * Returns the priority.
49 *
50 * @return priority
51 */
52 public long priority() {
53 return priority;
54 }
55
56 @Override
57 public String toString() {
58 return MoreObjects.toStringHelper(getClass())
59 .add("type", type())
60 .add("length", length())
61 .add("priority", priority)
62 .toString();
63 }
64
65 /**
66 * Returns a decoder for a priority route attribute.
67 *
68 * @return priority route attribute decoder
69 */
70 public static RouteAttributeDecoder<RouteAttributePriority> 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 priority = Integer.reverseBytes(ByteBuffer.wrap(value).getInt());
77
78 return new RouteAttributePriority(length, type, priority);
79 };
80 }
81
Kalhee Kimba366062017-11-07 16:32:09 +000082 /**
83 * Encode the RouteAttributePriority contents into the ChannelBuffer.
84 *
85 * @param cb channelbuffer to be filled in
86 */
87 @Override
88 public void encode(ChannelBuffer cb) {
89
Kalhee Kim715dd732018-01-23 14:39:56 +000090 super.encode(cb);
Kalhee Kimba366062017-11-07 16:32:09 +000091 cb.writeInt(Integer.reverseBytes((int) priority));
92 }
Kalhee Kim715dd732018-01-23 14:39:56 +000093
94 /**
95 * Returns a new RouteAttributePriority builder.
96 *
97 * @return RouteAttributePriority builder
98 */
99 public static Builder builder() {
100 return new Builder();
101 }
102
103 /**
104 * RouteAttributePriority Builder.
105 */
106 public static final class Builder extends RouteAttribute.Builder<Builder> {
107
108 private long priority = 0;
109
110 /**
111 * Hide class constructor.
112 */
113 private Builder() {}
114
115 /**
116 * Override abstract method.
117 */
118 @Override
119 public Builder getThis() {
120 return this;
121 }
122
123 /**
124 * Sets priority for RouteAttributePriority that will be built.
125 *
126 * @param priority to use for built RouteAttributePriority
127 * @return this builder
128 */
129 public Builder priority(long priority) {
130 this.priority = priority;
131 return this;
132 }
133
134 /**
135 * Builds the RouteAttributePriority.
136 *
137 * @return RouteAttributePriority reference
138 */
139 public RouteAttributePriority build() {
140 return new RouteAttributePriority(length, type, priority);
141 }
142 }
Jonathan Hart3930f632015-10-19 12:12:51 -0700143}