blob: 28f0b7c7e3b42040820e3c8b5371580c7c71c96a [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 Condon0c577f62018-11-18 22:40:05 +000050
51 // Must - defining enforced implementation properties
52 source: Node;
53 target: Node;
54
Sean Condon91481822019-01-01 13:56:14 +000055 public static deviceNameFromEp(ep: string): string {
56 if (ep !== undefined && ep.lastIndexOf('/') > 0) {
57 return ep.substr(0, ep.lastIndexOf('/'));
58 }
59 return ep;
60 }
61
Sean Condon0c577f62018-11-18 22:40:05 +000062 constructor(source, target) {
63 this.source = source;
64 this.target = target;
65 }
Sean Condon50855cf2018-12-23 15:37:42 +000066
67 linkTypeStr(): string {
68 return LinkType[this.type];
69 }
Sean Condon0c577f62018-11-18 22:40:05 +000070}
71
72/**
Sean Condon50855cf2018-12-23 15:37:42 +000073 * model of the topo2CurrentRegion region link from Region
Sean Condon0c577f62018-11-18 22:40:05 +000074 */
75export class RegionLink extends Link {
Sean Condon0c577f62018-11-18 22:40:05 +000076 rollup: RegionRollup[]; // Links in sub regions represented by this one link
Sean Condon0c577f62018-11-18 22:40:05 +000077
78 constructor(type: LinkType, nodeA: Node, nodeB: Node) {
79 super(nodeA, nodeB);
Sean Condon50855cf2018-12-23 15:37:42 +000080 this.type = type;
Sean Condon0c577f62018-11-18 22:40:05 +000081 }
82}
Sean Condon50855cf2018-12-23 15:37:42 +000083
84/**
85 * model of the highlights that are sent back from WebSocket when traffic is shown
86 */
87export interface LinkHighlight {
88 id: string;
89 css: string;
90 label: string;
91}