BUG-2218: Keep existing link augmentations during discovery process
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / utils / NodeConnectorCreator.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.sal.utils;
11
12 import java.util.HashSet;
13 import java.util.Set;
14
15 import org.opendaylight.controller.sal.core.ConstructionException;
16 import org.opendaylight.controller.sal.core.Node;
17 import org.opendaylight.controller.sal.core.NodeConnector;
18 import org.opendaylight.controller.sal.core.Node.NodeIDType;
19 import org.opendaylight.controller.sal.core.NodeConnector.NodeConnectorIDType;
20 import org.slf4j.Logger;
21 import org.slf4j.LoggerFactory;
22
23 /**
24  * The class provides helper functions to create a node connector
25  *
26  *
27  */
28 public abstract class NodeConnectorCreator {
29     protected static final Logger logger = LoggerFactory
30     .getLogger(NodeConnectorCreator.class);
31     /**
32      * Generic NodeConnector creator
33      * The nodeConnector type is inferred from the node type
34      *
35      * @param portId
36      * @param node
37      * @return
38      */
39     public static NodeConnector createNodeConnector(Object portId, Node node) {
40         if (node.getType().equals(NodeIDType.OPENFLOW)) {
41             try {
42                 return new NodeConnector(NodeConnectorIDType.OPENFLOW,
43                         portId, node);
44             } catch (ConstructionException e1) {
45                 logger.error("",e1);
46                 return null;
47             }
48         }
49         return null;
50     }
51
52     /**
53      * Generic NodeConnector creator
54      * The nodeConnector type is inferred from the node type
55      *
56      * @param portId The string representing the port id
57      * @param node The network node as {@link org.opendaylight.controller.sal.core.Node Node} object
58      * @return The corresponding {@link org.opendaylight.controller.sal.core.NodeConnector NodeConnector} object
59      */
60     public static NodeConnector createNodeConnector(String portId, Node node) {
61         return NodeConnector.fromString(String.format("%s|%s@%s", node.getType(), portId, node.toString()));
62     }
63
64     /**
65      * NodeConnector creator where NodeConnector type can be specified
66      * Needed to create special internal node connectors (like software stack)
67      *
68      * @param nodeConnectorType
69      * @param portId
70      * @param node
71      * @return
72      */
73     public static NodeConnector createNodeConnector(
74             String nodeConnectorType, Object portId, Node node) {
75         try {
76             if (nodeConnectorType.equals(Node.NodeIDType.OPENFLOW) && (portId.getClass() == String.class)) {
77                 return new NodeConnector(nodeConnectorType, Short.parseShort((String) portId), node);
78             } else {
79                 return new NodeConnector(nodeConnectorType, portId, node);
80             }
81         } catch (ConstructionException e1) {
82             logger.error("",e1);
83             return null;
84         }
85     }
86
87     public static NodeConnector createOFNodeConnector(Short portId, Node node) {
88         try {
89             return new NodeConnector(NodeConnectorIDType.OPENFLOW, portId, node);
90         } catch (ConstructionException e1) {
91             logger.error("",e1);
92             return null;
93         }
94     }
95
96     public static Set<NodeConnector> createOFNodeConnectorSet(
97             Set<Short> portIds, Node n) {
98         try {
99             Set<NodeConnector> nodeConnectors = new HashSet<NodeConnector>();
100             for (Short ofPortID : portIds) {
101                 NodeConnector p = new NodeConnector(
102                         NodeConnector.NodeConnectorIDType.OPENFLOW, Short
103                                 .valueOf(ofPortID), n);
104                 nodeConnectors.add(p);
105             }
106             return nodeConnectors;
107         } catch (ConstructionException e1) {
108             logger.error("",e1);
109             return null;
110         }
111     }
112 }