Pavlin Radoslavov | 5363c2a | 2013-02-18 09:55:42 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.util; |
| 2 | |
Pavlin Radoslavov | 8e5bab2 | 2013-04-02 04:19:41 +0000 | [diff] [blame] | 3 | import java.math.BigInteger; |
| 4 | |
Pavlin Radoslavov | 2013cbb | 2013-02-26 10:15:18 -0800 | [diff] [blame] | 5 | import net.floodlightcontroller.util.serializers.FlowIdDeserializer; |
Pavlin Radoslavov | ad008e0 | 2013-02-21 18:42:42 -0800 | [diff] [blame] | 6 | import net.floodlightcontroller.util.serializers.FlowIdSerializer; |
| 7 | |
| 8 | import org.codehaus.jackson.annotate.JsonProperty; |
Pavlin Radoslavov | 2013cbb | 2013-02-26 10:15:18 -0800 | [diff] [blame] | 9 | import org.codehaus.jackson.map.annotate.JsonDeserialize; |
Pavlin Radoslavov | ad008e0 | 2013-02-21 18:42:42 -0800 | [diff] [blame] | 10 | import org.codehaus.jackson.map.annotate.JsonSerialize; |
| 11 | |
Pavlin Radoslavov | 5363c2a | 2013-02-18 09:55:42 -0800 | [diff] [blame] | 12 | /** |
| 13 | * The class representing a Flow ID. |
| 14 | */ |
Pavlin Radoslavov | 2013cbb | 2013-02-26 10:15:18 -0800 | [diff] [blame] | 15 | @JsonDeserialize(using=FlowIdDeserializer.class) |
Pavlin Radoslavov | ad008e0 | 2013-02-21 18:42:42 -0800 | [diff] [blame] | 16 | @JsonSerialize(using=FlowIdSerializer.class) |
Pavlin Radoslavov | 5363c2a | 2013-02-18 09:55:42 -0800 | [diff] [blame] | 17 | public class FlowId { |
| 18 | private long value; |
| 19 | |
| 20 | /** |
| 21 | * Default constructor. |
| 22 | */ |
| 23 | public FlowId() { |
| 24 | this.value = 0; |
| 25 | } |
| 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 Radoslavov | 2013cbb | 2013-02-26 10:15:18 -0800 | [diff] [blame] | 37 | * Constructor from a string. |
| 38 | * |
| 39 | * @param value the value to use. |
| 40 | */ |
| 41 | public FlowId(String value) { |
Pavlin Radoslavov | 8e5bab2 | 2013-04-02 04:19:41 +0000 | [diff] [blame] | 42 | // |
| 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 Radoslavov | 2013cbb | 2013-02-26 10:15:18 -0800 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | /** |
Pavlin Radoslavov | 5363c2a | 2013-02-18 09:55:42 -0800 | [diff] [blame] | 56 | * 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 Radoslavov | ad008e0 | 2013-02-21 18:42:42 -0800 | [diff] [blame] | 72 | * Convert the Flow ID value to a hexadecimal string. |
Pavlin Radoslavov | 5363c2a | 2013-02-18 09:55:42 -0800 | [diff] [blame] | 73 | * |
Pavlin Radoslavov | ad008e0 | 2013-02-21 18:42:42 -0800 | [diff] [blame] | 74 | * @return the Flow ID value to a hexadecimal string. |
Pavlin Radoslavov | 5363c2a | 2013-02-18 09:55:42 -0800 | [diff] [blame] | 75 | */ |
| 76 | @Override |
| 77 | public String toString() { |
Pavlin Radoslavov | ad008e0 | 2013-02-21 18:42:42 -0800 | [diff] [blame] | 78 | return "0x" + Long.toHexString(this.value); |
Pavlin Radoslavov | 5363c2a | 2013-02-18 09:55:42 -0800 | [diff] [blame] | 79 | } |
| 80 | } |