blob: d5ff2a797a90005c7f5e6b53ade0990e7344cf7e [file] [log] [blame]
Sean Condon0c577f62018-11-18 22:40:05 +00001/*
Sean Condon91481822019-01-01 13:56:14 +00002 * Copyright 2019-present Open Networking Foundation
Sean Condon0c577f62018-11-18 22:40:05 +00003 *
4 * Licensed under the Apache License, Version 2.0 (the 'License');
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an 'AS IS' BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Sean Condon50855cf2018-12-23 15:37:42 +000016import {Node, UiElement} from './node';
Sean Condon0c577f62018-11-18 22:40:05 +000017import * as d3 from 'd3';
18
19export enum LinkType {
20 UiRegionLink,
21 UiDeviceLink,
22 UiEdgeLink
23}
24
25/**
26 * model of the topo2CurrentRegion region rollup from Region below
27 *
28 */
29export interface RegionRollup {
30 id: string;
31 epA: string;
32 epB: string;
33 portA: string;
34 portB: string;
35 type: LinkType;
36}
37
38/**
39 * Implementing SimulationLinkDatum interface into our custom Link class
40 */
Sean Condon50855cf2018-12-23 15:37:42 +000041export class Link implements UiElement, d3.SimulationLinkDatum<Node> {
Sean Condon0c577f62018-11-18 22:40:05 +000042 // Optional - defining optional implementation properties - required for relevant typing assistance
43 index?: number;
Sean Condon50855cf2018-12-23 15:37:42 +000044 id: string; // The id of the link in the format epA/portA~epB/portB
45 epA: string; // The name of the device or host at one end
46 epB: string; // The name of the device or host at the other end
47 portA: string; // The number of the port at one end
48 portB: string; // The number of the port at the other end
49 type: LinkType;
Sean Condonc13d9562019-04-18 13:24:42 +010050 rollup: RegionRollup[]; // Links in sub regions represented by this one link
Sean Condon0c577f62018-11-18 22:40:05 +000051
52 // Must - defining enforced implementation properties
53 source: Node;
54 target: Node;
55
Sean Condon91481822019-01-01 13:56:14 +000056 public static deviceNameFromEp(ep: string): string {
57 if (ep !== undefined && ep.lastIndexOf('/') > 0) {
58 return ep.substr(0, ep.lastIndexOf('/'));
59 }
60 return ep;
61 }
62
Sean Condon64ea7d22019-04-12 19:39:13 +010063 /**
64 * The WSS event showHighlights is sent up with a slightly different
65 * name format on the link id using the "-" separator rather than the "~"
66 * @param linkId The id of the link in either format
67 */
68 public static linkIdFromShowHighlights(linkId: string) {
69 if (linkId.includes('-')) {
70 const parts: string[] = linkId.split('-');
71 const part0 = Link.removeHostPortNum(parts[0]);
72 const part1 = Link.removeHostPortNum(parts[1]);
73 return part0 + '~' + part1;
74 }
75 return linkId;
76 }
77
78 private static removeHostPortNum(hostStr: string) {
79 if (hostStr.includes('/None/')) {
80 const subparts = hostStr.split('/');
81 return subparts[0] + '/' + subparts[1];
82 }
83 return hostStr;
84 }
85
Sean Condon0c577f62018-11-18 22:40:05 +000086 constructor(source, target) {
87 this.source = source;
88 this.target = target;
89 }
Sean Condon50855cf2018-12-23 15:37:42 +000090
91 linkTypeStr(): string {
92 return LinkType[this.type];
93 }
Sean Condon0c577f62018-11-18 22:40:05 +000094}
95
96/**
Sean Condon50855cf2018-12-23 15:37:42 +000097 * model of the topo2CurrentRegion region link from Region
Sean Condon0c577f62018-11-18 22:40:05 +000098 */
99export class RegionLink extends Link {
Sean Condon0c577f62018-11-18 22:40:05 +0000100
101 constructor(type: LinkType, nodeA: Node, nodeB: Node) {
102 super(nodeA, nodeB);
Sean Condon50855cf2018-12-23 15:37:42 +0000103 this.type = type;
Sean Condon0c577f62018-11-18 22:40:05 +0000104 }
105}
Sean Condon50855cf2018-12-23 15:37:42 +0000106
107/**
108 * model of the highlights that are sent back from WebSocket when traffic is shown
109 */
110export interface LinkHighlight {
111 id: string;
112 css: string;
113 label: string;
Sean Condon64ea7d22019-04-12 19:39:13 +0100114 fadems: number;
Sean Condon50855cf2018-12-23 15:37:42 +0000115}