blob: c5ee39db6031aebc830a248cf3cfec0a867f89a6 [file] [log] [blame]
Jonathan Hart23701d12014-04-03 10:45:48 -07001package net.onrc.onos.core.util;
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -08002
Pavlin Radoslavov8e5bab22013-04-02 04:19:41 +00003import java.math.BigInteger;
4
Jonathan Hart23701d12014-04-03 10:45:48 -07005import net.onrc.onos.core.util.serializers.FlowIdDeserializer;
6import net.onrc.onos.core.util.serializers.FlowIdSerializer;
Pavlin Radoslavovad008e02013-02-21 18:42:42 -08007
Pavlin Radoslavovf74271f2013-11-25 18:22:47 -08008import org.codehaus.jackson.annotate.JsonIgnore;
Pavlin Radoslavov2013cbb2013-02-26 10:15:18 -08009import org.codehaus.jackson.map.annotate.JsonDeserialize;
Pavlin Radoslavovad008e02013-02-21 18:42:42 -080010import org.codehaus.jackson.map.annotate.JsonSerialize;
11
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080012/**
13 * The class representing a Flow ID.
14 */
Ray Milkey269ffb92014-04-03 14:43:30 -070015@JsonDeserialize(using = FlowIdDeserializer.class)
16@JsonSerialize(using = FlowIdSerializer.class)
Toshio Koidefff66422013-06-26 13:57:24 -070017public class FlowId implements Comparable<FlowId> {
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080018 private long value;
19
20 /**
21 * Default constructor.
22 */
23 public FlowId() {
Ray Milkey269ffb92014-04-03 14:43:30 -070024 this.value = -1;
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080025 }
26
27 /**
28 * Constructor from an integer value.
29 *
30 * @param value the value to use.
31 */
32 public FlowId(long value) {
Ray Milkey269ffb92014-04-03 14:43:30 -070033 this.value = value;
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080034 }
35
36 /**
Pavlin Radoslavov2013cbb2013-02-26 10:15:18 -080037 * Constructor from a string.
38 *
39 * @param value the value to use.
40 */
41 public FlowId(String value) {
Ray Milkey269ffb92014-04-03 14:43:30 -070042 //
43 // Use the help of BigInteger to parse strings representing
44 // large unsigned hex long values.
45 //
46 char c = 0;
47 if (value.length() > 2)
48 c = value.charAt(1);
49 if ((c == 'x') || (c == 'X'))
50 this.value = new BigInteger(value.substring(2), 16).longValue();
51 else
52 this.value = Long.decode(value);
Pavlin Radoslavov2013cbb2013-02-26 10:15:18 -080053 }
54
55 /**
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080056 * Get the value of the Flow ID.
57 *
58 * @return the value of the Flow ID.
59 */
Ray Milkey269ffb92014-04-03 14:43:30 -070060 public long value() {
61 return value;
62 }
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080063
64 /**
65 * Set the value of the Flow ID.
66 *
67 * @param value the value to set.
68 */
69 public void setValue(long value) {
Ray Milkey269ffb92014-04-03 14:43:30 -070070 this.value = value;
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080071 }
72
73 /**
Pavlin Radoslavovf74271f2013-11-25 18:22:47 -080074 * Test whether the Flow ID is valid.
75 *
76 * @return true if the Flow ID is valid, otherwise false.
77 */
78 @JsonIgnore
79 public boolean isValid() {
Ray Milkey269ffb92014-04-03 14:43:30 -070080 return (this.value() != -1);
Pavlin Radoslavovf74271f2013-11-25 18:22:47 -080081 }
82
83 /**
Pavlin Radoslavovad008e02013-02-21 18:42:42 -080084 * Convert the Flow ID value to a hexadecimal string.
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080085 *
Pavlin Radoslavovad008e02013-02-21 18:42:42 -080086 * @return the Flow ID value to a hexadecimal string.
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080087 */
88 @Override
89 public String toString() {
Ray Milkey269ffb92014-04-03 14:43:30 -070090 return "0x" + Long.toHexString(this.value);
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080091 }
Toshio Koidefff66422013-06-26 13:57:24 -070092
Toshio Koided8651e72013-06-27 11:28:11 -070093 /**
94 * Compare two FlowId objects numerically using their Flow IDs.
95 *
96 * @return the value 0 if the Flow ID is equal to the argument's Flow ID;
Ray Milkey269ffb92014-04-03 14:43:30 -070097 * a value less than 0 if the Flow ID is numerically less than the argument's Flow ID;
98 * and a value greater than 0 if the Flow ID is numerically greater than the argument's Flow ID.
Toshio Koided8651e72013-06-27 11:28:11 -070099 */
Ray Milkey269ffb92014-04-03 14:43:30 -0700100 @Override
101 public int compareTo(FlowId o) {
102 return Long.valueOf(this.value).compareTo(o.value());
103 }
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -0800104}