Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 1 | /* |
Sean Condon | 9148182 | 2019-01-01 13:56:14 +0000 | [diff] [blame] | 2 | * Copyright 2019-present Open Networking Foundation |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 3 | * |
| 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 Condon | 50855cf | 2018-12-23 15:37:42 +0000 | [diff] [blame] | 16 | import {Node, UiElement} from './node'; |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 17 | import * as d3 from 'd3'; |
| 18 | |
| 19 | export enum LinkType { |
| 20 | UiRegionLink, |
| 21 | UiDeviceLink, |
| 22 | UiEdgeLink |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * model of the topo2CurrentRegion region rollup from Region below |
| 27 | * |
| 28 | */ |
| 29 | export 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 Condon | 50855cf | 2018-12-23 15:37:42 +0000 | [diff] [blame] | 41 | export class Link implements UiElement, d3.SimulationLinkDatum<Node> { |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 42 | // Optional - defining optional implementation properties - required for relevant typing assistance |
| 43 | index?: number; |
Sean Condon | 50855cf | 2018-12-23 15:37:42 +0000 | [diff] [blame] | 44 | 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 Condon | c13d956 | 2019-04-18 13:24:42 +0100 | [diff] [blame] | 50 | rollup: RegionRollup[]; // Links in sub regions represented by this one link |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 51 | |
| 52 | // Must - defining enforced implementation properties |
| 53 | source: Node; |
| 54 | target: Node; |
| 55 | |
Sean Condon | 9148182 | 2019-01-01 13:56:14 +0000 | [diff] [blame] | 56 | 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 Condon | 64ea7d2 | 2019-04-12 19:39:13 +0100 | [diff] [blame] | 63 | /** |
| 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 Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 86 | constructor(source, target) { |
| 87 | this.source = source; |
| 88 | this.target = target; |
| 89 | } |
Sean Condon | 50855cf | 2018-12-23 15:37:42 +0000 | [diff] [blame] | 90 | |
| 91 | linkTypeStr(): string { |
| 92 | return LinkType[this.type]; |
| 93 | } |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /** |
Sean Condon | 50855cf | 2018-12-23 15:37:42 +0000 | [diff] [blame] | 97 | * model of the topo2CurrentRegion region link from Region |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 98 | */ |
| 99 | export class RegionLink extends Link { |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 100 | |
| 101 | constructor(type: LinkType, nodeA: Node, nodeB: Node) { |
| 102 | super(nodeA, nodeB); |
Sean Condon | 50855cf | 2018-12-23 15:37:42 +0000 | [diff] [blame] | 103 | this.type = type; |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 104 | } |
| 105 | } |
Sean Condon | 50855cf | 2018-12-23 15:37:42 +0000 | [diff] [blame] | 106 | |
| 107 | /** |
| 108 | * model of the highlights that are sent back from WebSocket when traffic is shown |
| 109 | */ |
| 110 | export interface LinkHighlight { |
| 111 | id: string; |
| 112 | css: string; |
| 113 | label: string; |
Sean Condon | 64ea7d2 | 2019-04-12 19:39:13 +0100 | [diff] [blame] | 114 | fadems: number; |
Sean Condon | 50855cf | 2018-12-23 15:37:42 +0000 | [diff] [blame] | 115 | } |