Migrate uint/ByteBuf interactions
[openflowplugin.git] / extension / openflowjava-extension-nicira / src / main / java / org / opendaylight / openflowjava / nx / codec / match / IpDstCodec.java
1 /*
2  * Copyright (c) 2016 Red Hat, Inc. 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.nx.codec.match;
9
10 import static org.opendaylight.yangtools.yang.common.netty.ByteBufUtils.readUint32;
11
12 import io.netty.buffer.ByteBuf;
13 import org.opendaylight.openflowjava.protocol.api.keys.MatchEntryDeserializerKey;
14 import org.opendaylight.openflowjava.protocol.api.keys.MatchEntrySerializerKey;
15 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
16 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.MatchField;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.Nxm0Class;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.OxmClassBase;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.NxmOfIpDst;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.ofj.nxm.of.match.ip.dst.grouping.IpDstValuesBuilder;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.oxm.container.match.entry.value.IpDstCaseValue;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.oxm.container.match.entry.value.IpDstCaseValueBuilder;
25
26 /**
27  * Codec for the IpDst message.
28  *
29  * @author Josh Hershberg (jhershbe@redhat.com)
30  */
31 public class IpDstCodec extends AbstractMatchCodec {
32
33     private static final int VALUE_LENGTH = 4;
34     private static final int NXM_FIELD_CODE = 8;
35     public static final MatchEntrySerializerKey<Nxm0Class, NxmOfIpDst> SERIALIZER_KEY = new MatchEntrySerializerKey<>(
36             EncodeConstants.OF13_VERSION_ID, Nxm0Class.class, NxmOfIpDst.class);
37     public static final MatchEntryDeserializerKey DESERIALIZER_KEY = new MatchEntryDeserializerKey(
38             EncodeConstants.OF13_VERSION_ID, OxmMatchConstants.NXM_0_CLASS, NXM_FIELD_CODE);
39
40     @Override
41     public MatchEntry deserialize(ByteBuf message) {
42         return deserializeHeaderToBuilder(message)
43                 .setMatchEntryValue(new IpDstCaseValueBuilder()
44                     .setIpDstValues(new IpDstValuesBuilder().setValue(readUint32(message)).build())
45                     .build())
46                 .build();
47     }
48
49     @Override
50     public void serialize(MatchEntry input, ByteBuf outBuffer) {
51         serializeHeader(input, outBuffer);
52         IpDstCaseValue ipDstCase = (IpDstCaseValue) input.getMatchEntryValue();
53         outBuffer.writeInt(ipDstCase.getIpDstValues().getValue().intValue());
54     }
55
56     @Override
57     public int getNxmFieldCode() {
58         return NXM_FIELD_CODE;
59     }
60
61     @Override
62     public int getOxmClassCode() {
63         return OxmMatchConstants.NXM_0_CLASS;
64     }
65
66     @Override
67     public int getValueLength() {
68         return VALUE_LENGTH;
69     }
70
71     @Override
72     public Class<? extends MatchField> getNxmField() {
73         return NxmOfIpDst.class;
74     }
75
76     @Override
77     public Class<? extends OxmClassBase> getOxmClass() {
78         return Nxm0Class.class;
79     }
80 }