All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.projectfloodlight.openflow.protocol.ver15.OFPortDescPropBsnMiscCapabilitiesVer15 Maven / Gradle / Ivy

Go to download

OpenFlowJ API supporting OpenFlow versions 1.0 through 1.5.1, generated by LoxiGen

The newest version!
// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
// Copyright (c) 2011, 2012 Open Networking Foundation
// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
// This library was generated by the LoxiGen Compiler.
// See the file LICENSE.txt which should have been included in the source distribution

// Automatically generated by LOXI from template of_class.java
// Do not modify

package org.projectfloodlight.openflow.protocol.ver15;

import org.projectfloodlight.openflow.protocol.*;
import org.projectfloodlight.openflow.protocol.action.*;
import org.projectfloodlight.openflow.protocol.actionid.*;
import org.projectfloodlight.openflow.protocol.bsntlv.*;
import org.projectfloodlight.openflow.protocol.errormsg.*;
import org.projectfloodlight.openflow.protocol.meterband.*;
import org.projectfloodlight.openflow.protocol.instruction.*;
import org.projectfloodlight.openflow.protocol.instructionid.*;
import org.projectfloodlight.openflow.protocol.match.*;
import org.projectfloodlight.openflow.protocol.stat.*;
import org.projectfloodlight.openflow.protocol.oxm.*;
import org.projectfloodlight.openflow.protocol.oxs.*;
import org.projectfloodlight.openflow.protocol.queueprop.*;
import org.projectfloodlight.openflow.types.*;
import org.projectfloodlight.openflow.util.*;
import org.projectfloodlight.openflow.exceptions.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Set;
import io.netty.buffer.ByteBuf;
import com.google.common.hash.PrimitiveSink;
import com.google.common.hash.Funnel;

class OFPortDescPropBsnMiscCapabilitiesVer15 implements OFPortDescPropBsnMiscCapabilities {
    private static final Logger logger = LoggerFactory.getLogger(OFPortDescPropBsnMiscCapabilitiesVer15.class);
    // version: 1.5
    final static byte WIRE_VERSION = 6;
    final static int LENGTH = 36;

        private final static U64 DEFAULT_CURRENT = U64.ZERO;
        private final static U64 DEFAULT_AVAILABLE = U64.ZERO;
        private final static U64 DEFAULT_SUPPORTED = U64.ZERO;

    // OF message fields
    private final U64 current;
    private final U64 available;
    private final U64 supported;
//
    // Immutable default instance
    final static OFPortDescPropBsnMiscCapabilitiesVer15 DEFAULT = new OFPortDescPropBsnMiscCapabilitiesVer15(
        DEFAULT_CURRENT, DEFAULT_AVAILABLE, DEFAULT_SUPPORTED
    );

    // package private constructor - used by readers, builders, and factory
    OFPortDescPropBsnMiscCapabilitiesVer15(U64 current, U64 available, U64 supported) {
        if(current == null) {
            throw new NullPointerException("OFPortDescPropBsnMiscCapabilitiesVer15: property current cannot be null");
        }
        if(available == null) {
            throw new NullPointerException("OFPortDescPropBsnMiscCapabilitiesVer15: property available cannot be null");
        }
        if(supported == null) {
            throw new NullPointerException("OFPortDescPropBsnMiscCapabilitiesVer15: property supported cannot be null");
        }
        this.current = current;
        this.available = available;
        this.supported = supported;
    }

    // Accessors for OF message fields
    @Override
    public int getType() {
        return 0xffff;
    }

    @Override
    public long getExperimenter() {
        return 0x5c16c7L;
    }

    @Override
    public long getExpType() {
        return 0x5L;
    }

    @Override
    public U64 getCurrent() {
        return current;
    }

    @Override
    public U64 getAvailable() {
        return available;
    }

    @Override
    public U64 getSupported() {
        return supported;
    }

    @Override
    public OFVersion getVersion() {
        return OFVersion.OF_15;
    }



    public OFPortDescPropBsnMiscCapabilities.Builder createBuilder() {
        return new BuilderWithParent(this);
    }

    static class BuilderWithParent implements OFPortDescPropBsnMiscCapabilities.Builder {
        final OFPortDescPropBsnMiscCapabilitiesVer15 parentMessage;

        // OF message fields
        private boolean currentSet;
        private U64 current;
        private boolean availableSet;
        private U64 available;
        private boolean supportedSet;
        private U64 supported;

