Bump upstreams
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / match / OxmDeserializerHelper.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.deserialization.match;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
12 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.IetfYangUtil;
13 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.MacAddress;
14
15 /**
16  * Utilities for Oxm deserialization.
17  *
18  * @author michal.polkorab
19  */
20 public final class OxmDeserializerHelper {
21     private OxmDeserializerHelper() {
22         // Hidden on purpose
23     }
24
25     /**
26      * Converts binary data into binary mask (for match entries).
27      *
28      * @param input input ByteBuf
29      * @param matchEntryLength mask length
30      * @return binary mask
31      */
32     public static byte[] convertMask(final ByteBuf input, final int matchEntryLength) {
33         byte[] mask = new byte[matchEntryLength];
34         input.readBytes(mask);
35         return mask;
36     }
37
38     /**
39      * Converts binary data into mac address.
40      *
41      * @param input input ByteBuf
42      * @return mac address
43      */
44     public static MacAddress convertMacAddress(final ByteBuf input) {
45         byte[] address = new byte[EncodeConstants.MAC_ADDRESS_LENGTH];
46         input.readBytes(address);
47         return IetfYangUtil.macAddressFor(address);
48     }
49 }