aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/directives/graphs-v2/common/common-graph-utils.ts
blob: 2a7fd74e53f84385c514214581b519103c102e49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

import {CommonNodeBase, CompositionCiLinkBase, RelationshipModel, Relationship, CompositionCiNodeBase, NodesFactory, LinksFactory} from "app/models";
import {GraphUIObjects} from "app/utils";
/**
 * Created by obarda on 12/21/2016.
 */
export class CommonGraphUtils {

    constructor(private NodesFactory:NodesFactory, private LinksFactory:LinksFactory) {

    }

    public safeApply = (scope:ng.IScope, fn:any) => { //todo remove to general utils
        let phase = scope.$root.$$phase;
        if (phase == '$apply' || phase == '$digest') {
            if (fn && (typeof(fn) === 'function')) {
                fn();
            }
        } else {
            scope.$apply(fn);
        }
    };

    /**
     * Draw node on the graph
     * @param cy
     * @param compositionGraphNode
     * @param position
     * @returns {CollectionElements}
     */
    public addNodeToGraph(cy:Cy.Instance, compositionGraphNode:CommonNodeBase, position?:Cy.Position):Cy.CollectionElements {

        let node = cy.add(<Cy.ElementDefinition> {
            group: 'nodes',
            position: position,
            data: compositionGraphNode,
            classes: compositionGraphNode.classes
        });

            if(!node.data().isUcpe) { //ucpe should not have tooltip
                this.initNodeTooltip(node);
            }
            return node;
        };

    /**
     * The function will create a component instance node by the componentInstance position.
     * If the node is UCPE the function will create all cp lan&wan for the ucpe
     * @param cy
     * @param compositionGraphNode
     * @returns {Cy.CollectionElements}
     */
    public addComponentInstanceNodeToGraph(cy:Cy.Instance, compositionGraphNode:CompositionCiNodeBase):Cy.CollectionElements {

        let nodePosition = {
            x: +compositionGraphNode.componentInstance.posX,
            y: +compositionGraphNode.componentInstance.posY
        };

        let node = this.addNodeToGraph(cy, compositionGraphNode, nodePosition);
        if (compositionGraphNode.isUcpe) {
            this.createUcpeCpNodes(cy, node);
        }
        return node;
    };

    /**
     * This function will create CP_WAN & CP_LAN  for the UCPE. this is a special node on the group that will behave like ports on the ucpe
     * @param cy
     * @param ucpeGraphNode
     */
    private createUcpeCpNodes(cy:Cy.Instance, ucpeGraphNode:Cy.CollectionNodes):void {

        let requirementsArray:Array<any> = ucpeGraphNode.data().componentInstance.requirements["tosca.capabilities.Node"];
        //show only LAN or WAN requirements
        requirementsArray = _.reject(requirementsArray, (requirement:any) => {
            let name:string = requirement.ownerName.toLowerCase();
            return name.indexOf('lan') === -1 && name.indexOf('wan') === -1;
        });
        requirementsArray.sort(function (a, b) {
            let nameA = a.ownerName.toLowerCase().match(/[^ ]+/)[0];
            let nameB = b.ownerName.toLowerCase().match(/[^ ]+/)[0];
            let numA = _.last(a.ownerName.toLowerCase().split(' '));
            let numB = _.last(b.ownerName.toLowerCase().split(' '));

            if (nameA === nameB) return numA > numB ? 1 : -1;
            return nameA < nameB ? 1 : -1;
        });
        let position = angular.copy(ucpeGraphNode.boundingbox());
        //add CP nodes to group
        let topCps:number = 0;
        for (let i = 0; i < requirementsArray.length; i++) {

            let cpNode = this.NodesFactory.createUcpeCpNode(angular.copy(ucpeGraphNode.data().componentInstance));
            cpNode.componentInstance.capabilities = requirementsArray[i];
            cpNode.id = requirementsArray[i].ownerId;
            cpNode.group = ucpeGraphNode.data().componentInstance.uniqueId;
            cpNode.name = requirementsArray[i].ownerName; //for tooltip
            cpNode.displayName = requirementsArray[i].ownerName;
            cpNode.displayName = cpNode.displayName.length > 5 ? cpNode.displayName.substring(0, 5) + '...' : cpNode.displayName;


            if (cpNode.name.toLowerCase().indexOf('lan') > -1) {
                cpNode.textPosition = "top";
                cpNode.componentInstance.posX = position.x1 + (i * 90) - (topCps * 90) + 53;
                cpNode.componentInstance.posY = position.y1 + 400 + 27;
            } else {
                cpNode.textPosition = "bottom";
                cpNode.componentInstance.posX = position.x1 + (topCps * 90) + 53;
                cpNode.componentInstance.posY = position.y1 + 27;
                topCps++;
            }
            let cyCpNode = this.addComponentInstanceNodeToGraph(cy, cpNode);
            cyCpNode.lock();
        }
    };