        BuilderWithParent(OFPortDescPropBsnMiscCapabilitiesVer15 parentMessage) {
            this.parentMessage = parentMessage;
        }

    @Override
    public int getType() {
        return 0xffff;
    }

    @Override
    public long getExperimenter() {
        return 0x5c16c7L;
    }

    @Override
    public long getExpType() {
        return 0x5L;
    }

    @Override
    public OFPortDescPropBsnMiscCapabilities.Builder setExpType(long expType) {
            throw new UnsupportedOperationException("Property expType is not writeable");
    }
    @Override
    public U64 getCurrent() {
        return current;
    }

    @Override
    public OFPortDescPropBsnMiscCapabilities.Builder setCurrent(U64 current) {
        this.current = current;
        this.currentSet = true;
        return this;
    }
    @Override
    public U64 getAvailable() {
        return available;
    }

    @Override
    public OFPortDescPropBsnMiscCapabilities.Builder setAvailable(U64 available) {
        this.available = available;
        this.availableSet = true;
        return this;
    }
    @Override
    public U64 getSupported() {
        return supported;
    }

    @Override
    public OFPortDescPropBsnMiscCapabilities.Builder setSupported(U64 supported) {
        this.supported = supported;
        this.supportedSet = true;
        return this;
    }
    @Override
    public OFVersion getVersion() {
        return OFVersion.OF_15;
    }



        @Override
        public OFPortDescPropBsnMiscCapabilities build() {
                U64 current = this.currentSet ? this.current : parentMessage.current;
                if(current == null)
                    throw new NullPointerException("Property current must not be null");
                U64 available = this.availableSet ? this.available : parentMessage.available;
                if(available == null)
                    throw new NullPointerException("Property available must not be null");
                U64 supported = this.supportedSet ? this.supported : parentMessage.supported;
                if(supported == null)
                    throw new NullPointerException("Property supported must not be null");

                //
                return new OFPortDescPropBsnMiscCapabilitiesVer15(
                    current,
                    available,
                    supported
                );
        }

    }

    static class Builder implements OFPortDescPropBsnMiscCapabilities.Builder {
        // OF message fields
        private boolean currentSet;
        private U64 current;
        private boolean availableSet;
        private U64 available;
        private boolean supportedSet;
        private U64 supported;

    @Override
    public int getType() {
        return 0xffff;
    }

    @Override
    public long getExperimenter() {
        return 0x5c16c7L;
    }

    @Override
    public long getExpType() {
        return 0x5L;
    }

    @Override
    public OFPortDescPropBsnMiscCapabilities.Builder setExpType(long expType) {
            throw new UnsupportedOperationException("Property expType is not writeable");
    }
    @Override
    public U64 getCurrent() {
        return current;
    }

    @Override
    public OFPortDescPropBsnMiscCapabilities.Builder setCurrent(U64 current) {
        this.current = current;
        this.currentSet = true;
        return this;
    }
    @Override
    public U64 getAvailable() {
        return available;
    }

    @Override
    public OFPortDescPropBsnMiscCapabilities.Builder setAvailable(U64 available) {
        this.available = available;
        this.availableSet = true;
        return this;
    }
    @Override
    public U64 getSupported() {
        return supported;
    }

    @Override
    public OFPortDescPropBsnMiscCapabilities.Builder setSupported(U64 supported) {
        this.supported = supported;
        this.supportedSet = true;
        return this;
    }
    @Override
    public OFVersion getVersion() {
        return OFVersion.OF_15;
    }

//
        @Override
        public OFPortDescPropBsnMiscCapabilities build() {
            U64 current = this.currentSet ? this.current : DEFAULT_CURRENT;
            if(current == null)
                throw new NullPointerException("Property current must not be null");
            U64 available = this.availableSet ? this.available : DEFAULT_AVAILABLE;
            if(available == null)
                throw new NullPointerException("Property available must not be null");
            U64 supported = this.supportedSet ? this.supported : DEFAULT_SUPPORTED;
            if(supported == null)
                throw new NullPointerException("Property supported must not be null");


            return new OFPortDescPropBsnMiscCapabilitiesVer15(
                    current,
                    available,
                    supported
                );
        }

    }


