Handling async replies from device in DeviceCtx
[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.OFConstants;
11 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
12 import org.opendaylight.openflowplugin.api.openflow.device.MessageTranslator;
13 import org.opendaylight.openflowplugin.api.openflow.md.util.OpenflowVersion;
14 import org.opendaylight.openflowplugin.openflow.md.util.PortTranslatorUtil;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNodeConnector;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNodeConnectorBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.port.rev130925.PortNumberUni;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.PortStatusMessage;
19
20 /**
21  * @author tkubas
22  *
23  */
24 public class PortUpdateTranslator implements MessageTranslator<PortStatusMessage, FlowCapableNodeConnector> {
25
26     @Override
27     public FlowCapableNodeConnector translate(PortStatusMessage input,
28             DeviceContext deviceContext, Object connectionDistinguisher) {
29         // TODO Auto-generated method stub
30         FlowCapableNodeConnectorBuilder builder = new FlowCapableNodeConnectorBuilder();
31         //OF1.0
32         if(input.getVersion() == OFConstants.OFP_VERSION_1_0) {
33             builder.setAdvertisedFeatures(PortTranslatorUtil.translatePortFeatures(input.getAdvertisedFeaturesV10()));
34             builder.setConfiguration(PortTranslatorUtil.translatePortConfig(input.getConfigV10()));
35             builder.setCurrentFeature(PortTranslatorUtil.translatePortFeatures(input.getCurrentFeaturesV10()));
36             builder.setPeerFeatures(PortTranslatorUtil.translatePortFeatures(input.getPeerFeaturesV10()));
37             builder.setState(PortTranslatorUtil.translatePortState(input.getStateV10()));
38             builder.setSupported(PortTranslatorUtil.translatePortFeatures(input.getSupportedFeaturesV10()));
39         } else if (input.getVersion() == OFConstants.OFP_VERSION_1_3) {
40             builder.setAdvertisedFeatures(PortTranslatorUtil.translatePortFeatures(input.getAdvertisedFeatures()));
41             builder.setConfiguration(PortTranslatorUtil.translatePortConfig(input.getConfig()));
42             builder.setCurrentFeature(PortTranslatorUtil.translatePortFeatures(input.getCurrentFeatures()));
43             builder.setPeerFeatures(PortTranslatorUtil.translatePortFeatures(input.getPeerFeatures()));
44             builder.setState(PortTranslatorUtil.translatePortState(input.getState()));
45             builder.setSupported(PortTranslatorUtil.translatePortFeatures(input.getSupportedFeaturesV10()));
46         }
47         builder.setCurrentSpeed(input.getCurrSpeed());
48         builder.setHardwareAddress(input.getHwAddr());
49         builder.setMaximumSpeed(input.getMaxSpeed());
50         builder.setName(input.getName());
51         builder.setPortNumber(new PortNumberUni(input.getPortNo()));
52
53         return builder.build();
54     }
55 }