    /**
     *
     * @param nodes - all nodes in graph in order to find the edge connecting the two nodes
     * @param fromNodeId
     * @param toNodeId
     * @returns {boolean} true/false if the edge is certified (from node and to node are certified)
     */
    public isRelationCertified(nodes:Cy.CollectionNodes, fromNodeId:string, toNodeId:string):boolean {
        let resourceTemp = _.filter(nodes, function (node:Cy.CollectionFirst) {
            return node.data().id === fromNodeId || node.data().id === toNodeId;
        });
        let certified:boolean = true;

        _.forEach(resourceTemp, (item) => {
            certified = certified && item.data().certified;
        });

        return certified;
    }

    /**
     * Add link to graph - only draw the link
     * @param cy
     * @param link
     */
    public insertLinkToGraph = (cy:Cy.Instance, link:CompositionCiLinkBase) => {

        if (!this.isRelationCertified(cy.nodes(), link.source, link.target)) {
            link.classes = 'not-certified-link';
        }
        let linkElement = cy.add({
            group: 'edges',
            data: link,
            classes: link.classes
        });
        this.initLinkTooltip(linkElement, link);
    };

    /**
     * This function will init qtip tooltip on the link
     * @params linkElement - the link we want the tooltip to apply on,
     * link - the link obj
     */
    public initLinkTooltip(linkElement:Cy.CollectionElements, link:CompositionCiLinkBase) {

        let opts = {
            content: function () {
                return '<div class="line">' +
                            '<span class="req-cap-label">R: </span>' +
                            '<span>'+ link.relation.relationships[0].relation.requirement + '</span>' +
                        '</div>' +
                        '<div class="line">' +
                            '<div class="sprite-new link-tooltip-arrow"></div>' +
                            '<span class="req-cap-label">C: </span>' +
                            '<span>' + link.relation.relationships[0].relation.capability + '</span>' +
                        '</div>';
            },
            position: {
                my: 'top center',
                at: 'bottom center',
                adjust: {x:0, y:0}
            },
            style: {
                classes: 'qtip-dark qtip-rounded qtip-custom link-qtip',
                tip: {
                    width: 16,
                    height: 8
                }
            },
            show: {
                event: 'mouseover',
                delay: 1000
            },
            hide: {event: 'mouseout mousedown'},
            includeLabels: true
        };

        linkElement.qtip(opts);
    };

    /**
     *  go over the relations and draw links on the graph
     * @param cy
     * @param instancesRelations
     */
    public initGraphLinks(cy:Cy.Instance, instancesRelations:Array<RelationshipModel>) {

        if (instancesRelations) {
            _.forEach(instancesRelations, (relationshipModel:RelationshipModel) => {
                _.forEach(relationshipModel.relationships, (relationship:Relationship) => {
                    let linkToCreate = this.LinksFactory.createGraphLink(cy, relationshipModel, relationship);
                    this.insertLinkToGraph(cy, linkToCreate);
                });
            });
        }
    }

    /**
     *  Determine which nodes are in the UCPE and set child data for them.
     * @param cy
     */
    public initUcpeChildren(cy:Cy.Instance) {
        let ucpe:Cy.CollectionNodes = cy.nodes('[?isUcpe]'); // Get ucpe on graph if exist
        _.each(cy.edges('.ucpe-host-link'), (link)=> {

            let ucpeChild:Cy.CollectionNodes = (link.source().id() == ucpe.id()) ? link.target() : link.source();
            this.initUcpeChildData(ucpeChild, ucpe);

            //vls dont have ucpe-host-link connection, so need to find them and iterate separately
            let connectedVLs = ucpeChild.connectedEdges().connectedNodes('.vl-node');
            _.forEach(connectedVLs, (vl)=> { //all connected vls must be UCPE children because not allowed to connect to a VL outside of the UCPE
                this.initUcpeChildData(vl, ucpe);
            });
        });
    }

    /**
     *  Set properties for nodes contained by the UCPE
     * @param childNode- node contained in UCPE
     * @param ucpe- ucpe container node
     */
    public initUcpeChildData(childNode:Cy.CollectionNodes, ucpe:Cy.CollectionNodes) {

        if (!childNode.data('isInsideGroup')) {
            this.updateUcpeChildPosition(childNode, ucpe);
            childNode.data({isInsideGroup: true});
        }

    }

    /**
     *  Updates UCPE child node offset, which allows child nodes to be dragged in synchronization with ucpe
     * @param childNode- node contained in UCPE
     * @param ucpe- ucpe container node
     */
    public updateUcpeChildPosition(childNode:Cy.CollectionNodes, ucpe:Cy.CollectionNodes) {
        let childPos:Cy.Position = childNode.relativePosition();
        let ucpePos:Cy.Position = ucpe.relativePosition();
        let offset:Cy.Position = {
            x: childPos.x - ucpePos.x,
            y: childPos.y - ucpePos.y
        };
        childNode.data("ucpeOffset", offset);
    }

    /**
     *  Removes ucpe-child properties from the node
     * @param childNode- node being removed from UCPE
     */
    public removeUcpeChildData(childNode:Cy.CollectionNodes) {
        childNode.removeData("ucpeOffset");
        childNode.data({isInsideGroup: false});

    }


