blob: 8a5eb0533750a7311bfa997a8424d2281c7f41a2 [file] [log] [blame]
alshabib86ac11c2014-08-14 16:14:41 -07001// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
2// Copyright (c) 2011, 2012 Open Networking Foundation
3// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
4// This library was generated by the LoxiGen Compiler.
5// See the file LICENSE.txt which should have been included in the source distribution
6
7// Automatically generated by LOXI from template const_set_serializer.java
8// Do not modify
9
10package org.projectfloodlight.openflow.protocol.ver13;
11
12import org.projectfloodlight.openflow.protocol.*;
13import org.projectfloodlight.openflow.protocol.action.*;
14import org.projectfloodlight.openflow.protocol.actionid.*;
15import org.projectfloodlight.openflow.protocol.bsntlv.*;
16import org.projectfloodlight.openflow.protocol.errormsg.*;
17import org.projectfloodlight.openflow.protocol.meterband.*;
18import org.projectfloodlight.openflow.protocol.instruction.*;
19import org.projectfloodlight.openflow.protocol.instructionid.*;
20import org.projectfloodlight.openflow.protocol.match.*;
21import org.projectfloodlight.openflow.protocol.oxm.*;
22import org.projectfloodlight.openflow.protocol.queueprop.*;
23import org.projectfloodlight.openflow.types.*;
24import org.projectfloodlight.openflow.util.*;
25import org.projectfloodlight.openflow.exceptions.*;
26import org.projectfloodlight.openflow.protocol.OFMeterFlags;
27import java.util.Set;
28import org.jboss.netty.buffer.ChannelBuffer;
29import com.google.common.hash.PrimitiveSink;
30import java.util.EnumSet;
31import java.util.Collections;
32
33
34public class OFMeterFlagsSerializerVer13 {
35
36 public final static short KBPS_VAL = (short) 0x1;
37 public final static short PKTPS_VAL = (short) 0x2;
38 public final static short BURST_VAL = (short) 0x4;
39 public final static short STATS_VAL = (short) 0x8;
40
41 public static Set<OFMeterFlags> readFrom(ChannelBuffer bb) throws OFParseError {
42 try {
43 return ofWireValue(bb.readShort());
44 } catch (IllegalArgumentException e) {
45 throw new OFParseError(e);
46 }
47 }
48
49 public static void writeTo(ChannelBuffer bb, Set<OFMeterFlags> set) {
50 bb.writeShort(toWireValue(set));
51 }
52
53 public static void putTo(Set<OFMeterFlags> set, PrimitiveSink sink) {
54 sink.putShort(toWireValue(set));
55 }
56
57
58 public static Set<OFMeterFlags> ofWireValue(short val) {
59 EnumSet<OFMeterFlags> set = EnumSet.noneOf(OFMeterFlags.class);
60
61 if((val & KBPS_VAL) != 0)
62 set.add(OFMeterFlags.KBPS);
63 if((val & PKTPS_VAL) != 0)
64 set.add(OFMeterFlags.PKTPS);
65 if((val & BURST_VAL) != 0)
66 set.add(OFMeterFlags.BURST);
67 if((val & STATS_VAL) != 0)
68 set.add(OFMeterFlags.STATS);
69 return Collections.unmodifiableSet(set);
70 }
71
72 public static short toWireValue(Set<OFMeterFlags> set) {
73 short wireValue = 0;
74
75 for(OFMeterFlags e: set) {
76 switch(e) {
77 case KBPS:
78 wireValue |= KBPS_VAL;
79 break;
80 case PKTPS:
81 wireValue |= PKTPS_VAL;
82 break;
83 case BURST:
84 wireValue |= BURST_VAL;
85 break;
86 case STATS:
87 wireValue |= STATS_VAL;
88 break;
89 default:
90 throw new IllegalArgumentException("Illegal enum value for type OFMeterFlags in version 1.3: " + e);
91 }
92 }
93 return wireValue;
94 }
95
96}