blob: a49a5466904f1da0d9b1f9c22b1a122d8057befa [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -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 of_virtual_class.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.jboss.netty.buffer.ChannelBuffer;
27
28abstract class OFFlowModVer13 {
29 // version: 1.3
30 final static byte WIRE_VERSION = 4;
31 final static int MINIMUM_LENGTH = 56;
32
33
34 public final static OFFlowModVer13.Reader READER = new Reader();
35
36 static class Reader implements OFMessageReader<OFFlowMod> {
37 @Override
38 public OFFlowMod readFrom(ChannelBuffer bb) throws OFParseError {
39 if(bb.readableBytes() < MINIMUM_LENGTH)
40 return null;
41 int start = bb.readerIndex();
42 // fixed value property version == 4
43 byte version = bb.readByte();
44 if(version != (byte) 0x4)
45 throw new OFParseError("Wrong version: Expected=OFVersion.OF_13(4), got="+version);
46 // fixed value property type == 14
47 byte type = bb.readByte();
48 if(type != (byte) 0xe)
49 throw new OFParseError("Wrong type: Expected=OFType.FLOW_MOD(14), got="+type);
50 int length = U16.f(bb.readShort());
51 if(length < MINIMUM_LENGTH)
52 throw new OFParseError("Wrong length: Expected to be >= " + MINIMUM_LENGTH + ", was: " + length);
53 U32.f(bb.readInt());
54 U64.ofRaw(bb.readLong());
55 U64.ofRaw(bb.readLong());
56 TableId.readByte(bb);
57 short command = bb.readByte();
58 bb.readerIndex(start);
59 switch(command) {
60 case (short) 0x0:
61 // discriminator value OFFlowModCommand.ADD=0 for class OFFlowAddVer13
62 return OFFlowAddVer13.READER.readFrom(bb);
63 case (short) 0x3:
64 // discriminator value OFFlowModCommand.DELETE=3 for class OFFlowDeleteVer13
65 return OFFlowDeleteVer13.READER.readFrom(bb);
66 case (short) 0x4:
67 // discriminator value OFFlowModCommand.DELETE_STRICT=4 for class OFFlowDeleteStrictVer13
68 return OFFlowDeleteStrictVer13.READER.readFrom(bb);
69 case (short) 0x1:
70 // discriminator value OFFlowModCommand.MODIFY=1 for class OFFlowModifyVer13
71 return OFFlowModifyVer13.READER.readFrom(bb);
72 case (short) 0x2:
73 // discriminator value OFFlowModCommand.MODIFY_STRICT=2 for class OFFlowModifyStrictVer13
74 return OFFlowModifyStrictVer13.READER.readFrom(bb);
75 default:
76 throw new OFParseError("Unknown value for discriminator command of class OFFlowModVer13: " + command);
77 }
78 }
79 }
80}