Add multipart request message serializers
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / serialization / multipart / MultipartRequestMeterStatsSerializer.java
1 /*
2  * Copyright (c) 2017 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
9 package org.opendaylight.openflowplugin.impl.protocol.serialization.multipart;
10
11 import com.google.common.base.MoreObjects;
12 import io.netty.buffer.ByteBuf;
13 import org.opendaylight.openflowjava.protocol.api.extensibility.OFSerializer;
14 import org.opendaylight.openflowplugin.api.OFConstants;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.statistics.rev131111.multipart.request.multipart.request.body.MultipartRequestMeterStats;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.meter.types.rev130918.MeterId;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.multipart.types.rev170112.multipart.request.MultipartRequestBody;
18
19 public class MultipartRequestMeterStatsSerializer implements OFSerializer<MultipartRequestBody> {
20
21     private static final byte PADDING_IN_MULTIPART_REQUEST_METER_BODY = 4;
22
23     @Override
24     public void serialize(final MultipartRequestBody multipartRequestBody, final ByteBuf byteBuf) {
25         final MultipartRequestMeterStats multipartRequestMeterStats = MultipartRequestMeterStats
26             .class
27             .cast(multipartRequestBody);
28
29         byteBuf.writeInt(MoreObjects
30             .firstNonNull(multipartRequestMeterStats.getMeterId(), new MeterId(OFConstants.OFPM_ALL)).getValue().intValue());
31         byteBuf.writeZero(PADDING_IN_MULTIPART_REQUEST_METER_BODY);
32     }
33
34 }