Bug 2756 - Action model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / action / OF10SetNwSrcActionSerializer.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
9 package org.opendaylight.openflowjava.protocol.impl.serialization.action;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
14 import org.opendaylight.openflowjava.util.ByteBufUtils;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.SetNwSrcCase;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
17
18 /**
19  * @author michal.polkorab
20  *
21  */
22 public class OF10SetNwSrcActionSerializer extends AbstractActionSerializer {
23
24     @Override
25     public void serialize(final Action action, final ByteBuf outBuffer) {
26         super.serialize(action, outBuffer);
27         Iterable<String> addressGroups = ByteBufUtils.DOT_SPLITTER
28                 .split(((SetNwSrcCase) action.getActionChoice()).getSetNwSrcAction()
29                         .getIpAddress().getValue());
30         for (String group : addressGroups) {
31             outBuffer.writeByte(Short.parseShort(group));
32         }
33     }
34
35     @Override
36     protected int getType() {
37         return ActionConstants.SET_NW_SRC_CODE;
38     }
39
40     @Override
41     protected int getLength() {
42         return ActionConstants.GENERAL_ACTION_LENGTH;
43     }
44 }