blob: d90e96f13d2ee18d0582df4d81d3b16ccb107f9d [file] [log] [blame]
HIGUCHI Yuta356086e2013-06-12 15:21:19 -07001package net.onrc.onos.ofcontroller.util;
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -08002
Pavlin Radoslavov8e5bab22013-04-02 04:19:41 +00003import java.math.BigInteger;
4
HIGUCHI Yutaf086d8a2013-06-12 15:26:35 -07005import net.onrc.onos.ofcontroller.util.serializers.FlowIdDeserializer;
6import net.onrc.onos.ofcontroller.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 */
Pavlin Radoslavov2013cbb2013-02-26 10:15:18 -080015@JsonDeserialize(using=FlowIdDeserializer.class)
Pavlin Radoslavovad008e02013-02-21 18:42:42 -080016@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() {
Pavlin Radoslavovf74271f2013-11-25 18:22:47 -080024 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) {
33 this.value = value;
34 }
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) {
Pavlin Radoslavov8e5bab22013-04-02 04:19:41 +000042 //
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 */
60 public long value() { return value; }
61
62 /**
63 * Set the value of the Flow ID.
64 *
65 * @param value the value to set.
66 */
67 public void setValue(long value) {
68 this.value = value;
69 }
70
71 /**
Pavlin Radoslavovf74271f2013-11-25 18:22:47 -080072 * Test whether the Flow ID is valid.
73 *
74 * @return true if the Flow ID is valid, otherwise false.
75 */
76 @JsonIgnore
77 public boolean isValid() {
78 return (this.value() != -1);
79 }
80
81 /**
Pavlin Radoslavovad008e02013-02-21 18:42:42 -080082 * Convert the Flow ID value to a hexadecimal string.
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080083 *
Pavlin Radoslavovad008e02013-02-21 18:42:42 -080084 * @return the Flow ID value to a hexadecimal string.
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080085 */
86 @Override
87 public String toString() {
Pavlin Radoslavovad008e02013-02-21 18:42:42 -080088 return "0x" + Long.toHexString(this.value);
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080089 }
Toshio Koidefff66422013-06-26 13:57:24 -070090
Toshio Koided8651e72013-06-27 11:28:11 -070091 /**
92 * Compare two FlowId objects numerically using their Flow IDs.
93 *
94 * @return the value 0 if the Flow ID is equal to the argument's Flow ID;
95 * a value less than 0 if the Flow ID is numerically less than the argument's Flow ID;
96 * and a value greater than 0 if the Flow ID is numerically greater than the argument's Flow ID.
97 */
98 @Override
Toshio Koidefff66422013-06-26 13:57:24 -070099 public int compareTo(FlowId o) {
100 return Long.valueOf(this.value).compareTo(o.value());
101 }
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -0800102}