blob: eb6d34083b88fb4201db8cb61600a9e4cbd18e35 [file] [log] [blame]
Sean Condon0c577f62018-11-18 22:40:05 +00001/*
2 * Copyright 2018-present Open Networking Foundation
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 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
55 constructor(source, target) {
56 this.source = source;
57 this.target = target;
58 }
Sean Condon50855cf2018-12-23 15:37:42 +000059
60 linkTypeStr(): string {
61 return LinkType[this.type];
62 }
Sean Condon0c577f62018-11-18 22:40:05 +000063}
64
65/**
Sean Condon50855cf2018-12-23 15:37:42 +000066 * model of the topo2CurrentRegion region link from Region
Sean Condon0c577f62018-11-18 22:40:05 +000067 */
68export class RegionLink extends Link {
Sean Condon0c577f62018-11-18 22:40:05 +000069 rollup: RegionRollup[]; // Links in sub regions represented by this one link
Sean Condon0c577f62018-11-18 22:40:05 +000070
71 constructor(type: LinkType, nodeA: Node, nodeB: Node) {
72 super(nodeA, nodeB);
Sean Condon50855cf2018-12-23 15:37:42 +000073 this.type = type;
Sean Condon0c577f62018-11-18 22:40:05 +000074 }
75}
Sean Condon50855cf2018-12-23 15:37:42 +000076
77/**
78 * model of the highlights that are sent back from WebSocket when traffic is shown
79 */
80export interface LinkHighlight {
81 id: string;
82 css: string;
83 label: string;
84}