b694359cc61ee4c91b27967458d180316b7d6dd4
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / device / translator / PortUpdateTranslator.java
1 /**
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.openflowplugin.impl.device.translator;
9
10 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
11 import org.opendaylight.openflowplugin.api.openflow.device.MessageTranslator;
12 import org.opendaylight.openflowplugin.api.openflow.md.util.OpenflowVersion;
13 import org.opendaylight.openflowplugin.openflow.md.util.PortTranslatorUtil;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNodeConnector;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNodeConnectorBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.port.rev130925.PortNumberUni;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.PortStatusMessage;
18
19 /**
20  * @author tkubas
21  *
22  */
23 public class PortUpdateTranslator implements MessageTranslator<PortStatusMessage, FlowCapableNodeConnector> {
24
25     @Override
26     public FlowCapableNodeConnector translate(PortStatusMessage input,
27             DeviceContext deviceContext, Object connectionDistinguisher) {
28         // TODO Auto-generated method stub
29         FlowCapableNodeConnectorBuilder builder = new FlowCapableNodeConnectorBuilder();
30         //OF1.0
31         if(input.getVersion() == OpenflowVersion.OF10.getVersion()) {
32             builder.setAdvertisedFeatures(PortTranslatorUtil.translatePortFeatures(input.getAdvertisedFeaturesV10()));
33             builder.setConfiguration(PortTranslatorUtil.translatePortConfig(input.getConfigV10()));
34             builder.setCurrentFeature(PortTranslatorUtil.translatePortFeatures(input.getCurrentFeaturesV10()));
35             builder.setPeerFeatures(PortTranslatorUtil.translatePortFeatures(input.getPeerFeaturesV10()));
36             builder.setState(PortTranslatorUtil.translatePortState(input.getStateV10()));
37             builder.setSupported(PortTranslatorUtil.translatePortFeatures(input.getSupportedFeaturesV10()));
38         } else if (input.getVersion() == OpenflowVersion.OF13.getVersion()) {
39             builder.setAdvertisedFeatures(PortTranslatorUtil.translatePortFeatures(input.getAdvertisedFeatures()));
40             builder.setConfiguration(PortTranslatorUtil.translatePortConfig(input.getConfig()));
41             builder.setCurrentFeature(PortTranslatorUtil.translatePortFeatures(input.getCurrentFeatures()));
42             builder.setPeerFeatures(PortTranslatorUtil.translatePortFeatures(input.getPeerFeatures()));
43             builder.setState(PortTranslatorUtil.translatePortState(input.getState()));
44             builder.setSupported(PortTranslatorUtil.translatePortFeatures(input.getSupportedFeaturesV10()));
45         }
46         builder.setCurrentSpeed(input.getCurrSpeed());
47         builder.setHardwareAddress(input.getHwAddr());
48         builder.setMaximumSpeed(input.getMaxSpeed());
49         builder.setName(input.getName());
50         builder.setPortNumber(new PortNumberUni(input.getPortNo()));
51
52         return builder.build();
53     }
54 }