54868a35ecf4d43305a4a91c800f45e1f104587c
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / networkanalyzer / MapUtils.java
1 /*
2  * Copyright © 2017 AT&T, 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.transportpce.pce.networkanalyzer;
9
10 import java.util.ArrayList;
11 import java.util.Arrays;
12 import java.util.List;
13 import java.util.TreeMap;
14 import org.opendaylight.transportpce.common.NetworkUtils;
15 import org.opendaylight.transportpce.pce.constraints.PceConstraints;
16 import org.opendaylight.yang.gen.v1.http.org.openroadm.common.network.rev181130.Link1;
17 import org.opendaylight.yang.gen.v1.http.org.openroadm.link.rev181130.span.attributes.LinkConcatenation;
18 import org.opendaylight.yang.gen.v1.http.org.openroadm.network.topology.rev181130.networks.network.link.oms.attributes.Span;
19 import org.opendaylight.yang.gen.v1.http.org.openroadm.network.types.rev181130.OpenroadmLinkType;
20 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.rev180226.networks.network.Node;
21 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.rev180226.networks.network.node.SupportingNode;
22 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.LinkId;
23 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.networks.network.Link;
24 import org.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26
27 public final class MapUtils {
28     /* Logging. */
29     private static final Logger LOG = LoggerFactory.getLogger(MapUtils.class);
30
31     private MapUtils() {
32     }
33
34     public static void mapDiversityConstraints(List<Node> allNodes, List<Link> allLinks,
35             PceConstraints pceHardConstraints) {
36         List<String> excClliNodes = pceHardConstraints.getExcludeClliNodes();
37         List<String> excNodes = pceHardConstraints.getExcludeNodes();
38         List<String> excSrlgLinks = pceHardConstraints.getExcludeSrlgLinks();
39
40         LOG.info("mapDiversityConstraints before : ExcludeClliNodes {} \n ExcludeNodes {} \n ExcludeSrlgLinks {}",
41                 excClliNodes.toString(), excNodes.toString(), excSrlgLinks.toString());
42
43         for (Node node : allNodes) {
44             if (excClliNodes.contains(node.getNodeId().getValue())) {
45                 LOG.debug("mapDiversityConstraints setExcludeCLLI for node {}", node.getNodeId().getValue());
46                 pceHardConstraints.setExcludeCLLI(Arrays.asList(getCLLI(node)));
47             }
48
49             if (excNodes.contains(node.getNodeId().getValue())) {
50                 LOG.debug("mapDiversityConstraints setExcludeSupNodes for node {}", node.getNodeId().getValue());
51                 pceHardConstraints.setExcludeSupNodes(Arrays.asList(getSupNode(node)));
52             }
53         }
54
55         for (Link link : allLinks) {
56             if (excSrlgLinks.contains(link.getLinkId().getValue())) {
57                 // zero SRLG means not populated as not OMS link
58                 List<Long> srlg = null;
59                 if (calcType(link) == OpenroadmLinkType.ROADMTOROADM) {
60                     srlg = getSRLG(link);
61                     if (!srlg.isEmpty()) {
62                         pceHardConstraints.setExcludeSRLG(srlg);
63                         LOG.debug("mapDiversityConstraints setExcludeSRLG {} for link {}",
64                                 srlg.toString(), link.getLinkId().getValue());
65                     }
66                 }
67             }
68         }
69
70         LOG.info("mapDiversityConstraints after : ExcludeCLLI {} \n ExcludeSupNodes {} \n ExcludeSRLG {}",
71                 pceHardConstraints.getExcludeCLLI().toString(),
72                 pceHardConstraints.getExcludeSupNodes().toString(),
73                 pceHardConstraints.getExcludeSRLG().toString());
74
75     }
76
77     public static String getCLLI(Node node) {
78         // TODO STUB retrieve CLLI from node. for now it is supporting node ID of the first supp node
79         return node.getSupportingNode().get(0).getNodeRef().getValue();
80     }
81
82     public static List<Long> getSRLG(Link link) {
83         List<Long> srlgList = new ArrayList<Long>();
84         try {
85             List<LinkConcatenation> linkList = getOmsAttributesSpan(link).getLinkConcatenation();
86             for (LinkConcatenation lc : linkList) {
87                 srlgList.add(lc.getSRLGId());
88             }
89         } catch (NullPointerException e) {
90             LOG.debug("No concatenation for this link");
91         }
92         return srlgList;
93     }
94
95     public static List<Long> getSRLGfromLink(Link link) {
96         List<Long> srlgList = new ArrayList<Long>();
97         org.opendaylight.yang.gen.v1.http.org.openroadm.common.network.rev181130.Link1 linkC =
98             link.augmentation(org.opendaylight.yang.gen.v1.http.org.openroadm.common.network.rev181130.Link1.class);
99         if (linkC == null) {
100             LOG.error("MapUtils: No Link augmentation available. {}", link.getLinkId().getValue());
101
102         } else {
103             try {
104                 List<org.opendaylight.yang.gen.v1.http.org.openroadm.common.network.rev181130.networks.network.link
105                     .LinkConcatenation> linkConcatenation = linkC.getLinkConcatenation();
106
107
108                 for (org.opendaylight.yang.gen.v1.http.org.openroadm.common.network.rev181130.networks.network.link
109                         .LinkConcatenation lc : linkConcatenation) {
110                     srlgList.add(lc.getSRLGId());
111                 }
112             } catch (NullPointerException e) {
113                 LOG.debug("No concatenation for this link");
114             }
115         }
116         return srlgList;
117     }
118
119     public static String getSupNode(Node node) {
120         List<SupportingNode> supNodes = node.getSupportingNode();
121         for (SupportingNode snode : supNodes) {
122             if (NetworkUtils.UNDERLAY_NETWORK_ID.equals(snode.getNetworkRef().getValue())) {
123                 return snode.getNodeRef().getValue();
124             }
125         }
126         return null;
127     }
128
129     public static TreeMap<String, String> getAllSupNode(Node node) {
130         TreeMap<String, String> allSupNodes = new TreeMap<String, String>();
131         List<SupportingNode> supNodes = new ArrayList<SupportingNode>();
132         try {
133             supNodes = node.getSupportingNode();
134         } catch (NullPointerException e) {
135             LOG.debug("No Supporting Node for the node {}", node);
136         }
137         for (SupportingNode supnode :supNodes) {
138             allSupNodes.put(supnode.getNetworkRef().getValue(),
139                     supnode.getNodeRef().getValue());
140         }
141         return allSupNodes;
142     }
143
144     public static String getSupLink(Link link) {
145         String supLink = "";
146         try {
147             supLink = link.getSupportingLink().get(0).getLinkRef().toString();
148         } catch (NullPointerException e) {
149             LOG.debug("No Supporting Link for the link {}", link);
150         }
151         return supLink;
152     }
153
154
155     public static Long getAvailableBandwidth(Link link) {
156         Link1 link1 = null;
157         Long availableBW  = 0L;
158         // ID and type
159         link1 = link.augmentation(Link1.class);
160         if (link1 == null) {
161             LOG.error("MapUtils: No Link augmentation available. {}", link.getLinkId().getValue());
162             return availableBW;
163         } else {
164             OpenroadmLinkType tmplType = null;
165             tmplType = link1.getLinkType();
166             if (tmplType == null) {
167                 LOG.error("MapUtils: No Link type available. {}", link.getLinkId().getValue());
168                 return null;
169             } else if (tmplType == OpenroadmLinkType.OTNLINK) {
170                 org.opendaylight.yang.gen.v1.http.org.openroadm.otn.network.topology.rev181130.Link1 link11 =
171                     link.augmentation(
172                         org.opendaylight.yang.gen.v1.http.org.openroadm.otn.network.topology.rev181130.Link1.class);
173                 if (link11 == null) {
174                     LOG.error("MapUtils: No Link augmentation available for {}", link.getLinkId().getValue());
175                     return availableBW;
176                 } else {
177                     availableBW = link11.getAvailableBandwidth();
178                     return availableBW;
179                 }
180
181             } else {
182                 LOG.error("MapUtils: Evaluated Link is not of OTN Type");
183             }
184         }
185
186
187         return 0L;
188     }
189
190     public static OpenroadmLinkType calcType(Link link) {
191         Link1 link1 = null;
192         OpenroadmLinkType tmplType = null;
193         // ID and type
194         link1 = link.augmentation(Link1.class);
195         if (link1 == null) {
196             LOG.error("MapUtils: No Link augmentation available. {}", link.getLinkId().getValue());
197             return null;
198         }
199
200         tmplType = link1.getLinkType();
201
202         if (tmplType == null) {
203             LOG.error("MapUtils: No Link type available. {}", link.getLinkId().getValue());
204             return null;
205         }
206         return tmplType;
207     }
208
209     public static Span getOmsAttributesSpan(Link link) {
210         org.opendaylight.yang.gen.v1.http.org.openroadm.network.topology.rev181130.Link1 link1 = null;
211         Span tempSpan = null;
212         link1 =
213             link.augmentation(org.opendaylight.yang.gen.v1.http.org.openroadm.network.topology.rev181130.Link1.class);
214
215         if (link1 == null) {
216             LOG.error("MapUtils: No Link augmentation available. {}", link.getLinkId().getValue());
217         }
218         try {
219             tempSpan = link1.getOMSAttributes().getSpan();
220         }
221         catch (NullPointerException e) {
222             LOG.error("MapUtils: No Link getOMSAttributes available. {}", link.getLinkId().getValue());
223         }
224
225         return tempSpan;
226     }
227
228     public static LinkId extractOppositeLink(Link link) {
229         LinkId tmpoppositeLink = null;
230         org.opendaylight.yang.gen.v1.http.org.openroadm.common.network.rev181130.Link1 linkOpposite
231             = link.augmentation(org.opendaylight.yang.gen.v1.http.org.openroadm.common.network.rev181130.Link1.class);
232         tmpoppositeLink = linkOpposite.getOppositeLink();
233         LOG.debug("PceLink: reading oppositeLink.  {}", linkOpposite.toString());
234         if (tmpoppositeLink == null) {
235             LOG.error("PceLink: Error reading oppositeLink. Link is ignored {}", link.getLinkId().getValue());
236             return null;
237         }
238         return tmpoppositeLink;
239     }
240
241
242 }