326a33e4fce11481a53844f7a86dd32ddc5a02af
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / networkanalyzer / PceNode.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
9 package org.opendaylight.transportpce.pce.networkanalyzer;
10
11 import java.util.ArrayList;
12 import java.util.HashMap;
13 import java.util.List;
14 import java.util.Map;
15 import java.util.Optional;
16 import java.util.TreeMap;
17
18 import org.opendaylight.transportpce.pce.SortPortsByName;
19 import org.opendaylight.yang.gen.v1.http.org.openroadm.network.topology.rev181130.Node1;
20 import org.opendaylight.yang.gen.v1.http.org.openroadm.network.topology.rev181130.TerminationPoint1;
21 import org.opendaylight.yang.gen.v1.http.org.openroadm.network.topology.rev181130.networks.network.node.termination.point.pp.attributes.UsedWavelength;
22 import org.opendaylight.yang.gen.v1.http.org.openroadm.network.types.rev181130.OpenroadmNodeType;
23 import org.opendaylight.yang.gen.v1.http.org.openroadm.network.types.rev181130.OpenroadmTpType;
24 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.rev180226.NodeId;
25 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.rev180226.networks.network.Node;
26 import org.slf4j.Logger;
27 import org.slf4j.LoggerFactory;
28
29 public class PceNode {
30     /* Logging. */
31     private static final Logger LOG = LoggerFactory.getLogger(PceCalculation.class);
32     ////////////////////////// NODES ///////////////////////////
33     /*
34      */
35
36     private boolean valid = true;
37
38     private final Node node;
39     private final NodeId nodeId;
40     private final OpenroadmNodeType nodeType;
41     private final String supNodeId;
42     private final String clli;
43
44     // wavelength calculation per node type
45     private List<Long> availableWLindex = new ArrayList<Long>();
46     private Map<String, OpenroadmTpType> availableSrgPp = new TreeMap<String, OpenroadmTpType>();
47     private Map<String, OpenroadmTpType> availableSrgCp = new TreeMap<String, OpenroadmTpType>();
48     private List<String> usedXpndrNWTps = new ArrayList<String>();
49     private List<PceLink> outgoingLinks = new ArrayList<PceLink>();
50     private Map<String, String> clientPerNwTp = new HashMap<String, String>();
51
52     public PceNode(Node node, OpenroadmNodeType nodeType, NodeId nodeId) {
53         this.node = node;
54         this.nodeId = nodeId;
55         this.nodeType = nodeType;
56         this.supNodeId = getSupNodeId(node);
57         this.clli = MapUtils.getCLLI(node);
58
59         if ((node == null) || (nodeId == null) || (nodeType == null)) {
60             LOG.error("PceNode: one of parameters is not populated : nodeId, node type");
61             this.valid = false;
62         }
63     }
64
65     public void initSrgTps() {
66         this.availableSrgPp.clear();
67         this.availableSrgCp.clear();
68         if (!isValid()) {
69             return;
70         }
71         LOG.info("initSrgTpList: getting SRG tps from ROADM node {}", this.nodeId);
72         org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.Node1 nodeTp =
73                 this.node.augmentation(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology
74                                 .rev180226.Node1.class);
75         List<org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.networks.network
76             .node.TerminationPoint> allTps =
77                 nodeTp.getTerminationPoint();
78         if (allTps == null) {
79             LOG.error("initSrgTpList: ROADM TerminationPoint list is empty for node {}", this.toString());
80             this.valid = false;
81             return;
82         }
83         for (org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.networks.network
84             .node.TerminationPoint tp : allTps) {
85             TerminationPoint1 tp1 = tp.augmentation(TerminationPoint1.class);
86             OpenroadmTpType type = tp1.getTpType();
87             switch (type) {
88                 case SRGTXRXCP:
89                 case SRGRXCP:
90                 case SRGTXCP:
91                     LOG.info("initSrgTpList: adding SRG-CP tp = {} ", tp.getTpId().getValue());
92                     this.availableSrgCp.put(tp.getTpId().getValue(), tp1.getTpType());
93                     break;
94                 case SRGRXPP:
95                 case SRGTXPP:
96                 case SRGTXRXPP:
97                     boolean used = true;
98                     LOG.info("initSrgTpList: SRG-PP tp = {} found", tp.getTpId().getValue());
99                     try {
100                         List<UsedWavelength> usedWavelengths = tp1.getPpAttributes().getUsedWavelength();
101                         if (usedWavelengths.isEmpty()) {
102                             used = false;
103                         }
104                     } catch (NullPointerException e) {
105                         LOG.warn("initSrgTpList: 'usedWavelengths' for tp={} is null !", tp.getTpId().getValue());
106                         used = false;
107                     }
108                     if (!used) {
109                         LOG.info("initSrgTpList: adding SRG-PP tp '{}'", tp.getTpId().getValue());
110                         this.availableSrgPp.put(tp.getTpId().getValue(), tp1.getTpType());
111                     } else {
112                         LOG.warn("initSrgTpList: SRG-PP tp = {} found is busy !!");
113                     }
114                     break;
115                 default:
116                     break;
117             }
118         }
119         if (this.availableSrgPp.isEmpty() && this.availableSrgCp.isEmpty()) {
120             LOG.error("initSrgTpList: ROADM SRG TerminationPoint list is empty for node {}", this.toString());
121             this.valid = false;
122             return;
123         }
124         LOG.info("initSrgTpList: availableSrgPp size = {} && availableSrgCp size = {} in {}", this.availableSrgPp
125                 .size(), this.availableSrgCp.size(), this.toString());
126         return;
127     }
128
129     public void initWLlist() {
130         this.availableWLindex.clear();
131         if (!isValid()) {
132             return;
133         }
134         Node1 node1 = this.node.augmentation(Node1.class);
135         switch (this.nodeType) {
136             case SRG :
137                 List<org.opendaylight.yang.gen.v1.http.org.openroadm.srg.rev181130.srg.node.attributes
138                     .AvailableWavelengths> srgAvailableWL =
139                         node1.getSrgAttributes().getAvailableWavelengths();
140                 if (srgAvailableWL == null) {
141                     this.valid = false;
142                     LOG.error("initWLlist: SRG AvailableWavelengths is empty for node  {}", this.toString());
143                     return;
144                 }
145                 for (org.opendaylight.yang.gen.v1.http.org.openroadm.srg.rev181130.srg.node.attributes
146                         .AvailableWavelengths awl : srgAvailableWL) {
147                     this.availableWLindex.add(awl.getIndex());
148                     LOG.debug("initWLlist: SRG next = {} in {}", awl.getIndex(), this.toString());
149                 }
150                 break;
151             case DEGREE :
152                 List<org.opendaylight.yang.gen.v1.http.org.openroadm.degree.rev181130.degree.node.attributes
153                     .AvailableWavelengths> degAvailableWL = node1.getDegreeAttributes().getAvailableWavelengths();
154                 if (degAvailableWL == null) {
155                     this.valid = false;
156                     LOG.error("initWLlist: DEG AvailableWavelengths is empty for node  {}", this.toString());
157                     return;
158                 }
159                 for (org.opendaylight.yang.gen.v1.http.org.openroadm.degree.rev181130.degree.node.attributes
160                             .AvailableWavelengths awl : degAvailableWL) {
161                     this.availableWLindex.add(awl.getIndex());
162                     LOG.debug("initWLlist: DEGREE next = {} in {}", awl.getIndex(), this.toString());
163                 }
164                 break;
165             case XPONDER :
166                 // HARD CODED 96
167                 for (long i = 1; i <= 96; i++) {
168                     this.availableWLindex.add(i);
169                 }
170                 break;
171             default:
172                 LOG.error("initWLlist: unsupported node type {} in node {}", this.nodeType, this.toString());
173                 break;
174         }
175         if (this.availableWLindex.size() == 0) {
176             LOG.debug("initWLlist: There are no available wavelengths in node {}", this.toString());
177             this.valid = false;
178         }
179         LOG.debug("initWLlist: availableWLindex size = {} in {}", this.availableWLindex.size(), this.toString());
180         return;
181     }
182
183     public void initXndrTps() {
184         LOG.info("initXndrTps for node : {}", this.nodeId);
185         if (!isValid()) {
186             return;
187         }
188         org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.Node1 nodeTp =
189                 this.node.augmentation(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology
190                         .rev180226.Node1.class);
191         List<org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.networks.network
192             .node.TerminationPoint> allTps = nodeTp.getTerminationPoint();
193         if (allTps == null) {
194             this.valid = false;
195             LOG.error("initXndrTps: XPONDER TerminationPoint list is empty for node {}", this.toString());
196             return;
197         }
198         this.valid = false;
199         for (org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.network.topology.rev180226.networks.network
200             .node.TerminationPoint tp : allTps) {
201             TerminationPoint1 tp1 = tp.augmentation(TerminationPoint1.class);
202             if (tp1.getTpType() == OpenroadmTpType.XPONDERNETWORK) {
203                 if (tp1.getXpdrNetworkAttributes().getWavelength() != null) {
204                     this.usedXpndrNWTps.add(tp.getTpId().getValue());
205                     LOG.debug("initXndrTps: XPONDER tp = {} is used", tp.getTpId().getValue());
206                 } else {
207                     this.valid = true;
208                 }
209                 // find Client of this network TP
210                 String client = tp1.getXpdrNetworkAttributes().getTailEquipmentId();
211                 if ((client.equals("")) || (client == null)) {
212                     LOG.error("initXndrTps: XPONDER {} NW TP doesn't have defined Client {}", this.toString(), tp
213                             .getTpId().getValue());
214                     this.valid = false;
215                 }
216                 this.clientPerNwTp.put(tp.getTpId().getValue(), client);
217             }
218         }
219         if (!isValid()) {
220             LOG.error("initXndrTps: XPONDER doesn't have available wavelengths for node  {}", this.toString());
221             return;
222         }
223     }
224
225     public String getRdmSrgClient(String tp, Boolean aend) {
226         LOG.info("getRdmSrgClient: Getting PP client for tp '{}' on node : {}", tp, this.nodeId);
227         OpenroadmTpType srgType = null;
228         OpenroadmTpType cpType = this.availableSrgCp.get(tp);
229         if (cpType == null) {
230             LOG.error("getRdmSrgClient: tp {} not existed in SRG CPterminationPoint list");
231             return null;
232         }
233         switch (cpType) {
234             case SRGTXRXCP:
235                 LOG.info("getRdmSrgClient: Getting BI Directional PP port ...");
236                 srgType = OpenroadmTpType.SRGTXRXPP;
237                 break;
238             case SRGTXCP:
239                 LOG.info("getRdmSrgClient: Getting UNI Rx PP port ...");
240                 srgType = OpenroadmTpType.SRGRXPP;
241                 break;
242             case SRGRXCP:
243                 LOG.info("getRdmSrgClient: Getting UNI Tx PP port ...");
244                 srgType = OpenroadmTpType.SRGTXPP;
245                 break;
246             default:
247                 break;
248         }
249         LOG.info("getRdmSrgClient:  Getting client PP for CP '{}'", tp);
250         if (!this.availableSrgPp.isEmpty()) {
251             Optional<String> client = null;
252             final OpenroadmTpType openType = srgType;
253             client = this.availableSrgPp.entrySet()
254                     .stream().filter(pp -> pp.getValue().getName().equals(openType.getName()))
255                     .map(Map.Entry::getKey)
256                     .sorted(new SortPortsByName())
257                     .findFirst();
258             if (!client.isPresent()) {
259                 LOG.error("getRdmSrgClient: ROADM {} doesn't have PP Client for CP {}", this.toString(), tp);
260                 return null;
261             }
262             LOG.info("getRdmSrgClient: client PP {} for CP {} found !", client, tp);
263             return client.get();
264         } else {
265             LOG.error("getRdmSrgClient: SRG TerminationPoint PP list is not available for node {}", this.toString());
266             return null;
267         }
268     }
269
270     private String getSupNodeId(Node inputNode) {
271         String tempSupId = "";
272         // TODO: supporting IDs exist as a List. this code takes just the
273         // first element
274         tempSupId = MapUtils.getSupNode(inputNode);
275         if (tempSupId.equals("")) {
276             LOG.error("getSupNodeId: Empty Supporting node for node: [{}]. Node is ignored", inputNode.getNodeId());
277         }
278         return tempSupId;
279     }
280
281     public void validateAZxponder(String anodeId, String znodeId) {
282         if (!isValid()) {
283             return;
284         }
285
286         if (this.nodeType != OpenroadmNodeType.XPONDER) {
287             return;
288         }
289
290         // Detect A and Z
291         if (this.supNodeId.equals(anodeId) || (this.supNodeId.equals(znodeId))) {
292
293             LOG.info("validateAZxponder: A or Z node detected == {}", nodeId.getValue());
294             initXndrTps();
295             return;
296         }
297
298         LOG.debug("validateAZxponder: XPONDER is ignored == {}", nodeId.getValue());
299         valid = false;
300     }
301
302     public String getXpdrClient(String tp) {
303         return this.clientPerNwTp.get(tp);
304     }
305
306     public boolean checkTP(String tp) {
307         return !(this.usedXpndrNWTps.contains(tp));
308     }
309
310     public boolean checkWL(long index) {
311         return (this.availableWLindex.contains(index));
312     }
313
314     public boolean isValid() {
315         if ((node == null) || (nodeId == null) || (nodeType == null) || (supNodeId == null) || (clli == null)) {
316             LOG.error("PceNode: one of parameters is not populated : nodeId, node type, supporting nodeId");
317             valid = false;
318         }
319         return valid;
320     }
321
322     public List<Long> getAvailableWLs() {
323         return availableWLindex;
324     }
325
326     public void addOutgoingLink(PceLink outLink) {
327         this.outgoingLinks.add(outLink);
328     }
329
330     public List<PceLink> getOutgoingLinks() {
331         return outgoingLinks;
332     }
333
334     public String getClient(String tp) {
335         return clientPerNwTp.get(tp);
336     }
337
338     public NodeId getNodeId() {
339         return nodeId;
340     }
341
342     public String getSupNodeIdPceNode() {
343         return supNodeId;
344     }
345
346     public String getCLLI() {
347         return clli;
348     }
349
350     public String toString() {
351         return "PceNode type=" + nodeType + " ID=" + nodeId.getValue() + " CLLI=" + clli;
352     }
353
354     public void printLinksOfNode() {
355         LOG.info(" outgoing links of node {} : {} ", nodeId.getValue(), this.getOutgoingLinks().toString());
356     }
357
358 }