    final static Reader READER = new Reader();
    static class Reader implements OFMessageReader {
        @Override
        public OFPortDescPropBsnMiscCapabilities readFrom(ByteBuf bb) throws OFParseError {
            int start = bb.readerIndex();
            // fixed value property type == 0xffff
            short type = bb.readShort();
            if(type != (short) 0xffff)
                throw new OFParseError("Wrong type: Expected=0xffff(0xffff), got="+type);
            int length = U16.f(bb.readShort());
            if(length != 36)
                throw new OFParseError("Wrong length: Expected=36(36), got="+length);
            if(bb.readableBytes() + (bb.readerIndex() - start) < length) {
                // Buffer does not have all data yet
                bb.readerIndex(start);
                return null;
            }
            if(logger.isTraceEnabled())
                logger.trace("readFrom - length={}", length);
            // fixed value property experimenter == 0x5c16c7L
            int experimenter = bb.readInt();
            if(experimenter != 0x5c16c7)
                throw new OFParseError("Wrong experimenter: Expected=0x5c16c7L(0x5c16c7L), got="+experimenter);
            // fixed value property expType == 0x5L
            int expType = bb.readInt();
            if(expType != 0x5)
                throw new OFParseError("Wrong expType: Expected=0x5L(0x5L), got="+expType);
            U64 current = U64.ofRaw(bb.readLong());
            U64 available = U64.ofRaw(bb.readLong());
            U64 supported = U64.ofRaw(bb.readLong());

            OFPortDescPropBsnMiscCapabilitiesVer15 portDescPropBsnMiscCapabilitiesVer15 = new OFPortDescPropBsnMiscCapabilitiesVer15(
                    current,
                      available,
                      supported
                    );
            if(logger.isTraceEnabled())
                logger.trace("readFrom - read={}", portDescPropBsnMiscCapabilitiesVer15);
            return portDescPropBsnMiscCapabilitiesVer15;
        }
    }

    public void putTo(PrimitiveSink sink) {
        FUNNEL.funnel(this, sink);
    }

    final static OFPortDescPropBsnMiscCapabilitiesVer15Funnel FUNNEL = new OFPortDescPropBsnMiscCapabilitiesVer15Funnel();
    static class OFPortDescPropBsnMiscCapabilitiesVer15Funnel implements Funnel {
        private static final long serialVersionUID = 1L;
        @Override
        public void funnel(OFPortDescPropBsnMiscCapabilitiesVer15 message, PrimitiveSink sink) {
            // fixed value property type = 0xffff
            sink.putShort((short) 0xffff);
            // fixed value property length = 36
            sink.putShort((short) 0x24);
            // fixed value property experimenter = 0x5c16c7L
            sink.putInt(0x5c16c7);
            // fixed value property expType = 0x5L
            sink.putInt(0x5);
            message.current.putTo(sink);
            message.available.putTo(sink);
            message.supported.putTo(sink);
        }
    }


    public void writeTo(ByteBuf bb) {
        WRITER.write(bb, this);
    }

    final static Writer WRITER = new Writer();
    static class Writer implements OFMessageWriter {
        @Override
        public void write(ByteBuf bb, OFPortDescPropBsnMiscCapabilitiesVer15 message) {
            // fixed value property type = 0xffff
            bb.writeShort((short) 0xffff);
            // fixed value property length = 36
            bb.writeShort((short) 0x24);
            // fixed value property experimenter = 0x5c16c7L
            bb.writeInt(0x5c16c7);
            // fixed value property expType = 0x5L
            bb.writeInt(0x5);
            bb.writeLong(message.current.getValue());
            bb.writeLong(message.available.getValue());
            bb.writeLong(message.supported.getValue());


        }
    }

    @Override
    public String toString() {
        StringBuilder b = new StringBuilder("OFPortDescPropBsnMiscCapabilitiesVer15(");
        b.append("current=").append(current);
        b.append(", ");
        b.append("available=").append(available);
        b.append(", ");
        b.append("supported=").append(supported);
        b.append(")");
        return b.toString();
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj)
            return true;
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        OFPortDescPropBsnMiscCapabilitiesVer15 other = (OFPortDescPropBsnMiscCapabilitiesVer15) obj;

        if (current == null) {
            if (other.current != null)
                return false;
        } else if (!current.equals(other.current))
            return false;
        if (available == null) {
            if (other.available != null)
                return false;
        } else if (!available.equals(other.available))
            return false;
        if (supported == null) {
            if (other.supported != null)
                return false;
        } else if (!supported.equals(other.supported))
            return false;
        return true;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;

        result = prime * result + ((current == null) ? 0 : current.hashCode());
        result = prime * result + ((available == null) ? 0 : available.hashCode());
        result = prime * result + ((supported == null) ? 0 : supported.hashCode());
        return result;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy