Search in sources :

Example 1 with OFOxmOfdpaQosIndex

use of org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaQosIndex in project onos by opennetworkinglab.

the class Ofdpa3ExtensionTreatmentInterpreter method mapAction.

@Override
public ExtensionTreatment mapAction(OFAction action) throws UnsupportedOperationException {
    if (action.getType().equals(OFActionType.SET_FIELD)) {
        OFActionSetField setFieldAction = (OFActionSetField) action;
        OFOxm<?> oxm = setFieldAction.getField();
        switch(oxm.getMatchField().id) {
            case OFDPA_MPLS_TYPE:
                OFOxmOfdpaMplsType mplsType = (OFOxmOfdpaMplsType) oxm;
                return new Ofdpa3SetMplsType(mplsType.getValue().getRaw());
            case OFDPA_OVID:
                OFOxmOfdpaOvid ovid = ((OFOxmOfdpaOvid) oxm);
                short mask = (short) 0x0FFF;
                short oVid = (short) (mask & ovid.getValue().getRaw());
                VlanId vlanId = VlanId.vlanId(oVid);
                return new Ofdpa3SetOvid(vlanId);
            case OFDPA_MPLS_L2_PORT:
                OFOxmOfdpaMplsL2Port mplsl2Port = ((OFOxmOfdpaMplsL2Port) oxm);
                Integer mplsL2Port = mplsl2Port.getValue().getRaw();
                if ((mplsL2Port >= 0 && mplsL2Port <= 0x0000FFFF) || (mplsL2Port >= 0x00020000 && mplsL2Port <= 0x0002FFFF)) {
                    return new Ofdpa3SetMplsL2Port(mplsL2Port);
                }
                break;
            case OFDPA_QOS_INDEX:
                OFOxmOfdpaQosIndex qosindex = ((OFOxmOfdpaQosIndex) oxm);
                Integer qosIndex = (int) qosindex.getValue().getRaw();
                if (qosIndex >= 0 && qosIndex <= 255) {
                    return new Ofdpa3SetQosIndex(qosIndex);
                }
                break;
            case OFDPA_ALLOW_VLAN_TRANSLATION:
                OFOxmOfdpaAllowVlanTranslation allowVlanTranslation = (OFOxmOfdpaAllowVlanTranslation) oxm;
                Byte allowVlan = allowVlanTranslation.getValue().getRaw();
                if ((allowVlan == 0) || (allowVlan == 1)) {
                    return new OfdpaSetAllowVlanTranslation(allowVlan);
                }
                break;
            default:
                throw new UnsupportedOperationException("Driver does not support extension type " + oxm.getMatchField().id);
        }
    } else if (action.getType().equals(OFActionType.EXPERIMENTER)) {
        OFActionExperimenter experimenter = (OFActionExperimenter) action;
        if (Long.valueOf(experimenter.getExperimenter()).intValue() == TYPE_OFDPA) {
            OFActionOfdpa ofdpa = (OFActionOfdpa) experimenter;
            switch(ofdpa.getExpType()) {
                case SUB_TYPE_PUSH_L2_HEADER:
                    return new Ofdpa3PushL2Header();
                case SUB_TYPE_POP_L2_HEADER:
                    return new Ofdpa3PopL2Header();
                case SUB_TYPE_PUSH_CW:
                    return new Ofdpa3PushCw();
                case SUB_TYPE_POP_CW:
                    return new Ofdpa3PopCw();
                default:
                    throw new UnsupportedOperationException("Unexpected OFAction: " + action.toString());
            }
        } else if (Long.valueOf(experimenter.getExperimenter()).intValue() == TYPE_ONF) {
            OFActionOnf onf = (OFActionOnf) experimenter;
            switch(onf.getExpType()) {
                case SUB_TYPE_COPY_FIELD:
                    return new Ofdpa3CopyField(((OFActionOnfCopyField) onf).getNBits(), ((OFActionOnfCopyField) onf).getSrcOffset(), ((OFActionOnfCopyField) onf).getDstOffset(), (int) ((OFActionOnfCopyField) onf).getSrc(), (int) ((OFActionOnfCopyField) onf).getDst());
                default:
                    throw new UnsupportedOperationException("Unexpected OFAction: " + action.toString());
            }
        }
        throw new UnsupportedOperationException("Unexpected OFAction: " + action.toString());
    }
    throw new UnsupportedOperationException("Unexpected OFAction: " + action.toString());
}
Also used : OFOxmOfdpaAllowVlanTranslation(org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaAllowVlanTranslation) OFOxmOfdpaOvid(org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaOvid) OFOxmOfdpaQosIndex(org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaQosIndex) OFActionExperimenter(org.projectfloodlight.openflow.protocol.action.OFActionExperimenter) OFActionOnf(org.projectfloodlight.openflow.protocol.action.OFActionOnf) OFOxmOfdpaMplsL2Port(org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaMplsL2Port) OFActionOfdpa(org.projectfloodlight.openflow.protocol.action.OFActionOfdpa) OFActionSetField(org.projectfloodlight.openflow.protocol.action.OFActionSetField) OFActionOnfCopyField(org.projectfloodlight.openflow.protocol.action.OFActionOnfCopyField) VlanId(org.onlab.packet.VlanId) OFOxmOfdpaMplsType(org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaMplsType)

Aggregations

VlanId (org.onlab.packet.VlanId)1 OFActionExperimenter (org.projectfloodlight.openflow.protocol.action.OFActionExperimenter)1 OFActionOfdpa (org.projectfloodlight.openflow.protocol.action.OFActionOfdpa)1 OFActionOnf (org.projectfloodlight.openflow.protocol.action.OFActionOnf)1 OFActionOnfCopyField (org.projectfloodlight.openflow.protocol.action.OFActionOnfCopyField)1 OFActionSetField (org.projectfloodlight.openflow.protocol.action.OFActionSetField)1 OFOxmOfdpaAllowVlanTranslation (org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaAllowVlanTranslation)1 OFOxmOfdpaMplsL2Port (org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaMplsL2Port)1 OFOxmOfdpaMplsType (org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaMplsType)1 OFOxmOfdpaOvid (org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaOvid)1 OFOxmOfdpaQosIndex (org.projectfloodlight.openflow.protocol.oxm.OFOxmOfdpaQosIndex)1