    public HTMLCoordsToCytoscapeCoords(cytoscapeBoundingBox:Cy.Extent, mousePos:Cy.Position):Cy.Position {
        return {x: mousePos.x + cytoscapeBoundingBox.x1, y: mousePos.y + cytoscapeBoundingBox.y1}
    };


    public getCytoscapeNodePosition = (cy:Cy.Instance, event:IDragDropEvent):Cy.Position => {
        let targetOffset = $(event.target).offset();
        let x = event.pageX - targetOffset.left;
        let y = event.pageY - targetOffset.top;

        return this.HTMLCoordsToCytoscapeCoords(cy.extent(), {
            x: x,
            y: y
        });
    };


    public getNodePosition(node:Cy.CollectionFirstNode):Cy.Position {
        let nodePosition = node.relativePoint();
        if (node.data().isUcpe) { //UCPEs use bounding box and not relative point.
            nodePosition = {x: node.boundingbox().x1, y: node.boundingbox().y1};
        }

        return nodePosition;
    }

        /**
         * Generic function that can be used for any html elements overlaid on canvas
         * Returns the html position of a node on canvas, including left palette and header offsets. Option to pass in additional offset to add to return position.
         * @param node
         * @param additionalOffset
         * @returns {Cy.Position}
         
        public getNodePositionWithOffset = (node:Cy.CollectionFirstNode, additionalOffset?:Cy.Position): Cy.Position => {
            if(!additionalOffset) additionalOffset = {x: 0, y:0};

            let nodePosition = node.renderedPosition();
            let posWithOffset:Cy.Position = {
                x: nodePosition.x + GraphUIObjects.DIAGRAM_PALETTE_WIDTH_OFFSET + additionalOffset.x,
                y: nodePosition.y + GraphUIObjects.COMPOSITION_HEADER_OFFSET + additionalOffset.y
            };
            return posWithOffset;
        };*/

        /**
         *  return true/false if first node contains in second - this used in order to verify is node is entirely inside ucpe
         * @param firstBox
         * @param secondBox
         * @returns {boolean}
         */
        public isFirstBoxContainsInSecondBox(firstBox:Cy.BoundingBox, secondBox:Cy.BoundingBox) {

        return firstBox.x1 > secondBox.x1 && firstBox.x2 < secondBox.x2 && firstBox.y1 > secondBox.y1 && firstBox.y2 < secondBox.y2;

    };


    /**
     * Check if node node bounds position is inside any ucpe on graph, and return the ucpe
     * @param {diagram} the diagram.
     * @param {nodeActualBounds} the actual bound position of the node.
     * @return the ucpe if found else return null
     */
    public isInUcpe = (cy:Cy.Instance, nodeBounds:Cy.BoundingBox):Cy.CollectionElements => {

        let ucpeNodes = cy.nodes('[?isUcpe]').filterFn((ucpeNode) => {
            return this.isFirstBoxContainsInSecondBox(nodeBounds, ucpeNode.boundingbox());
        });
        return ucpeNodes;
    };

    /**
     *
     * @param cy
     * @param node
     * @returns {Array}
     */
    public getLinkableNodes(cy:Cy.Instance, node:Cy.CollectionFirstNode):Array<CompositionCiNodeBase> {
        let compatibleNodes = [];
        _.each(cy.nodes(), (tempNode)=> {
            if (this.nodeLocationsCompatible(cy, node, tempNode)) {
                compatibleNodes.push(tempNode.data());
            }
        });
        return compatibleNodes;
    }

    /**
     * Checks whether node locations are compatible in reference to UCPEs.
     * Returns true if both nodes are in UCPE or both nodes out, or one node is UCPEpart.
     * @param node1
     * @param node2
     */
    public nodeLocationsCompatible(cy:Cy.Instance, node1:Cy.CollectionFirstNode, node2:Cy.CollectionFirstNode) {

            let ucpe = cy.nodes('[?isUcpe]');
            if(!ucpe.length){ return true; }
            if(node1.data().isUcpePart || node2.data().isUcpePart) { return true; }

        return (this.isFirstBoxContainsInSecondBox(node1.boundingbox(), ucpe.boundingbox()) == this.isFirstBoxContainsInSecondBox(node2.boundingbox(), ucpe.boundingbox()));

    }

        /**
         * This function will init qtip tooltip on the node
         * @param node - the node we want the tooltip to apply on
         */
        public initNodeTooltip(node:Cy.CollectionNodes) {
    
            let opts = {
                content: function () {
                    return this.data('name');
                },
                position: {
                    my: 'top center',
                    at: 'bottom center',
                    adjust: {x:0, y:-5}
                },
                style: {
                    classes: 'qtip-dark qtip-rounded qtip-custom',
                    tip: {
                        width: 16,
                        height: 8
                    }
                },
                show: {
                    event: 'mouseover',
                    delay: 1000
                },
                hide: {event: 'mouseout mousedown'},
                includeLabels: true
            };
    
            if (node.data().isUcpePart){ //fix tooltip positioning for UCPE-cps
                opts.position.adjust = {x:0, y:20};
            }
    
            node.qtip(opts);
        };
}

CommonGraphUtils.$inject = ['NodesFactory', 'LinksFactory'];