X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflow-protocol-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowjava%2Fprotocol%2Fimpl%2Fserialization%2Ffactories%2FExperimenterInputMessageFactory.java;fp=openflow-protocol-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fopenflowjava%2Fprotocol%2Fimpl%2Fserialization%2Ffactories%2FExperimenterInputMessageFactory.java;h=ff24b6e055cb7f984cc731d334ee402d6bd43e8b;hb=0d942e8fb70b2c21f97eea3ed8904336ab5c54a4;hp=60f116b84405d699b6a0f50009a90628c8cf2a45;hpb=537927d0952c74dd362ede53fbbed7db8d53fc7b;p=openflowjava.git diff --git a/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/serialization/factories/ExperimenterInputMessageFactory.java b/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/serialization/factories/ExperimenterInputMessageFactory.java index 60f116b8..ff24b6e0 100644 --- a/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/serialization/factories/ExperimenterInputMessageFactory.java +++ b/openflow-protocol-impl/src/main/java/org/opendaylight/openflowjava/protocol/impl/serialization/factories/ExperimenterInputMessageFactory.java @@ -1,64 +1,71 @@ -/* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */ -package org.opendaylight.openflowjava.protocol.impl.serialization.factories; - -import io.netty.buffer.ByteBuf; - -import org.opendaylight.openflowjava.protocol.impl.serialization.OFSerializer; -import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils; -import org.opendaylight.openflowjava.protocol.impl.util.EncodeConstants; -import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ExperimenterInput; - -/** - * Translates Experimenter messages - * @author michal.polkorab - * @author timotej.kubas - */ -public class ExperimenterInputMessageFactory implements OFSerializer{ - - /** Code type of Experimenter message */ - public static final byte MESSAGE_TYPE = 4; - private static final byte MESSAGE_LENGTH = 8; - private static ExperimenterInputMessageFactory instance; - - private ExperimenterInputMessageFactory() { - // do nothing, just singleton - } - - /** - * @return singleton factory - */ - public static synchronized ExperimenterInputMessageFactory getInstance() { - if (instance == null) { - instance = new ExperimenterInputMessageFactory(); - } - return instance; - } - - @Override - public void messageToBuffer(short version, ByteBuf out, - ExperimenterInput message) { - ByteBufUtils.writeOFHeader(instance, message, out); - out.writeInt(message.getExperimenter().intValue()); - out.writeInt(message.getExpType().intValue()); - byte[] data = message.getData(); - if (data != null) { - out.writeBytes(data); - } - } - - @Override - public int computeLength(ExperimenterInput message) { - int length = MESSAGE_LENGTH + 2 * (EncodeConstants.SIZE_OF_INT_IN_BYTES); - byte[] data = message.getData(); - if (data != null) { - length += data.length; - } - return length; - } - - @Override - public byte getMessageType() { - return MESSAGE_TYPE; - } - -} +/* + * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + +package org.opendaylight.openflowjava.protocol.impl.serialization.factories; + +import io.netty.buffer.ByteBuf; + +import org.opendaylight.openflowjava.protocol.impl.serialization.OFSerializer; +import org.opendaylight.openflowjava.protocol.impl.util.ByteBufUtils; +import org.opendaylight.openflowjava.protocol.impl.util.EncodeConstants; +import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.ExperimenterInput; + +/** + * Translates Experimenter messages + * @author michal.polkorab + * @author timotej.kubas + */ +public class ExperimenterInputMessageFactory implements OFSerializer{ + + /** Code type of Experimenter message */ + public static final byte MESSAGE_TYPE = 4; + private static final byte MESSAGE_LENGTH = 8; + private static ExperimenterInputMessageFactory instance; + + private ExperimenterInputMessageFactory() { + // do nothing, just singleton + } + + /** + * @return singleton factory + */ + public static synchronized ExperimenterInputMessageFactory getInstance() { + if (instance == null) { + instance = new ExperimenterInputMessageFactory(); + } + return instance; + } + + @Override + public void messageToBuffer(short version, ByteBuf out, + ExperimenterInput message) { + ByteBufUtils.writeOFHeader(instance, message, out); + out.writeInt(message.getExperimenter().intValue()); + out.writeInt(message.getExpType().intValue()); + byte[] data = message.getData(); + if (data != null) { + out.writeBytes(data); + } + } + + @Override + public int computeLength(ExperimenterInput message) { + int length = MESSAGE_LENGTH + 2 * (EncodeConstants.SIZE_OF_INT_IN_BYTES); + byte[] data = message.getData(); + if (data != null) { + length += data.length; + } + return length; + } + + @Override + public byte getMessageType() { + return MESSAGE_TYPE; + } + +}