Remove EncodeConstants.SIZE_OF_{BYTE,SHORT,INT,LONG}_IN_BYTES
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmVlanVidSerializer.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowjava.protocol.impl.serialization.match;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.VlanVidCase;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.vlan.vid._case.VlanVid;
15
16 /**
17  * OxmVlanVid match entry serializer.
18  *
19  * @author michal.polkorab
20  */
21 public class OxmVlanVidSerializer extends AbstractOxmMatchEntrySerializer {
22     @Override
23     public void serialize(MatchEntry entry, ByteBuf outBuffer) {
24         super.serialize(entry, outBuffer);
25         VlanVid vlanVid = ((VlanVidCase) entry.getMatchEntryValue()).getVlanVid();
26         int vlanVidValue = vlanVid.getVlanVid().toJava();
27         if (vlanVid.isCfiBit()) {
28             short cfi = 1 << 12; // 13-th bit
29             vlanVidValue = vlanVidValue | cfi;
30         }
31         outBuffer.writeShort(vlanVidValue);
32         if (entry.isHasMask()) {
33             writeMask(vlanVid.getMask(), outBuffer, getValueLength());
34         }
35     }
36
37     @Override
38     protected int getOxmClassCode() {
39         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
40     }
41
42     @Override
43     protected int getOxmFieldCode() {
44         return OxmMatchConstants.VLAN_VID;
45     }
46
47     @Override
48     protected int getValueLength() {
49         return Short.BYTES;
50     }
51 }