Add method to register listener for unknown msg
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmIpv4DstSerializer.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.EncodeConstants;
12 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.Ipv4DstCase;
15
16 /**
17  * @author michal.polkorab
18  *
19  */
20 public class OxmIpv4DstSerializer extends AbstractOxmIpv4AddressSerializer {
21
22     @Override
23     public void serialize(final MatchEntry entry, final ByteBuf outBuffer) {
24         super.serialize(entry, outBuffer);
25         Ipv4DstCase entryValue = (Ipv4DstCase) entry.getMatchEntryValue();
26         writeIpv4Address(entryValue.getIpv4Dst().getIpv4Address(), outBuffer);
27         if (entry.isHasMask()) {
28             writeMask(entryValue.getIpv4Dst().getMask(), outBuffer,
29                     EncodeConstants.GROUPS_IN_IPV4_ADDRESS);
30         }
31     }
32
33     @Override
34     protected int getOxmClassCode() {
35         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;
36     }
37
38     @Override
39     protected int getOxmFieldCode() {
40         return OxmMatchConstants.IPV4_DST;
41     }
42
43     @Override
44     protected int getValueLength() {
45         return EncodeConstants.SIZE_OF_INT_IN_BYTES;
46     }
47 }