use of org.onosproject.net.PortNumber in project onos by opennetworkinglab.
the class CriteriaTest method testMatchInPortMethod.
// PortCriterion class
/**
* Test the matchInPort method.
*/
@Test
public void testMatchInPortMethod() {
PortNumber p1 = portNumber(1);
Criterion matchInPort = Criteria.matchInPort(p1);
PortCriterion portCriterion = checkAndConvert(matchInPort, Criterion.Type.IN_PORT, PortCriterion.class);
assertThat(portCriterion.port(), is(equalTo(p1)));
}
use of org.onosproject.net.PortNumber in project onos by opennetworkinglab.
the class LinkDiscoveryAristaImpl method findDestinationPortByName.
private Optional<Port> findDestinationPortByName(String remotePortName, DeviceService deviceService, Device remoteDevice) {
Optional<Port> remotePort = deviceService.getPorts(remoteDevice.id()).stream().filter(port -> remotePortName.equals(port.annotations().value(AnnotationKeys.PORT_NAME))).findAny();
if (remotePort.isPresent()) {
return remotePort;
} else {
int portNumber = Integer.valueOf(remotePortName.replaceAll("\\D+", ""));
DefaultAnnotations.Builder annotations = DefaultAnnotations.builder().set(AnnotationKeys.PORT_NAME, remotePortName);
return Optional.of(new DefaultPort(remoteDevice, PortNumber.portNumber(portNumber, remotePortName), true, annotations.build()));
}
}
use of org.onosproject.net.PortNumber in project onos by opennetworkinglab.
the class Ofdpa3ExtensionSelectorInterpreter method mapOxm.
@Override
public ExtensionSelector mapOxm(OFOxm<?> oxm) {
if (oxm.getMatchField().equals(MatchField.OFDPA_OVID)) {
VlanId vlanId;
if (oxm.isMasked()) {
throw new UnsupportedOperationException("Unexpected OXM: " + oxm.toString());
} else {
OFOxmOfdpaOvid ovid = ((OFOxmOfdpaOvid) oxm);
short mask = (short) 0x0FFF;
short oVid = (short) (mask & ovid.getValue().getRaw());
vlanId = VlanId.vlanId(oVid);
}
return new Ofdpa3MatchOvid(vlanId);
} else if (oxm.getMatchField().equals(MatchField.OFDPA_MPLS_L2_PORT)) {
Integer mplsL2Port;
/*
* Supported but not used for now.
*/
if (oxm.isMasked()) {
throw new UnsupportedOperationException("Unexpected OXM: " + oxm.toString());
} else {
OFOxmOfdpaMplsL2Port mplsl2port = ((OFOxmOfdpaMplsL2Port) oxm);
mplsL2Port = mplsl2port.getValue().getRaw();
/*
* 0x0000XXXX UNI Interface.
* 0x0002XXXX NNI Interface
*/
if ((mplsL2Port >= 0 && mplsL2Port <= 0x0000FFFF) || (mplsL2Port >= 0x00020000 && mplsL2Port <= 0x0002FFFF)) {
return new Ofdpa3MatchMplsL2Port(mplsL2Port);
}
throw new UnsupportedOperationException("Unexpected OXM: " + oxm.toString());
}
} else if (oxm.getMatchField().equals(MatchField.OFDPA_ACTSET_OUTPUT)) {
U32 portNumberU32 = ((OFOxmOfdpaActsetOutput) oxm).getValue();
PortNumber portNumber = PortNumber.portNumber(portNumberU32.getValue());
return new OfdpaMatchActsetOutput(portNumber);
} else if (oxm.getMatchField().equals(MatchField.OFDPA_ALLOW_VLAN_TRANSLATION)) {
U8 value = ((OFOxmOfdpaAllowVlanTranslation) oxm).getValue();
return new OfdpaMatchAllowVlanTranslation(value.getValue());
}
throw new UnsupportedOperationException("Unexpected OXM: " + oxm.toString());
}
use of org.onosproject.net.PortNumber in project onos by opennetworkinglab.
the class NiciraResubmitTableCodec method decode.
@Override
public NiciraResubmitTable decode(ObjectNode json, CodecContext context) {
if (json == null || !json.isObject()) {
return null;
}
// parse in port number
long portNumberLong = nullIsIllegal(json.get(RESUBMIT_PORT), RESUBMIT_PORT + MISSING_MEMBER_MESSAGE).asLong();
PortNumber portNumber = PortNumber.portNumber(portNumberLong);
// parse table id
short tableId = (short) nullIsIllegal(json.get(RESUBMIT_TABLE), RESUBMIT_TABLE + MISSING_MEMBER_MESSAGE).asInt();
return new NiciraResubmitTable(portNumber, tableId);
}
use of org.onosproject.net.PortNumber in project onos by opennetworkinglab.
the class OfdpaExtensionSelectorInterpreter method mapOxm.
@Override
public ExtensionSelector mapOxm(OFOxm<?> oxm) {
VlanId vlanId;
if (oxm.getMatchField().equals(MatchField.VLAN_VID)) {
if (oxm.isMasked()) {
OFVlanVidMatch vid = ((OFOxmVlanVidMasked) oxm).getValue();
OFVlanVidMatch mask = ((OFOxmVlanVidMasked) oxm).getMask();
if (vid.equals(OFVlanVidMatch.ofRawVid((short) 0))) {
vlanId = VlanId.NONE;
} else if (vid.equals(OFVlanVidMatch.PRESENT) && mask.equals(OFVlanVidMatch.PRESENT)) {
vlanId = VlanId.ANY;
} else {
vlanId = VlanId.vlanId(vid.getVlan());
}
} else {
OFVlanVidMatch vid = ((OFOxmVlanVid) oxm).getValue();
if (!vid.isPresentBitSet()) {
vlanId = VlanId.NONE;
} else {
vlanId = VlanId.vlanId(vid.getVlan());
}
}
return new OfdpaMatchVlanVid(vlanId);
} else if (oxm.getMatchField().equals(MatchField.OFDPA_ACTSET_OUTPUT)) {
U32 portNumberU32 = ((OFOxmOfdpaActsetOutput) oxm).getValue();
PortNumber portNumber = PortNumber.portNumber(portNumberU32.getValue());
return new OfdpaMatchActsetOutput(portNumber);
} else if (oxm.getMatchField().equals(MatchField.OFDPA_ALLOW_VLAN_TRANSLATION)) {
U8 value = ((OFOxmOfdpaAllowVlanTranslation) oxm).getValue();
return new OfdpaMatchAllowVlanTranslation(value.getValue());
}
throw new UnsupportedOperationException("Unexpected OXM: " + oxm.toString());
}
Aggregations