764ade36d974d698a33ee3bcdf6d69924a8fe7ed
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / AbstractOxmIpv4AddressSerializer.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.util.ByteBufUtils;
12 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IetfInetUtil;
13 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address;
14
15 /**
16  * Parent for Ipv4 address based match entry serializers.
17  *
18  * @author michal.polkorab
19  */
20 public abstract class AbstractOxmIpv4AddressSerializer extends AbstractOxmMatchEntrySerializer {
21
22     /**
23      * Deprecated.
24      *
25      * @deprecated Use {@link #writeIpv4Address(Ipv4Address, ByteBuf)} instead.
26      */
27     @Deprecated
28     protected static void writeIpv4Address(final String address, final ByteBuf out) {
29         Iterable<String> addressGroups = ByteBufUtils.DOT_SPLITTER.split(address);
30         for (String group : addressGroups) {
31             out.writeByte(Short.parseShort(group));
32         }
33     }
34
35     protected static void writeIpv4Address(final Ipv4Address address, final ByteBuf out) {
36         out.writeBytes(IetfInetUtil.INSTANCE.ipv4AddressBytes(address));
37     }
38 }