Java 类org.projectfloodlight.openflow.protocol.OFCalientPortDescPropOptical 实例源码

项目:athena    文件:OpenFlowDeviceProvider.java   
/**
 * Build a portDescription from a given port description describing a fiber switch optical port.
 *
 * @param port description property type.
 * @param port the port to build from.
 * @return portDescription for the port.
 */
private PortDescription buildPortDescription(OFCalientPortDescStatsEntry port) {
    PortNumber portNo = PortNumber.portNumber(port.getPortNo().getPortNumber());

    // Use the alias name if it's available
    String name = port.getName();
    List<OFCalientPortDescProp> props = port.getProperties();
    if (props != null && props.size() > 0) {
        OFCalientPortDescPropOptical propOptical = (OFCalientPortDescPropOptical) props.get(0);
        if (propOptical != null) {
            name = propOptical.getInAlias();
        }
    }

    // FIXME when Calient OF agent reports port status
    boolean enabled = true;
    SparseAnnotations annotations = makePortAnnotation(name, port.getHwAddr().toString());

    // S160 data sheet
    // Wavelength range: 1260 - 1630 nm, grid is irrelevant for this type of switch
    return omsPortDescription(portNo, enabled,
            Spectrum.U_BAND_MIN, Spectrum.O_BAND_MAX, Frequency.ofGHz(100), annotations);
}
项目:onos    文件:OpenFlowDeviceProvider.java   
/**
 * Build a portDescription from a given port description describing a fiber switch optical port.
 *
 * @param port description property type.
 * @param port the port to build from.
 * @return portDescription for the port.
 */
private PortDescription buildPortDescription(OFCalientPortDescStatsEntry port) {
    PortNumber portNo = PortNumber.portNumber(port.getPortNo().getPortNumber());

    // Use the alias name if it's available
    String name = port.getName();
    List<OFCalientPortDescProp> props = port.getProperties();
    if (props != null && !props.isEmpty()) {
        OFCalientPortDescPropOptical propOptical = (OFCalientPortDescPropOptical) props.get(0);
        if (propOptical != null) {
            name = propOptical.getInAlias();
        }
    }

    // FIXME when Calient OF agent reports port status
    boolean enabled = true;
    boolean adminDown = false;
    SparseAnnotations annotations = makePortAnnotation(name, port.getHwAddr().toString(), adminDown).build();

    // S160 data sheet
    // Wavelength range: 1260 - 1630 nm, grid is irrelevant for this type of switch
    return omsPortDescription(portNo, enabled,
            Spectrum.O_BAND_MIN, Spectrum.O_BAND_MAX, Frequency.ofGHz(50), annotations);
}