aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wireless-transport/code-Carbon-SR1/ux/mwtnTopology/mwtnTopology-module/src/main/resources/mwtnTopology/mwtnTopology.controller.js
blob: f8aa303abd2fc78ca98076ea3749a19cb19054f9 (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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
/*
 * Copyright (c) 2016 highstreet technologies GmbH and others. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
if (typeof (Number.prototype.toRad) === "undefined") {
  Number.prototype.toRadians = function () {
    return this * Math.PI / 180;
  }
}

if (Number.prototype.toDegrees === undefined) {
  Number.prototype.toDegrees = function () {
    return this * 180 / Math.PI;
  };
}

// If array is empty, undefined is returned.  If not empty, the first element
// that evaluates to false is returned.  If no elements evaluate to false, the
// last element in the array is returned.
Array.prototype.and = function (defaultValue) {
  for (var i = 0, len = this.length - 1; i < len && this[i]; i++);
  return this.length ? this[i] : defaultValue;
};

// If array is empty, undefined is returned.  If not empty, the first element
// that evaluates to true is returned.  If no elements evaluate to true, the
// last element in the array is returned.
Array.prototype.or = function () {
  for (var i = 0, len = this.length - 1; i < len && !this[i]; i++);
  return this[i];
};

var eventsFabric = function () {
  var topics = {};
  var hOP = topics.hasOwnProperty;

  return {
    subscribe: function (topic, listener) {
      // Create the topic's object if not yet created
      if (!hOP.call(topics, topic)) topics[topic] = [];

      // Add the listener to queue
      var index = topics[topic].push(listener) - 1;

      // Provide handle back for removal of topic
      return {
        remove: function () {
          delete topics[topic][index];
        }
      };
    },
    publish: function (topic, info) {
      // If the topic doesn't exist, or there's no listeners in queue, just leave
      if (!hOP.call(topics, topic)) return;

      // Cycle through topics queue, fire!
      topics[topic].forEach(function (item) {
        item(info != undefined ? info : {});
      });
    }
  };
};

var lastOpenedInfoWindow = null;

/*********************************************************************************************/

/** @typedef  {{ id: string, siteA: string, siteZ: string, siteNameA: string, siteNameZ: string, airInterfaceLinks: {id: string, siteLink: string, radio: string, polarization: string }[]}} SiteLinkDetails */

define(['app/mwtnCommons/bower_components/lodash/dist/lodash',
  'app/mwtnCommons/bower_components/cytoscape/dist/cytoscape',
  'app/mwtnTopology/mwtnTopology.module',
  'app/mwtnTopology/mwtnTopology.services',
  'app/mwtnCommons/mwtnCommons.services'
], function (_, cytoscape, mwtnTopologyApp) {

  // module.exports = function () {
  //   const mwtnTopologyApp = require('app/mwtnTopology/mwtnTopology.module');
  //   const mwtnTopologyService = require('app/mwtnTopology/mwtnTopology.services');
  //   const cytoscape = require('cytoscape');

  // remove '_' from global scope but use it here as '_'.
  _.noConflict();

  /********************************************* Sites *************************/

  mwtnTopologyApp.directive('mwtnTopologyMap', ["$timeout", "$q", "$mwtnTopology", function ($timeout, $q, $mwtnTopology) {
    return {
      restrict: 'E',
      replace: true,
      template: '<div style="position:realtive;width:100%;height:700px" ng-transclude=""></div>',
      controller: function () {

      },
      transclude: true,
      scope: {
        manualMapBounds: "=?",
        onBoundsChanged: "&?"
      },
      link: function (scope, element, attrs, ctrl) {

        var mapApiReadyDefer = $q.defer();
        var disbaleNotifications = true;
        //var includeCenter = false;

        var initialMapOptions = {
          center: new google.maps.LatLng(0, 0),
          mapTypeId: google.maps.MapTypeId.HYBRID,
          panControl: false,
          rotateControl: false,
          streetViewControl: false,
          tilt: 0,
          zoom: 2,
          minZoom: 2
        };

        // Wait at least one digest cycle before init the google map.
        $timeout(function () {
          ctrl.map = new google.maps.Map(element[0], initialMapOptions);

          // Wait until google maps is fully intialized to attach nessessary event handler.
          waitUntilGoogleMapsIsReady();
        });

        element.on("$destroy", function () {
          if (scope.waitUntilGoogleMapsIsReadyTimeoutId) {
            $timeout.cancel(scope.waitUntilGoogleMapsIsReadyTimeoutId);
          }
          if (scope.onDragEndListener) {
            google.maps.event.removeListener(scope.onDragEndListener);
            delete (scope.onDragEndListener);
          }
          if (scope.onZoomChangedListener) {
            google.maps.event.removeListener(scope.onZoomChangedListener);
            delete (scope.onZoomChangedListener);
          }

          // window.removeEventListener('resize', onBoundsChanged);

        });

        scope.$watch("manualMapBounds", function (newBounds, oldBounds) {
          mapApiReadyDefer.promise.then(function () {

            // if this was an uri change from an not user originated action just return;            
            if (newBounds.internal) return;

            // values must exist and at least one must be different or initial load (new === old)
            if (newBounds.bottom != null && newBounds.left != null && newBounds.top != null && newBounds.right != null) {
              fitBounds(ctrl.map, new google.maps.LatLngBounds(
                new google.maps.LatLng(newBounds.bottom, newBounds.left),
                new google.maps.LatLng(newBounds.top, newBounds.right)));
            } else if (newBounds.lat != null && newBounds.lng != null && newBounds.zoom != null && (newBounds.lat != oldBounds.lat || newBounds.lng != oldBounds.lng || newBounds.zoom != oldBounds.zoom || newBounds === oldBounds)) {
              disbaleNotifications = true;
              google.maps.event.addListenerOnce(ctrl.map, 'bounds_changed', function (event) {
                disbaleNotifications = false;
                onBoundsChanged(false);

              });
              ctrl.map.setCenter({ lat: newBounds.lat, lng: newBounds.lng });
              ctrl.map.setZoom(newBounds.zoom);

            }
            console.log("manualMapBounds", newBounds);
          });
        });

        /**
         * An asynchronous function that is called continuously every 100 milliseconds until the google maps control has finished its first complete draw.
         * Then it sets up all event handlers and reports its bounds.
         */
        function waitUntilGoogleMapsIsReady() {
          var getBoundsApi = ctrl.map.getBounds();
          if (getBoundsApi) {
            delete (scope.waitUntilGoogleMapsIsReadyTimeoutId);
            // Change to dragend https://developers.google.com/maps/documentation/javascript/events?hl=de
            scope.onDragEndListener = ctrl.map.addListener('dragend', function () {
              onBoundsChanged(true);
            });
            scope.onZoomChangedListener = ctrl.map.addListener('zoom_changed', function () {
              onBoundsChanged(true);
            });
            // window.addEventListener('resize', function () {
            //   onBoundsChanged(false);
            // });

            disbaleNotifications = false;
            mapApiReadyDefer.resolve();
          } else {
            scope.waitUntilGoogleMapsIsReadyTimeoutId = $timeout(waitUntilGoogleMapsIsReady, 100);
          }
        }

        /**
         * Gets the current bound and zoom level of the map control and reports it to its parent component.
         * Hint: do not call directly use fitBounds helper function since there is a google bug in the fit bounds function.
         */
        function onBoundsChanged(userOriginated) {
          if (!disbaleNotifications && scope.onBoundsChanged && angular.isFunction(scope.onBoundsChanged)) {

            var getBoundsApi = ctrl.map.getBounds();
            var northEastApi = getBoundsApi.getNorthEast();
            var southWestApi = getBoundsApi.getSouthWest();
            var center = ctrl.map.getCenter();

            var data = {
              top: northEastApi.lat(),
              right: northEastApi.lng(),
              bottom: southWestApi.lat(),
              left: southWestApi.lng(),
              lat: center.lat(),
              lng: center.lng(),
              zoom: ctrl.map.getZoom()
            };

            console.log("onBoundsChanged", data);

            scope.onBoundsChanged({
              data: data,
              userOriginated: userOriginated === true
            });
          }
        }

        // bug: the original google code will fit bounds will add some extra space, this function will fix it
        function fitBounds(map, bounds) {
          var oldBounds = map.getBounds();

          // ensure there is any change
          if (oldBounds.toUrlValue() == bounds.toUrlValue()) {
            return;
          }

          disbaleNotifications = true;
          google.maps.event.addListenerOnce(map, 'bounds_changed', function (event) {
            // bugfix: this is a fix for the https://issuetracker.google.com/issues/35820423 
            //         the map does sometime zoom out if it gets its one bounds

            // var newSpan = map.getBounds().toSpan();              // the span of the map set by Google fitBounds (always larger by what we ask)
            // var askedSpan = bounds.toSpan();                     // the span of what we asked for
            // var latRatio = (newSpan.lat() / askedSpan.lat()) - 1;  // the % of increase on the latitude
            // var lngRatio = (newSpan.lng() / askedSpan.lng()) - 1;  // the % of increase on the longitude
            // // if the % of increase is too big (> to a threshold) we zoom in
            // if (Math.min(latRatio, lngRatio) > 0.46) {
            //   // 0.46 is the threshold value for zoming in. It has been established empirically by trying different values.
            //   this.setZoom(this.getZoom() + 1);
            // }
            disbaleNotifications = false;
            onBoundsChanged(false);

          });
          map.fitBounds(bounds); // does the job asynchronously
        }
      }
    };
  }]);

  mwtnTopologyApp.directive('mwtnTopologyMapSites', ['$compile', '$rootScope', function ($compile, $rootScope) {

    return {
      restrict: 'E',
      require: '^mwtnTopologyMap',
      scope: {
        sites: "=",
        selectedSite: "=",
        api: "="
      },
      link: function (scope, element, attrs, mwtnTopologyMapController) {
        // todo: shouild come from a service
        var normalIcon = {
          path: google.maps.SymbolPath.CIRCLE,
          scale: 10,
          strokeColor: '#00ccff',
          strokeOpacity: 0.8,
          strokeWeight: 2,
          fillColor: '#00ccff',
          fillOpacity: 0.35,
          zIndex: 2
        };

        var highlightIcon = {
          path: google.maps.SymbolPath.CIRCLE,
          scale: 10,
          strokeColor: '#eaae3c',
          strokeOpacity: 0.8,
          strokeWeight: 3,
          fillColor: '#eaae3c',
          fillOpacity: 0.65,
          zIndex: 2
        };

        var selectedIcon = {
          path: google.maps.SymbolPath.CIRCLE,
          scale: 10,
          strokeColor: '#00FD30',
          strokeOpacity: 0.8,
          strokeWeight: 2,
          fillColor: '#00FD30',
          fillOpacity: 0.35,
          zIndex: 2
        };

        scope.displayedSites = {};
        scope.knownSites = {};

        scope.$watch("selectedSite", function (newSiteId, oldSiteId) {

          if (oldSiteId && scope.displayedSites[oldSiteId]) {
            scope.displayedSites[oldSiteId].setOptions({
              icon: normalIcon
            });
          }

          if (newSiteId && scope.displayedSites[newSiteId]) {
            scope.displayedSites[newSiteId].setOptions({
              icon: selectedIcon
            });
          }

        });

        if (!scope.api) return;

        /**
         * Updates the google map markers
         * @param addedSiteIds {string[]} The ids of the sites which are added to the scope.displayedSites dictionary.
         * @param removedFromVisibleIds {string[]} The ids of sites which are removed from the visible bounding rectangle.
         * @param movedFromVisibleToKnownIds {string[]} The ids of sites which are moved from the visible bounding rectangle to the extended bounding rectangle.
         * @param removedFromKnownIds {string[]} The ids of sites which are removed from the extended bounding rectangle.
         * @param movedFromKnownToVisibleIds {string[]} The ids of sites which are moved from the extended bounding rectangle to the visible bounding rectangle.
         */
        scope.api.updateSites = function (addedSiteIds, removedFromVisibleIds, movedFromVisibleToKnownIds, removedFromKnownIds, movedFromKnownToVisibleIds) {
          if (!addedSiteIds) addedSiteIds = [];
          if (!removedFromVisibleIds) removedFromVisibleIds = [];
          if (!movedFromVisibleToKnownIds) movedFromVisibleToKnownIds = [];
          if (!removedFromKnownIds) removedFromKnownIds = [];
          if (!movedFromKnownToVisibleIds) movedFromKnownToVisibleIds = [];

          removedFromVisibleIds.forEach(function (siteId) {
            var marker = scope.displayedSites[siteId];
            if (marker) {
              marker.setMap(null);
              //delete marker;
              delete scope.displayedSites[siteId];
            }
          });

          removedFromKnownIds.forEach(function (siteId) {
            var marker = scope.knownSites[siteId];
            if (marker) {
              marker.setMap(null);
              //delete marker;
              delete scope.knownSites[siteId];
            }
          });

          movedFromVisibleToKnownIds.forEach(function (siteId) {
            var marker = scope.displayedSites[siteId];
            if (marker) {
              marker.setVisible(false);
              scope.knownSites[siteId] = marker;
              delete scope.displayedSites[siteId];
            }
          });

          movedFromKnownToVisibleIds.forEach(function (siteId) {
            var marker = scope.knownSites[siteId];
            if (marker) {
              marker.setVisible(true);
              scope.displayedSites[siteId] = marker;
              delete scope.knownSites[siteId];
            }
          });

          addedSiteIds.forEach(function (newSiteId) {
            var newSite = scope.sites[newSiteId];
            var newSiteNormalIcon = Object.assign({}, normalIcon, {
              fillColor: (newSite.type === 'data-center') ? "#ffff00": "#00ccff",
              strokeColor: (newSite.type === 'data-center') ? "#ffff00" : "#00ccff"
            });
            var newSiteHighlightIcon = Object.assign({}, highlightIcon, { 
              fillColor: (newSite.type === 'data-center') ? "#ffff00": "#00ccff",
              strokeColor: (newSite.type === 'data-center') ? "#ffff00" : "#00ccff"
             });
            if (newSite && !scope.displayedSites[newSiteId]) {

              // create the marker
              var marker = new google.maps.Marker({
                map: mwtnTopologyMapController.map,
                position: newSite.location,
                title: newSite.name,
                icon: newSiteNormalIcon
              });

              // add event listeners to the marker
              marker.addListener('click', function () {
                // cloase all already opened windows
                if (lastOpenedInfoWindow) {
                  lastOpenedInfoWindow.close();
                  lastOpenedInfoWindow = null;
                }

                // compile the content
                var infoWindowTemplate = '<mwtn-topology-site-details site-id="siteId" />';
                var infoWindowScope = $rootScope.$new();
                infoWindowScope['siteId'] = newSiteId;
                var infoWindowContent = $compile(infoWindowTemplate)(infoWindowScope)[0];

                // create the info window
                var infowindow = new google.maps.InfoWindow({
                  content: infoWindowContent,
                  disableAutoPan: true
                });

                // open the window and keek a refenrece to close it if new window opens               
                infowindow.open(mwtnTopologyMapController.map, marker);
                lastOpenedInfoWindow = infowindow;

                // remove the reference if the windows is closed                
                infowindow.addListener('closeclick', function () {
                  lastOpenedInfoWindow = null;
                });
              });

              marker.addListener('mouseover', function () {
                marker.setOptions({ icon: newSiteHighlightIcon });
              });

              marker.addListener('mouseout', function () {
                marker.setOptions({ icon: newSiteNormalIcon });
              });

              // store marker
              scope.displayedSites[newSiteId] = marker;
            }
          });
        };

      }
    }
  }]);

  mwtnTopologyApp.directive('mwtnTopologyMapSiteLinks', ['$compile', '$rootScope', function ($compile, $rootScope) {
    return {
      restrict: 'E',
      require: '^mwtnTopologyMap',
      scope: {
        selectedSiteLink: "=",
        siteLinks: "=",
        api: "="
      },
      link: function (scope, element, attrs, mwtnTopologyMapController) {

        var normalColor = "#FF0000";
        var selectedColor = "#00FD30";

        scope.$watch("selectedSiteLink", function (newSiteLinkId, oldSiteLinkId) {

          if (oldSiteLinkId && scope.displayedSiteLinks[oldSiteLinkId]) {
            scope.displayedSiteLinks[oldSiteLinkId].setOptions({
              strokeColor: normalColor,
            });
          }

          if (newSiteLinkId && scope.displayedSiteLinks[newSiteLinkId]) {
            scope.displayedSiteLinks[newSiteLinkId].setOptions({
              strokeColor: selectedColor,
            });
          }

        });

        scope.displayedSiteLinks = {};

        /**
         * Updates the google map Polylines
         * @param addedSiteLinkIds {string[]} The ids of sites links which are added to the scope.displayedSiteLinks dictionary and the google map.
         * @param removedSiteLinkIds {string[]} The ids of sites links which are removed from the visible bounding rectangle within the google map.
         */
        scope.api.updateSiteLinks = function (addedSiteLinkIds, removedSiteLinkIds) {
          if (!addedSiteLinkIds) addedSiteLinkIds = [];
          if (!removedSiteLinkIds) removedSiteLinkIds = [];

          removedSiteLinkIds.forEach(function (siteLinkId) {
            var polyline = scope.displayedSiteLinks[siteLinkId];
            if (polyline) {
              polyline.setMap(null);
              //delete polyline;
              delete scope.displayedSiteLinks[siteLinkId];
            }
          });

          addedSiteLinkIds.forEach(function (siteLinkId) {
            var siteLink = scope.siteLinks[siteLinkId];
            console.log(siteLink);
            
            if (siteLink && !scope.displayedSiteLinks[siteLinkId]) {

              // create the poly line
              var polyline = new google.maps.Polyline({
                map: mwtnTopologyMapController.map,
                path: [siteLink.siteA.location, siteLink.siteZ.location],
                strokeColor: siteLink.type === 'traffic' ? '#00ccff': '#ffff00',
                strokeOpacity: 0.8,
                strokeWeight: siteLink.type === 'traffic' ? 4 : 2,
                zIndex: 1,
                geodesic: true
              });
              console.log(siteLink.type, polyline.strokeColor);
              
              // add event listeners to the polyline
              polyline.addListener('click', function (event) {
                // cloase all already opened windows
                if (lastOpenedInfoWindow) {
                  lastOpenedInfoWindow.close();
                  lastOpenedInfoWindow = null;
                }

                // compile the content
                var infoWindowTemplate = '<mwtn-topology-link-details link-id="linkId"></mwtn-topology-link-details>';
                var infoWindowScope = $rootScope.$new();
                infoWindowScope['linkId'] = siteLinkId;
                var infoWindowContent = $compile(infoWindowTemplate)(infoWindowScope)[0];

                // create the info window
                var infowindow = new google.maps.InfoWindow({
                  content: infoWindowContent,
                  disableAutoPan: true
                });

                // open the window and keek a refenrece to close it if new window opens               
                // adjust and show the info window
                infowindow.setPosition(event.latLng);
                infowindow.open(mwtnTopologyMapController.map);
                lastOpenedInfoWindow = infowindow;

                // remove the reference if the windows is closed                
                infowindow.addListener('closeclick', function () {
                  lastOpenedInfoWindow = null;
                });

              });

              polyline.addListener('mouseover', function () {
                polyline.setOptions({ strokeWeight: 6 });
              });

              polyline.addListener('mouseout', function () {
                polyline.setOptions({ strokeWeight: 3 });
              });

              // store the ployline              
              scope.displayedSiteLinks[siteLinkId] = polyline;
            }
          });
        };

      }
    };
  }]);

  mwtnTopologyApp.controller('mwtnTopologySiteDetailsController', ['$scope', '$timeout', '$mwtnTopology', function ($scope, $timeout, $mwtnTopology) {
    var vm = this;
    vm.site = null;

    $scope.$watch(function () { return vm.siteId }, function (newSiteId, oldSiteId) {
      if (!newSiteId) return;

      vm.status = {
        message: 'Searching...',
        type: 'warning',
        isWorking: true
      };

      $mwtnTopology.getSiteDetailsBySiteId(newSiteId).then(function (siteDetails) {
        vm.site = siteDetails;

        vm.status = {
          message: undefined,
          type: 'success',
          isWorking: false
        };
      }, function (err) {
        vm.status = {
          message: err,
          type: 'error',
          isWorking: false
        };
      });
    });

  }]);

  mwtnTopologyApp.directive('mwtnTopologySiteDetails', function () {
    return {
      scope: { siteId: "=" },
      restrict: 'E',
      controller: 'mwtnTopologySiteDetailsController',
      controllerAs: 'vm',
      bindToController: true,
      templateUrl: 'src/app/mwtnTopology/templates/siteDetails.tpl.html'
    };
  });

  mwtnTopologyApp.controller('mwtnTopologyLinkDetailsController', ['$scope', '$timeout', '$mwtnTopology', function ($scope, $timeout, $mwtnTopology) {
    /** @type {{ link: SiteLinkDetails } & {[key: string]: any}} */
    var vm = this;
    vm.site = null;
    vm.link = null;

    $scope.$watch(function () { return vm.linkId }, function (newLinkId, oldLinkId) {
      if (!newLinkId) return;

      vm.status = {
        message: 'Searching...',
        type: 'warning',
        isWorking: true
      };

      // getLinkDetailsByLinkId
      $mwtnTopology.getLinkDetailsByLinkId(newLinkId).then(
        /** @param {SiteLinkDetails} linkDetails*/
        function (linkDetails) {
          vm.link = linkDetails;

          vm.status = {
            message: undefined,
            type: 'success',
            isWorking: false
          };
        }, function (err) {
          vm.status = {
            message: err,
            type: 'error',
            isWorking: false
          };
        });
    });

  }]);

  mwtnTopologyApp.directive('mwtnTopologyLinkDetails', function () {
    return {
      scope: { linkId: "=" },
      restrict: 'E',
      controller: 'mwtnTopologyLinkDetailsController',
      controllerAs: 'vm',
      bindToController: true,
      templateUrl: 'src/app/mwtnTopology/templates/linkDetails.tpl.html'
    };
  });

  mwtnTopologyApp.controller('mwtnTopologyFrameController', ['$scope', '$rootScope', '$timeout', '$state', '$window', '$mwtnTopology', function ($scope, $rootScope, $timeout, $state, $window, $mwtnTopology) {
    var vm = this;

    $rootScope.section_logo = 'src/app/mwtnTopology/images/mwtnTopology.png'; // Add your topbar logo location here such as 'assets/images/logo_topology.gif'
 
    /** @type {{ [tabName: string] : { [parameterName : string] : any } }} */
    var tabParameters = {};

    var tabs;
    (function (tabs) {
      tabs[tabs["site"] = 0] = "site";
      tabs[tabs["physical"] = 1] = "physical";
      tabs[tabs["ethernet"] = 2] = "ethernet";
      tabs[tabs["ieee1588"] = 3] = "ieee1588";
    })(tabs || (tabs = {}));

    $scope.$watch(function () { return vm.activeTab; }, function (newVal, oldVal, scope) {
      if (newVal == null) return;

      var newName = tabs[newVal];

      if (oldVal != null && tabs[oldVal]) {
        var oldName = tabs[oldVal];
        tabParameters[oldName] = $state.params;
      }

      var newParameters = Object.keys($state.params).reduce(function (acc, cur, ind, arr) { acc[cur] = null; return acc; }, {});
      Object.assign(newParameters, tabParameters[newName] || {}, { tab: newName, internal: false });

      $state.go('main.mwtnTopology', newParameters, { notify: false });
      console.log("activeTab: ", newName);
    });

    $scope.$watch(function () { return $state.params.tab; }, function (newVal, oldVal, scope) {
      if (newVal == oldVal) return;
      if (newVal && !$state.params.internal) {
        vm.activeTab = tabs[newVal || "site"];
        console.log("navigationTab: ", vm.activeTab);
      }
    });

    // hide all tabs until the google api is fully loaded.
    // initialize with true is the promise is resolved === 1
    vm.googleIsReady = $mwtnTopology.googleMapsApiPromise.$$state.status === 1;

    if (!vm.googleIsReady) $mwtnTopology.googleMapsApiPromise.then(function () {
      $timeout(function () {
        vm.googleIsReady = true;
      });
    });

  }]);

  mwtnTopologyApp.directive('mwtnTopologyFrame', function () {
    return {
      restrict: 'E',
      controller: 'mwtnTopologyFrameController',
      controllerAs: 'vm',
      templateUrl: 'src/app/mwtnTopology/templates/frame.tpl.html'
    };
  });

  mwtnTopologyApp.controller('mwtnTopologySiteViewController', ['$scope', '$q', '$timeout', '$state', '$window', '$mwtnTopology', function ($scope, $q, $timeout, $state, $window, $mwtnTopology) {
    var vm = this;
    // Determines if a database request loop should be canceld.
    var cancelRequested = false;
    // Represents a defer which is resolved, if a cancel was requested and fulfilled.
    var cancelDefer = $q.defer();
    // Represents the new bounding rectangle who was set with the last user action to change the map bounds.
    // The value is saved until the cancel operation is fulfilled.
    /** @type {{top: number, right: number, bottom: number, left: number, zoom: number}} */
    var waitForCancelMapBoundAndZoom;
    // While getting all sites collect all site link ids which are available through visible and known sites.
    // This dictionary will be cleared each time a new map bound is changed and a new database request loop is started.
    var collectedSiteLinkIds = {};

    vm.status = {
      // Determines the bounds of the map which is manually set by the code. These are the initial values.
      manualMapBounds: {
        top: !Number.isNaN(+$state.params.top) ? +$state.params.top : undefined,
        bottom: !Number.isNaN(+$state.params.bottom) ? +$state.params.bottom : undefined,
        left: !Number.isNaN(+$state.params.left) ? +$state.params.left : undefined,
        right: !Number.isNaN(+$state.params.right) ? +$state.params.right : undefined,
        zoom: !Number.isNaN(+$state.params.zoom) ? +$state.params.zoom : undefined,
        lat: !Number.isNaN(+$state.params.lat) ? +$state.params.lat : undefined,
        lng: !Number.isNaN(+$state.params.lng) ? +$state.params.lng : undefined
      },

      // Determines if the accordeon group element for SiteMap, SiteGrid or SiteLinkGrid is open.
      siteMapIsOpen: true,
      siteGridIsOpen: true,
      siteLinkGridIsOpen: true,
      sitePathGridIsOpen: false,

      // Determines if a processing is running.
      processing: false,
      totalSitesInBoundingBox: 0,
      loadedSitesInBoundingBox: 0,
      maximumCountOfVisibleSites: 300,

      // selectet Elements
      site: null,
      siteLink: null,
      sitePath: null
    };

    // Contains the known and visible sites as well as known site links as dictionaries.
    vm.knownSites = {};
    vm.visibleSites = {};
    vm.knownSiteLinks = {};

    // Api-Object that will be filled with update methods from the mwtnTopologyMapSites Component.
    vm.mapSitesComponentApi = {};
    // Api-Object that will be filled with update methods from the mwtnTopologyMapSiteLinks Component.
    vm.mapSiteLinksComponentApi = {};

    //addedSiteLinkIds, removedSiteLinkIds

    initializeMapBounds();

    function initializeMapBounds() {

      vm.status.manualMapBounds = {
        top: !Number.isNaN(+$state.params.top) ? +$state.params.top : undefined,
        bottom: !Number.isNaN(+$state.params.bottom) ? +$state.params.bottom : undefined,
        left: !Number.isNaN(+$state.params.left) ? +$state.params.left : undefined,
        right: !Number.isNaN(+$state.params.right) ? +$state.params.right : undefined,
        zoom: !Number.isNaN(+$state.params.zoom) ? +$state.params.zoom : undefined,
        lat: !Number.isNaN(+$state.params.lat) ? +$state.params.lat : undefined,
        lng: !Number.isNaN(+$state.params.lng) ? +$state.params.lng : undefined
      };

      // Calculate the initial map control bound, if we have no initial bounds 
      if ((vm.status.manualMapBounds.top == null && vm.status.manualMapBounds.bottom == null && vm.status.manualMapBounds.right == null && vm.status.manualMapBounds.left == null && vm.status.manualMapBounds.lat == null && vm.status.manualMapBounds.lng == null && $state.params.site == null && $state.params.siteLink == null && $state.params.sitePath == null)) {
        $mwtnTopology.getOuterBoundingRectangleForSites().then(function (bounds) {
          // Ensures that the new value is set within a digest cycle. 
          vm.status.manualMapBounds = bounds;
        });
      }
    }

    $scope.$watch(function () { return $state.params.site; }, function (newVal, oldVal, scope) {
      if (newVal) {
        $mwtnTopology.getSiteDetailsBySiteId(newVal).then(function (siteDetails) {
          if (siteDetails) {
            // just update the location of the browser if the location has changed      
            $state.go('main.mwtnTopology', {
              tab: "site",
              lat: siteDetails.location.lat,
              lng: siteDetails.location.lng,
              zoom: 19,
              top: null,
              bottom: null,
              right: null,
              left: null,
              site: $state.params.site,
              siteLink: null,
              sitePath: null,
              internal: false
            }, {
                notify: false
              });
          };
        }, function (err) {

        });
      }
    });

    $scope.$watch(function () { return $state.params.siteLink; }, function (newVal, oldVal, scope) {
      if (newVal) {
        $mwtnTopology.getLinkDetailsByLinkId(newVal).then(function (link) {
          if (link) {

            var top = link.siteA.location.lat >= link.siteZ.location.lat ? link.siteA.location.lat : link.siteZ.location.lat;
            var bottom = link.siteA.location.lat >= link.siteZ.location.lat ? link.siteZ.location.lat : link.siteA.location.lat;

            // todo: this code is not able to handle links which overlap the -100|180 ° borderline
            var left = link.siteA.location.lng <= link.siteZ.location.lng ? link.siteA.location.lng : link.siteZ.location.lng;
            var right = link.siteA.location.lng <= link.siteZ.location.lng ? link.siteZ.location.lng : link.siteA.location.lng;
            // just update the location of the browser if the location has changed      
            $state.go('main.mwtnTopology', {
              tab: "site",
              lat: null,
              lng: null,
              zoom: $state.params.zoom,
              top: top,
              bottom: bottom,
              right: right,
              left: left,
              site: null,
              siteLink: $state.params.siteLink,
              sitePath: null,
              internal: false
            }, {
                notify: false
              });
          };
        }, function (err) {

        });
      }
    });

    $scope.$watchCollection(function () { return [vm.status.siteMapIsOpen, vm.status.siteGridIsOpen, vm.status.siteLinkGridIsOpen, vm.status.sitePathGridIsOpen] }, function (newVal, oldVal) {
      if (newVal[1] || newVal[2] || newVal[3]) {
        $timeout(function () {
          $window.dispatchEvent(new Event("resize"));
        });
      }
    });

    $scope.$watchCollection(function () { return [+$state.params.top, +$state.params.bottom, +$state.params.left, +$state.params.right, +$state.params.lat, +$state.params.lng, +$state.params.zoom]; }, function (newVal, oldVal, scope) {

      if (oldVal == null || oldVal === newVal) return; // ignore initial value

      if (!vm.status.siteMapIsOpen) {
        console.log("open Site Map")
        vm.status.siteMapIsOpen = true;
        return;
      }

      vm.status.manualMapBounds = {
        top: !Number.isNaN(newVal[0]) ? newVal[0] : undefined,
        bottom: !Number.isNaN(newVal[1]) ? newVal[1] : undefined,
        left: !Number.isNaN(newVal[2]) ? newVal[2] : undefined,
        right: !Number.isNaN(newVal[3]) ? newVal[3] : undefined,
        zoom: !Number.isNaN(newVal[6]) ? newVal[6] : undefined,
        internal: !!$state.params.internal
      };

      if (!Number.isNaN(newVal[4]) && !Number.isNaN(newVal[5])) {
        vm.status.manualMapBounds.lat = newVal[4];
        vm.status.manualMapBounds.lng = newVal[5];
      } else {
        vm.status.manualMapBounds.lat = undefined;
        vm.status.manualMapBounds.lng = undefined;
      }

      if (!!$state.params.internal) $state.params.internal = false;

    });

    $scope.$watchCollection(function () { return vm.status.siteMapIsOpen }, function (newVal, oldVal, scope) {
      if (oldVal == newVal) return; // ignore initial value
      if (newVal) {
        // Map (re)-opend
        initializeMapBounds();
      } else {
        // Map closed
        vm.status.loadedSitesInBoundingBox = 0;
        vm.status.totalSitesInBoundingBox = 0;
        vm.status.manualMapBounds = {};
        vm.knownSites = {};
        vm.visibleSites = {};
        vm.knownSiteLinks = {};
      };
      // tell all sub components the visuability of the map view
      $scope.$broadcast('mapViewVisuability', newVal);
    });

    /* callback and helper methods */
    /**
     * A callback function which is called by the map control of the user changed the bounds of the map.
     * @param mapBoundsAndZoom {{top: number, right: number, bottom: number, left: number, zoom: number}} The new bounds and the new zoom level of the map control.
     */
    vm.mapBoundsChanged = function (mapBoundsAndZoom, userOriginated) {

      // just update the location of the browser if the location has changed      
      $state.go('main.mwtnTopology', {
        tab: "site",
        lat: mapBoundsAndZoom.lat,
        lng: mapBoundsAndZoom.lng,
        zoom: mapBoundsAndZoom.zoom,
        top: null,
        bottom: null,
        right: null,
        left: null,
        site: !userOriginated ? $state.params.site : null,
        siteLink: !userOriginated ? $state.params.siteLink : null,
        sitePath: !userOriginated ? $state.params.sitePath : null,
        internal: true
      }, {
          notify: false
        });
      console.log("handleBoundsChanged", mapBoundsAndZoom);

      if (vm.status.siteMapIsOpen) refreshAllSites(mapBoundsAndZoom);
    };

    /**
     * Refreshes all visible elements in the given view port
     * @param mapBoundsAndZoom {{top: number, right: number, bottom: number, left: number, zoom: number}} The new bounds and the new zoom level of the map control.
     */
    function refreshAllSites(mapBoundsAndZoom) {

      // Datenbankabfragen werden werden in kleine Chunks zerlegt.
      // Jeder Chunk enthält maximal ${chunkSize} (100) Sites und die Anzahl aller Sites für die spezifische Abfrage in der Antwort.
      // Sind noch nicht alle Chunks von der Datenbank angefordert worden, wird zuerst der nächste Chunk angefordert.
      // Der aktuell zurückgegebene Chunk wird aber erst verarbeitet, bevor in einer weiteren Callback-Situation der nächste Datenbank-Chunk abgeholt wird.
      // Dadurch werden kontinuierlich alle Sites auch auf der Map ergänzt, sobald sie verarbeitet wurden und es kommt zu keiner Verzögerung im Benutzerinterface.
      // Im Maximum werden aber ${vm.status.maximumCountOfVisibleSites} (2500) Sites abgerufen, um die Google Map nicht zu überlasten.

      // Fallunterscheidung: gibt es bereits eine aktive Datenbankabfrage zu den Sites?
      // => Nein: Starte eine neue Datenbankabfrage
      // => Ja: Breche die aktuelle Verarbeitung ab, aktualisiere den Status und starte dann eine neue Datenbankabfrage.
      if (vm.status.processing) {
        waitForCancelMapBoundAndZoom = mapBoundsAndZoom;

        if (cancelRequested) {
          console.log("Cancel is already requested.");
          return;
        }

        // Request a database loop cancel.
        cancelRequested = true;
        console.log("New Cancel requested.")

        // Wait until the current database loos was canceled.
        cancelDefer.promise.then(function () {
          // The database loop is canceled. Create a new defer for the next possible cancel request.
          console.log("Cancel fulfilled.");
          cancelDefer = $q.defer();
          // Restart the database loop with the new bounding rectangle.
          beginProcessing(waitForCancelMapBoundAndZoom);
        });

        // Do not start a database loop here - so leave the method.
        return;
      }

      // Start a new database loop here.
      beginProcessing(mapBoundsAndZoom);

      /**
       * The private function which begins a new database processing loop.
       * @param mapBoundsAndZoom {{top: number, right: number, bottom: number, left: number, zoom: number}} The new bounds and the new zoom level of the map control.
       */
      function beginProcessing(mapBoundsAndZoom) {
        // Set the processing flag to true.
        vm.status.processing = true;

        var chunkSize = 100;
        var chunkSiteStartIndex = 0;

        // If a site link cannot convert its siteA or siteZ (id) Parameter to a real site object these ids will collected.
        // After a subsequent database call to get these sites the queued site links will be converted.
        var additionalSiteIds = [];
        var queuedSiteLinksToConvert = [];

        // Entferne Sites, welche aufgrund des neuen Bounds leicht außer Sicht sind von den sichtbaren Sites.
        // Hinzufügen von Sites aus den leicht außer Sicht Bereich zum sichtbaren Bereich.
        var movedOrRemovedSites = refreshOutOfSightSites(mapBoundsAndZoom);
        var removedFromVisibleIds = movedOrRemovedSites.removedFromVisibleIds;
        var movedFromVisibleToKnownIds = movedOrRemovedSites.movedFromVisibleToKnownIds;
        var removedFromKnownIds = movedOrRemovedSites.removedFromKnownIds;
        var movedFromKnownToVisibleIds = movedOrRemovedSites.movedFromKnownToVisibleIds;
        var removedSiteLinkIds = movedOrRemovedSites.removedSiteLinkIds;

        // While getting all sites collect all site link ids which are available through visible and known sites.
        collectedSiteLinkIds = {};

        doSiteRequestLoop();

        /* internal function within beginProcessing */
        /**
         * Starts a new database request loop to get all sites.
         */
        function doSiteRequestLoop() {
          requestNextSiteChunk(mapBoundsAndZoom, chunkSize, chunkSiteStartIndex).then(
            /**
             * @param result {{addedSiteIds: string[], total: number}} An array with the ids of the sites which are added to the vm.visibleSites dictionary.
             */
            function (result) {
              // update the frontend before continue with the next database request.
              vm.mapSitesComponentApi.updateSites && vm.mapSitesComponentApi.updateSites(result.addedSiteIds, removedFromVisibleIds, movedFromVisibleToKnownIds, removedFromKnownIds, movedFromKnownToVisibleIds);
              removedSiteLinkIds && removedSiteLinkIds.length && vm.mapSiteLinksComponentApi.updateSiteLinks && vm.mapSiteLinksComponentApi.updateSiteLinks([], removedSiteLinkIds);
              // to not re-remove and re-move already removed and moved sites clear the arrays for any subsequent database requests.
              removedFromVisibleIds = [];
              movedFromVisibleToKnownIds = [];
              removedFromKnownIds = [];
              movedFromKnownToVisibleIds = [];
              removedSiteLinkIds = [];

              if (cancelRequested) {
                // reset the cancelRequested flag and resolve the cancel request.
                cancelRequested = false;
                cancelDefer.resolve();
                return;
              }

              // Enforce angular to process a new digest cycle.
              $timeout(function () {
                vm.status.totalSitesInBoundingBox = result.total;
                vm.status.loadedSitesInBoundingBox = Math.min(chunkSiteStartIndex + chunkSize, result.total);
                if (chunkSiteStartIndex + chunkSize >= result.total || chunkSiteStartIndex + chunkSize >= vm.status.maximumCountOfVisibleSites) {
                  // This was the last database request to get sites.
                  // Remove all known site link ids from the collectedSiteLinkIds dictionary.
                  var knownSiteLinkIds = Object.keys(vm.knownSiteLinks);
                  knownSiteLinkIds.forEach(function (knownSiteLinkId) {
                    if (collectedSiteLinkIds[knownSiteLinkId]) {
                      delete collectedSiteLinkIds[knownSiteLinkId];
                    }
                  });

                  // Start the request loop for site links now.
                  doSiteLinkRequestLoop(Object.keys(collectedSiteLinkIds));
                } else {
                  // There are more data, request the database again.
                  chunkSiteStartIndex += chunkSize;

                  doSiteRequestLoop();
                }
              });

            }, processError);
        }

        function endProcessing() {
          vm.status.processing = false;

          $timeout(function () {
            vm.status.site = $state.params.site;
            vm.status.siteLink = $state.params.siteLink;
          });
        }

        /**
         * Starts a new database request loop to get all site links.
         */
        function doSiteLinkRequestLoop(siteLinkIds) {
          var requestedSiteLinkIds = siteLinkIds.splice(0, chunkSize);

          $mwtnTopology.getSiteLinksByIds(requestedSiteLinkIds).then(
            /**
             * Processes the database result.
             * The returned site links doesn't contain site objects but site ids.
             * In a subsequent step these ids will be converted into real site objects.
             * @param result {{id: string, siteA: string, siteZ: string}[]} The database result.
             */
            function (result) {
              // Subsequent convert.
              // All site links which siteA and siteZ site ids are known could be added to vm.knownSiteLinks.
              // The rest has to saved until all requests are finished.
              // Another database call will get the additional sites to convert these site links.
              var addedSiteLinkIds = result.reduce(function (accumulator, currentSiteLink) {
                var siteA = vm.visibleSites[currentSiteLink.siteA] || vm.knownSites[currentSiteLink.siteA];
                var siteZ = vm.visibleSites[currentSiteLink.siteZ] || vm.knownSites[currentSiteLink.siteZ];
                if (siteA && siteZ) {
                  vm.knownSiteLinks[currentSiteLink.id] = {
                    id: currentSiteLink.id,
                    siteA: siteA,
                    siteZ: siteZ,
                    type: currentSiteLink.type
                  };
                  accumulator.push(currentSiteLink.id);
                } else {
                  // Theoretically, only siteA or siteZ can be unknown. I still check both separately.
                  var isPushed = false;
                  if (!siteA) {
                    additionalSiteIds.push(currentSiteLink.siteA);
                    queuedSiteLinksToConvert.push(currentSiteLink);
                    isPushed = true;
                  }
                  if (!siteZ) {
                    additionalSiteIds.push(currentSiteLink.siteZ);
                    isPushed || queuedSiteLinksToConvert.push(currentSiteLink);
                  }
                }
                return accumulator;
              }, []);

              // update the frontend before continue with the next database request.
              vm.mapSiteLinksComponentApi.updateSiteLinks && vm.mapSiteLinksComponentApi.updateSiteLinks(addedSiteLinkIds);

              if (cancelRequested) {
                // reset the cancelRequested flag and resolve the cancel request.
                cancelRequested = false;
                cancelDefer.resolve();
                return;
              }

              // Enforce angular to process a new digest cycle. (And to let angular time to redraw the map.)
              $timeout(function () {
                if (siteLinkIds.length === 0) {
                  if (additionalSiteIds.length === 0) {
                    endProcessing();
                    return;
                  }

                  // Only get a maximum of chunkSize additional sites.
                  // Site links more than that will not be drawed in the map due to performance reasons.
                  // If the user zooms in the additional site links will be requested again.
                  $mwtnTopology.getSitesByIds(additionalSiteIds.splice(0, chunkSize)).then(
                    /**
                     * Processes the database result to gain new sites within the bounding box of the database request.
                     * @param result {{total: number, sites: {id: string, name: string, location: {lat: number, lng: number}, amslGround: number, references: {siteLinks: string[]}}[]}} The database result.
                     */
                    function (result) {
                      var addedSiteLinkIds = queuedSiteLinksToConvert.reduce(function (accumulator, currentSiteLink) {
                        var siteA = vm.visibleSites[currentSiteLink.siteA] || vm.knownSites[currentSiteLink.siteA] || result.sites.find(
                          function (site) {
                            return site.id === currentSiteLink.siteA
                          });
                        var siteZ = vm.visibleSites[currentSiteLink.siteZ] || vm.knownSites[currentSiteLink.siteZ] || result.sites.find(
                          function (site) {
                            return site.id === currentSiteLink.siteZ
                          });
                        if (siteA && siteZ) {
                          vm.knownSiteLinks[currentSiteLink.id] = {
                            id: currentSiteLink.id,
                            siteA: siteA,
                            siteZ: siteZ,
                            type: currentSiteLink.type
                          };
                          accumulator.push(currentSiteLink.id);
                        }
                        return accumulator;
                      }, []);
                      // update the frontend the last time until the user changed the map position.
                      vm.mapSiteLinksComponentApi.updateSiteLinks && vm.mapSiteLinksComponentApi.updateSiteLinks(addedSiteLinkIds);

                      // all done - puh.
                      endProcessing();
                    }, processError);

                } else {
                  // There are more data, request the database again.
                  doSiteLinkRequestLoop(siteLinkIds);
                }
              });

            }, processError);
        }

      }
    };

    /**
     * Recalculates the targets site container for Sites within knownSites and visibleSites.
     * @param mapBoundsAndZoom {{top: number, right: number, bottom: number, left: number, zoom: number}} The new bounds and the new zoom level of the map control.
     */
    function refreshOutOfSightSites(mapBoundsAndZoom) {
      var additionalWidth = (mapBoundsAndZoom.right - mapBoundsAndZoom.left) / 4;
      var additionalHeight = (mapBoundsAndZoom.top - mapBoundsAndZoom.bottom) / 4;
      var slightlyTop = mapBoundsAndZoom.top + additionalHeight;
      var slightlyRight = mapBoundsAndZoom.right + additionalWidth;
      var slightlyBottom = mapBoundsAndZoom.bottom - additionalHeight;
      var slightlyLeft = mapBoundsAndZoom.left - additionalWidth;

      var removedFromVisibleIds = [];
      var movedFromVisibleToKnownIds = [];
      var removedFromKnownIds = [];
      var movedFromKnownToVisibleIds = [];
      var removedSiteLinkIds = [];

      var visibleSiteKeys = Object.keys(vm.visibleSites);
      var knownSiteKeys = Object.keys(vm.knownSites);
      var knownSiteLinkKeys = Object.keys(vm.knownSiteLinks);

      visibleSiteKeys.forEach(function (siteId) {
        /** @var {{id: string, name: string, location: {lat: number, lng: number}, amslGround: number, references: {siteLinks: string[]}} site */
        var site = vm.visibleSites[siteId];

        if (site.location.lat > slightlyTop || site.location.lng > slightlyRight || site.location.lat < slightlyBottom || site.location.lng < slightlyLeft) {
          // This site is completly out of sight - so remove it and add the id to the removedFromVisibleIds list.
          delete vm.visibleSites[siteId];
          removedFromVisibleIds.push(siteId);
          return;
        }

        if (site.location.lat > mapBoundsAndZoom.top || site.location.lng > mapBoundsAndZoom.right || site.location.lat < mapBoundsAndZoom.bottom || site.location.lng < mapBoundsAndZoom.left) {
          // This site is moved from the visible map bounds to the extended map bounds and will only hide but stay in the google object.
          vm.knownSites[siteId] = site;
          delete vm.visibleSites[siteId];
          movedFromVisibleToKnownIds.push(siteId);
          return;
        }
      });

      knownSiteKeys.forEach(function (siteId) {
        /** @type {{id: string, name: string, location: {lat: number, lng: number}, amslGround: number, references: {siteLinks: string[]}} site */
        var site = vm.knownSites[siteId];

        if (site.location.lat > slightlyTop || site.location.lng > slightlyRight || site.location.lat < slightlyBottom || site.location.lng < slightlyLeft) {
          // This site is completly out of sight - so remove it and add the id to the removedFromKnownIds list.
          delete vm.knownSites[siteId];
          removedFromKnownIds.push(siteId);
          return;
        }

        if (site.location.lat <= mapBoundsAndZoom.top && site.location.lng <= mapBoundsAndZoom.right && site.location.lat >= mapBoundsAndZoom.bottom && site.location.lng >= mapBoundsAndZoom.left) {
          // This site is moved from the extended map bounds to the visible map bounds. Therefore the hidden google maps object should set visible again.
          vm.visibleSites[siteId] = site;
          delete vm.knownSites[siteId];
          movedFromKnownToVisibleIds.push(siteId);
          return;
        }
      });

      knownSiteLinkKeys.forEach(function (siteLinkId) {
        /** @type {{id: string, siteA: {id: string, name: string, location: {lat: number, lng: number}, amslGround: number, references: {siteLinks: string[]}}, siteZ: {id: string, name: string, location: {lat: number, lng: number}, amslGround: number, references: {siteLinks: string[]}}}} siteLink */
        var siteLink = vm.knownSiteLinks[siteLinkId];
        var siteA = siteLink.siteA;
        var siteZ = siteLink.siteZ;

        if ((siteA.location.lat > slightlyTop || siteA.location.lng > slightlyRight || siteA.location.lat < slightlyBottom || siteA.location.lng < slightlyLeft) &&
          (siteZ.location.lat > slightlyTop || siteZ.location.lng > slightlyRight || siteZ.location.lat < slightlyBottom || siteZ.location.lng < slightlyLeft)) {
          // This site link is completly out of sight - so remove it and add the id to the removedSiteLinkIds list.
          delete vm.knownSiteLinks[siteLinkId];
          removedSiteLinkIds.push(siteLinkId);
        }
      });

      return {
        removedFromVisibleIds: removedFromVisibleIds,
        movedFromVisibleToKnownIds: movedFromVisibleToKnownIds,
        removedFromKnownIds: removedFromKnownIds,
        movedFromKnownToVisibleIds: movedFromKnownToVisibleIds,
        removedSiteLinkIds: removedSiteLinkIds
      };
    }

    /**
     * Requests a chunk of sites from the database.
     * @param mapBoundsAndZoom {{top: number, right: number, bottom: number, left: number, zoom: number}} The bounds and the zoom level of the map control to request the next chunk for.
     * @param chunkSize {number} The chunk size of a single database request. To big values will block the user interface, to small values will lead in to many database requests.
     * @param chunkSiteStartIndex {number} The index of the first site returned by the database.
     */
    function requestNextSiteChunk(mapBoundsAndZoom, chunkSize, chunkSiteStartIndex) {
      var requestNextSiteChunkDefer = $q.defer();
      var addedSiteIds = [];

      // Request the next chunk.
      $mwtnTopology.getSitesInBoundingBox(mapBoundsAndZoom, chunkSize, chunkSiteStartIndex).then(
        /**
         * Processes the database result to gain new sites within the bounding box of the database request.
         * @param result {{chunkSize: number, chunkSiteStartIndex: number, total: number, sites: {id: string, name: string, location: {lat: number, lng: number}, amslGround: number, references: {siteLinks: string[]}}[]}} The database result.
         */
        function (result) {
          result.sites.forEach(function (site) {
            // The map bounds may have changed since the start of the database request.
            // Therefore check if the site is within the bounding rectangle.

            if (!$mwtnTopology.isInBounds(mapBoundsAndZoom, site.location)) {
              return;
            }

            // add all site link ids to the selectedSiteLinkIds dictionary.
            site.references.siteLinks.forEach(function (siteLinkId) {
              collectedSiteLinkIds[siteLinkId] = true;
            });

            // check, if the site is within the knownSites dictionary.
            if (vm.knownSites[site.id]) {
              delete vm.knownSites[site.id];
            }

            // check if the site is within the visibleSites dictionary.
            if (vm.visibleSites[site.id]) {
              // Override the site (refresh)
              vm.visibleSites[site.id] = site;
            } else {
              // Add the site to the dictionary and remember the siteId.
              vm.visibleSites[site.id] = site;
              addedSiteIds.push(site.id);
            }
          });

          requestNextSiteChunkDefer.resolve({
            addedSiteIds: addedSiteIds,
            total: result.total
          });
        }, requestNextSiteChunkDefer.reject);

      return requestNextSiteChunkDefer.promise;
    }

    /**
     * Handles error messages by writing the information to the javascript console.
     * Resets the processing flag.
     * @param error Information about the error.
     */
    function processError(error) {
      // Reset the processing flag.
      vm.status.processing = false;
      // Write the error information to the console.
      console.error(error);
    }

  }]);

  mwtnTopologyApp.directive('mwtnTopologySiteView', function () {
    return {
      restrict: 'E',
      controller: 'mwtnTopologySiteViewController',
      controllerAs: 'vm',
      bindToController: true,
      templateUrl: 'src/app/mwtnTopology/templates/siteView.tpl.html',
      scope: {
        initialMapBounds: "="
      }
    };
  });

  mwtnTopologyApp.controller('mwtnTopologySiteGridController', ['$scope', '$timeout', '$state', '$mwtnCommons', '$mwtnTopology', 'uiGridConstants', function ($scope, $timeout, $state, $mwtnCommons, $mwtnTopology, uiGridConstants) {
    var vm = this;

    // The page number to show in the grid.
    var paginationPage = 1;
    // The page size.
    var paginationPageSize = 100;
    // The grid column object with current sorting informations.
    var sortColumn = null;
    // The grid column object with current sorting informations.
    var gridFilters = [];
    // caches all sites at the current grid page
    var sitesAtCurrentPageCache = {};

    vm.showAllSites = false;

    vm.onNavigateToSite = function (row) {
      var site = sitesAtCurrentPageCache[row.entity.id];
      $state.go("main.mwtnTopology", {
        tab: "site",
        lat: site.location.lat,
        lng: site.location.lng,
        zoom: 19,
        site: site.id,
        internal: false
      }, { notify: false });
    };

    // see http://ui-grid.info/docs/#/tutorial/317_custom_templates
    var buttonCellTemplate = '<div class="ui-grid-cell-contents tooltip-uigrid" title="TOOLTIP"><i ng-click="grid.appScope.vm.onNavigateToSite(row)" ng-class="{\'fa\':true, \'fa-map-marker\': true, \'{{COL_FIELD}}\':true}" aria-hidden="true"></i></div>';

    vm.gridOptions = Object.assign({}, $mwtnCommons.gridOptions, {
      showGridFooter: false, // disable the grid footer because the pagination component sets its own.
      paginationPageSizes: [10, 25, 50, 100],
      paginationPageSize: paginationPageSize,
      useExternalPagination: true,
      useExternalFiltering: true,
      useExternalSorting: true,
      totalItems: 0,
      columnDefs: [{
        field: "id",
        type: "string",
        displayName: "Id"
      },
      {
        field: "name",
        type: "string",
        displayName: "Name"
      },
      {
        field: "location",
        type: "string",
        displayName: "Location"
      },
      {
        field: "amslGround",
        type: "string",
        displayName: "AmslGround"
      },
      {
        field: "countLinks",
        type: "number",
        displayName: "Count (Links)"
      },
      {
        field: "countNetworkElements",
        type: "number",
        displayName: "Count (Network elements)"
      },
      {
        field: "buttons",
        type: "string",
        displayName: "",
        width: 40,
        enableFiltering: false,
        enableSorting: false,
        cellTemplate: buttonCellTemplate,
        pinnedRight: true
      }
      ],
      data: [],
      onRegisterApi: function (gridApi) {
        // http://ui-grid.info/docs/#/api/ui.grid.core.api:PublicApi
        vm.gridApi = gridApi;

        vm.gridApi.core.on.sortChanged($scope, function (grid, sortColumns) {
          // Save the current sort column for later use.
          sortColumn = (!sortColumns || sortColumns.length === 0)
            ? null
            : sortColumns[0];
          loadPage();
        });

        vm.gridApi.pagination.on.paginationChanged($scope, function (newPage, newPageSize) {
          // Save the pagination informations for later use.
          paginationPage = newPage;
          paginationPageSize = newPageSize;
          loadPage();
        });

        vm.gridApi.core.on.filterChanged($scope, function () {
          // Save the all filters for later use.
          var filters = [];
          this.grid.columns.forEach(function (col, ind) {
            if (col.filters[0] && col.filters[0].term) {
              filters.push({ field: col.field, term: col.filters[0].term });
            }
          });
          gridFilters = filters;
          loadPage();
        });

        loadPage();
      }
    });

    $scope.$on("mapViewVisuability", function (event, data) {
      vm.showAllSites = !data;
    });

    $scope.$watch("visibleSites", function (newVisibleSites, oldVisibleSites) {
      console.log("watch: visibleSites");
      if (!vm.showAllSites) loadPage();
    }, true); // deep watch, maybe find a better solution; e.g. with an api object like the site in the map.

    $scope.$watch(function () { return vm.showAllSites; }, loadPage);

    function loadPage() {
      if (vm.showAllSites) {
        loadRemotePage();
      } else {
        loadLocalPage();
      }
    }

    /**
     * Calculates the page content of the grid and sets the values to the gridOprions.data object.
     */
    function loadLocalPage() {
      var siteIds = Object.keys($scope.visibleSites);

      var tempData = siteIds.filter(function (siteId, ind, arr) {
        var site = $scope.visibleSites[siteId];
        return gridFilters.map(function (filter) {
          switch (filter.field) {
            case "countLinks":
              return (site.references.siteLinks ? site.references.siteLinks.length : 0) == +filter.term;
            default:
              return site[filter.field].contains(filter.term);
          }
        }).and(true);
      }).map(function (siteId) {
        var site = $scope.visibleSites[siteId];
        var orderBy;

        if (!sortColumn || !sortColumn.sort.direction) {
          return {
            id: siteId
          }
        }

        switch (sortColumn.field) {
          case "countLinks":
            orderBy = site.references.siteLinks ? site.references.siteLinks.length : 0;
            break;
          case "countNetworkElements":
            orderBy = site.references.networkElements ? site.references.networkElements.length : 0;
            break;
          case "buttons":
            orderBy = siteId;
            break;
          default:
            orderBy = site[sortColumn.field];
            break;
        }

        return {
          id: siteId,
          orderBy: orderBy
        };
      });

      if (sortColumn && sortColumn.sort.direction) {
        tempData.sort(function (left, right) {
          if (left === right || left.orderBy === right.orderBy) {
            return 0;
          }
          if (left.orderBy > right.orderBy) {
            return (sortColumn.sort.direction === uiGridConstants.ASC) ? 1 : -1;
          }
          return (sortColumn.sort.direction === uiGridConstants.ASC) ? -1 : 1;
        });
      }

      var maxPageNumber = Math.max(1, Math.ceil(tempData.length / paginationPageSize));
      var currentPage = Math.min(maxPageNumber, paginationPage);
      var orderedSitesAtCurrentPage = tempData.slice((currentPage - 1) * paginationPageSize, currentPage * paginationPageSize);

      sitesAtCurrentPageCache = {};
      var orderedData = [];

      orderedSitesAtCurrentPage.forEach(function (orderedSite) {
        var site = $scope.visibleSites[orderedSite.id];
        sitesAtCurrentPageCache[site.id] = site;
        orderedData.push({
          id: orderedSite.id,
          name: site.name,
          location: site.location.lat.toLocaleString("en-US", {
            minimumFractionDigits: 4
          }) + ", " + site.location.lng.toLocaleString("en-US", {
            minimumFractionDigits: 4
          }),
          amslGround: site.amslGround,
          countLinks: site.references.siteLinks ? site.references.siteLinks.length : 0,
          countNetworkElements: site.references.networkElements ? site.references.networkElements.length : 0
        });
      });

      $timeout(function () {
        vm.gridOptions.data = orderedData;
        vm.gridOptions.totalItems = tempData.length;
      });
    }

    /**
     * Loads the page content for the grid and sets the values to the gridOprions.data object.
     */
    function loadRemotePage() {

      $mwtnTopology.getSites((sortColumn && sortColumn.field), sortColumn && ((sortColumn.sort.direction && sortColumn.sort.direction === uiGridConstants.ASC) ? 'asc' : 'desc'), gridFilters, paginationPageSize, (paginationPage - 1) * paginationPageSize).then(function (result) {
        sitesAtCurrentPageCache = result.sites.reduce(function (acc, cur, ind, arr) {
          acc[cur.id] = cur;
          return acc;
        }, {});
        vm.gridOptions.data = result.sites.map(function (site) {
          return {
            id: site.id,
            name: site.name,
            location: site.location.lat.toLocaleString("en-US", {
              minimumFractionDigits: 4
            }) + ", " + site.location.lng.toLocaleString("en-US", {
              minimumFractionDigits: 4
            }),
            amslGround: site.amslGround,
            countLinks: site.references.siteLinks ? site.references.siteLinks.length : 0,
            countNetworkElements: site.references.networkElements ? site.references.networkElements.length : 0
          }
        });
        vm.gridOptions.totalItems = result.total;
      });
    }
  }]);

  mwtnTopologyApp.directive('mwtnTopologySiteGrid', function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologySiteGridController',
      controllerAs: 'vm',
      scope: {
        visibleSites: "="
      },
      templateUrl: 'src/app/mwtnTopology/templates/siteGrid.tpl.html'
    };
  });

  mwtnTopologyApp.controller('mwtnTopologySiteLinkGridController', ['$scope', '$timeout', '$state', '$mwtnCommons', '$mwtnTopology', 'uiGridConstants', function ($scope, $timeout, $state, $mwtnCommons, $mwtnTopology, uiGridConstants) {
    var vm = this;

    // The page number to show in the grid.
    var paginationPage = 1;
    // The page size.
    var paginationPageSize = 100;
    // The grid column object with current sorting informations.
    var sortColumn = null;
    // The grid column object with current sorting informations.
    var gridFilters = [];

    var linksAtCurrentPageCache = {};

    vm.showAllLinks = false;

    vm.onNavigateToLink = function (row) {
      var link = linksAtCurrentPageCache[row.entity.id];

      var top = link.siteA.location.lat >= link.siteZ.location.lat ? link.siteA.location.lat : link.siteZ.location.lat;
      var bottom = link.siteA.location.lat >= link.siteZ.location.lat ? link.siteZ.location.lat : link.siteA.location.lat;

      // todo: this code is not able to handle links which overlap the -100|180 ° borderline
      var left = link.siteA.location.lng <= link.siteZ.location.lng ? link.siteA.location.lng : link.siteZ.location.lng;
      var right = link.siteA.location.lng <= link.siteZ.location.lng ? link.siteZ.location.lng : link.siteA.location.lng;

      $state.go("main.mwtnTopology", {
        tab: "site",
        top: top,
        bottom: bottom,
        left: left,
        right: right,
        siteLink: link.id,
        internal: false
      }, { notify: false });
      console.log(link);
    };

    // see http://ui-grid.info/docs/#/tutorial/317_custom_templates
    var buttonCellTemplate = '<div class="ui-grid-cell-contents tooltip-uigrid" title="TOOLTIP"><i ng-click="grid.appScope.vm.onNavigateToLink(row)" ng-class="{\'fa\':true, \'fa-map-marker\': true, \'{{COL_FIELD}}\':true}" aria-hidden="true"></i></div>';

    vm.gridOptions = Object.assign({}, $mwtnCommons.gridOptions, {
      // enableFiltering: false,
      showGridFooter: false, // disable the grid footer because the pagination component sets its own.
      paginationPageSizes: [10, 25, 50, 100],
      paginationPageSize: paginationPageSize,
      useExternalPagination: true,
      useExternalFiltering: true,
      useExternalSorting: true,
      totalItems: 0,
      columnDefs: [{
        field: "id",
        type: "string",
        displayName: "Id"
      },
      {
        field: "name",
        type: "string",
        displayName: "Name"
      },
      {
        field: "siteIdA",
        type: "string",
        displayName: "SiteA"
      },
      {
        field: "siteIdZ",
        type: "string",
        displayName: "SiteZ"
      },
      {
        field: "buttons",
        type: "string",
        displayName: "",
        width: 40,
        enableFiltering: false,
        enableSorting: false,
        cellTemplate: buttonCellTemplate,
        pinnedRight: true
      }
      ],
      data: [],
      onRegisterApi: function (gridApi) {
        // http://ui-grid.info/docs/#/api/ui.grid.core.api:PublicApi
        vm.gridApi = gridApi;

        vm.gridApi.core.on.sortChanged($scope, function (grid, sortColumns) {
          // save the current sort column for later use.
          sortColumn = (!sortColumns || sortColumns.length === 0) ?
            null :
            sortColumns[0];

          loadPage();
        });

        vm.gridApi.pagination.on.paginationChanged($scope, function (newPage, newPageSize) {
          paginationPage = newPage;
          paginationPageSize = newPageSize;
          loadPage();
        });

        vm.gridApi.core.on.filterChanged($scope, function () {
          // Save the all filters for later use.
          var filters = [];
          this.grid.columns.forEach(function (col, ind) {
            if (col.filters[0] && col.filters[0].term) {
              filters.push({ field: col.field, term: col.filters[0].term });
            }
          });
          gridFilters = filters;
          loadPage();
        });

        loadPage();
      }
    });

    $scope.$on("mapViewVisuability", function (event, data) {
      vm.showAllLinks = !data;
    });

    $scope.$watch("knownSiteLinks", function (newKnownSiteLinks, oldKnownSiteLinks) {
      console.log("watch: knownSiteLinks");
      loadPage();
    }, true); // deep watch, maybe find a better solution; e.g. with an api object like the site in the map.

    $scope.$watch(function () { return vm.showAllLinks; }, loadPage);

    function loadPage() {
      if (vm.showAllLinks) {
        loadRemotePage();
      } else {
        loadLocalPage();
      }
    }

    /**
        * Calculates the page content of the grid and sets the values to the gridOprions.data object.
        */
    function loadLocalPage() {
      var linkIds = Object.keys($scope.knownSiteLinks);

      var tempData = linkIds.filter(function (linkId, ind, arr) {
        var link = $scope.knownSiteLinks[linkId];
        return gridFilters.map(function (filter) {
          switch (filter.field) {
            case 'siteIdA':
              return link.siteA.id.contains(filter.term);
            case 'siteIdZ':
              return link.siteZ.id.contains(filter.term);
            default:
              return link[filter.field].contains(filter.term);
          }
        }).and(true);
      }).map(function (linkId) {
        var link = $scope.knownSiteLinks[linkId];
        var orderBy;

        if (!sortColumn || !sortColumn.sort.direction) {
          return {
            id: linkId
          }
        }

        switch (sortColumn.field) {
          case 'siteIdA':
            orderBy = link.siteA.id;
            break;
          case 'siteIdZ':
            orderBy = link.siteZ.id;
            break;
          default:
            orderBy = link[sortColumn.field];
            break;
        }

        return {
          id: linkId,
          orderBy: orderBy
        };
      });

      if (sortColumn && sortColumn.sort.direction) {
        tempData.sort(function (left, right) {
          if (left === right || left.orderBy === right.orderBy) {
            return 0;
          }
          if (left.orderBy > right.orderBy) {
            return (sortColumn.sort.direction === uiGridConstants.ASC) ? 1 : -1;
          }
          return (sortColumn.sort.direction === uiGridConstants.ASC) ? -1 : 1;
        });
      }

      var maxPageNumber = Math.max(1, Math.ceil(tempData.length / paginationPageSize));
      var currentPage = Math.min(maxPageNumber, paginationPage);
      var orderedSitesAtCurrentPage = tempData.slice((currentPage - 1) * paginationPageSize, currentPage * paginationPageSize);

      linksAtCurrentPageCache = {};
      var orderedData = [];

      orderedSitesAtCurrentPage.forEach(function (orderdLink) {
        var link = $scope.knownSiteLinks[orderdLink.id];
        linksAtCurrentPageCache[link.id] = link;
        orderedData.push({
          id: link.id,
          name: link.name,
          siteIdA: link.siteA.id,
          siteIdZ: link.siteZ.id,
          type: link.type
        });
      });

      $timeout(function () {
        vm.gridOptions.data = orderedData;
        vm.gridOptions.totalItems = tempData.length;
      });
    }

    /**
     * Loads the page content for the grid and sets the values to the gridOprions.data object.
     */
    function loadRemotePage() {
      linksAtCurrentPageCache = {};

      // the links for one page
      $mwtnTopology.getLinks((sortColumn && sortColumn.field), sortColumn && ((sortColumn.sort.direction && sortColumn.sort.direction === uiGridConstants.ASC) ? 'asc' : 'desc'), gridFilters, paginationPageSize, (paginationPage - 1) * paginationPageSize).then(function (result) {
        // get all site id s  
        var siteIds = {};
        result.links.forEach(function (link) {
          siteIds[link.siteA] = link.siteA;
          siteIds[link.siteZ] = link.siteZ;
        });

        // load all sites         
        $mwtnTopology.getSitesByIds(Object.keys(siteIds)).then(function (sitesResult) {
          var sites = sitesResult.sites.reduce(function (acc, cur, ind, arr) {
            acc[cur.id] = cur;
            return acc;
          }, {});
          result.links.forEach(function (link) {
            linksAtCurrentPageCache[link.id] = {
              id: link.id,
              name: link.name,
              siteA: sites[link.siteA],
              siteZ: sites[link.siteZ],
              type: link.type
            };
          });
          vm.gridOptions.data = result.links.map(function (link) {
            return {
              id: link.id,
              name: link.name,
              siteIdA: link.siteA,
              siteIdZ: link.siteZ,
              type: link.type
            }
          });
          vm.gridOptions.totalItems = result.total;

        });
      });
    }


  }]);

  mwtnTopologyApp.directive('mwtnTopologySiteLinkGrid', function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologySiteLinkGridController',
      controllerAs: 'vm',
      templateUrl: 'src/app/mwtnTopology/templates/siteLinkGrid.tpl.html',
      scope: {
        knownSiteLinks: "="
      },
    };
  });

  mwtnTopologyApp.controller('mwtnTopologySitePathGridController', ['$scope', function ($scope) {
    var vm = this;

    vm.showAllPaths = false;

    $scope.$on("mapViewVisuability", function (event, data) {
      vm.showAllPaths = !data;
    });

  }]);

  mwtnTopologyApp.directive('mwtnTopologySitePathGrid', function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologySitePathGridController',
      controllerAs: 'vm',
      templateUrl: 'src/app/mwtnTopology/templates/sitePathGrid.tpl.html'
    };
  });

  /********************************************* Physical ***********************************/

  mwtnTopologyApp.controller('mwtnTopologyPhysicalViewController', ['$scope', '$q', '$timeout', '$state', '$window', '$mwtnTopology', function ($scope, $q, $timeout, $state, $window, $mwtnTopology) {
    var vm = this;
    vm.status = {
      graphIsOpen: false,
      networkElementsIsOpen: false,
      LinksIsOpen: false
    };

    $scope.$watchCollection(function () { return [vm.status.graphIsOpen, vm.status.networkElementsIsOpen, vm.status.LinksIsOpen] }, function (newVal, oldVal) {
      if (newVal[1] || newVal[2]) {
        $timeout(function () {
          $window.dispatchEvent(new Event("resize"));
        });
      }
    });

  }]);

  mwtnTopologyApp.directive('mwtnTopologyPhysicalView', function () {
    return {
      restrict: 'E',
      controller: 'mwtnTopologyPhysicalViewController',
      controllerAs: 'vm',
      bindToController: true,
      templateUrl: 'src/app/mwtnTopology/templates/physicalView.tpl.html',
      scope: {

      }
    };
  });

  /** 
   * Typedefinitions for the mwtnTopologyPhysicalPathData service.
   * @typedef { { 'site' | 'device' |  'port' } } NodeLayerType
   * @typedef { { x: number, y: number } } PositionType
   * @typedef { { id: string, label: string, parent: string, grentparent: string, active: string, latitude: number, longitude: number  } } NodeDataVo
   * @typedef { { data: NodeDataVo, position: PositionType  } } NodeVo
   * @typedef { { id: string, label: string, parent: string, type: string, layer: NodeLayerType, active: boolean, latitude?: number, longitude?: number  } } NodeData
   * @typedef { { data: NodeData, position: PositionType  } } Node
   * @typedef { { id: string, source: string, target: string, label: string , lentgh: string, azimuthAZ: string , azimuthZA: string , layer: string , active: string } } EdgeData
   * @typedef { { data: EdgeData } Edge
   */
  mwtnTopologyApp.factory("mwtnTopologyPhysicalPathData", ['$q','$mwtnTopology',
    /** @param $q { ng.IQService } */
    function ($q, $mwtnTopology) {
      var colors = {
        root: '#f54',
        port: '#377',
        device: '#252',
        site: '#525',
        edge: '#49a',
        white: '#eed',
        grey: '#555',
        selected: '#ff0'
      };

      var styles = [
        {
          selector: 'node',
          css: {
            'content': 'data(label)',
            'text-valign': 'center',
            'text-halign': 'center',
            'background-color': '#666666',
            'border-color': '#000000',
            'border-width': '1px',
            'color': '#ffffff'
          }
        },
        {
          selector: 'node[layer = "MWPS"]',
          css: {
            'content': 'data(label)',
            'text-valign': 'center',
            'text-halign': 'center',
            'background-color': '#316ac5',
            'border-color': '#000000',
            'border-width': '1px',
            'color': '#ffffff'
          }
        },
        {
          selector: '$node > node',
          css: {
            'shape': 'roundrectangle',
            'padding-top': '10px',
            'padding-left': '10px',
            'padding-bottom': '10px',
            'padding-right': '10px',
            'text-valign': 'top',
            'text-halign': 'center',
            'background-color': '#eeeeee',
            'color': '#444444',
            'border-color': '#888888'
          }
        },
        {
          selector: 'node[type = "site"]',
          css: {
            'shape': 'roundrectangle',
            'padding-top': '10px',
            'padding-left': '10px',
            'padding-bottom': '10px',
            'padding-right': '10px',
            'text-valign': 'center',
            'text-halign': 'center',
            'background-color': '#fefefe',
            'color': '#444444',
            'border-color': '#888888',
            'font-weight': 'bold'
          }
        },
        {
          selector: 'node[type = "device"][active = "true"]',
          css: {
            'background-color': '#316ac5',
            'background-opacity': '0.3',
            'border-color': '#316ac5',
            'border-width': '2px',
            'color': '#444444'
          }
        },
        {
          selector: 'node[type = "port"][active = "true"]',
          css: {
            'background-opacity': '1.0',
          }
        },
        {
          selector: 'node[active = "false"]',
          css: {
            'background-opacity': '0.3',
            'border-opacity': '0.5'
          }
        },

        {
          selector: 'edge',
          css: {
            'content': 'data(id)',
            'target-arrow-shape': 'triangle',
            'line-color': '#666666',
            'color': '#444444'
          }
        },
        {
          selector: 'edge[active = "false"]',
          css: {
            'line-color': '#cccccc',
            'text-opacity': '0.9'
          }
        },
        {
          selector: 'edge[layer = "MWPS"]',
          css: {
            'content': 'data(id)',
            'target-arrow-shape': 'triangle',
            'width': '5px',
            'line-color': '#316ac5',
            'color': '#444444'
          }
        },
        {
          selector: 'edge[layer = "MWPS"][active = "false"]',
          css: {
            'line-color': '#C0D1EC',
            'text-opacity': '0.9'
          }
        },
        {
          selector: ':selected',
          css: {
            'background-color': 'black',
            'line-color': 'black',
            'target-arrow-color': 'black',
            'source-arrow-color': 'black'
          }
        }
      ];

        var events = eventsFabric();

      /** Heplerfunction to retrive all elements from the database and convert to the structure needed */
      function getElements() {
        var res = $q.defer();

        $q.all([
          $mwtnTopology.getAllNodes(),
          $mwtnTopology.getAllEdges()
         ]).then(function (results) {
           res.resolve({ nodes: results[0], edges: results[1] });
        });
        
        return res.promise;
      }

      var result = {
        colors: colors,
        getElements: getElements,
        styles: styles,
        events: events
      };

      var someMethodChangingTheElements = function () {
        // @Martin: hier kannst Du die Elements ändern, anschließend mußt Du das Ereignis veröffentlichen
        //          das Ereigniss wird in der Directive aufgefangen und die Grig wird neu gezeichnet

        // Hinweis: Die Reihenfolge muss so bleiben und du kannst NUR result.elements ändern.

        events.publish("elementsChanged", {
          elements: result.elements
        });
      };

      return result;
    }]);

    mwtnTopologyApp.directive("mwtnTopologyPhysicalPathGraph", ["mwtnTopologyPhysicalPathData", "$mwtnTopology", "$mwtnCommons", function (pathGraphData, $mwtnTopology, $mwtnCommons) {

    return {
      restrict: 'E',
      replace: true,
      template: '<div style="height:750px; width: 100%;"></div>',
      controller: function () {

      },
      scope: {

      },
      link: function (scope, element, attrs, ctrl) {

        var cy = cytoscape({
          container: element[0],

          boxSelectionEnabled: false,
          autounselectify: true,

          style: pathGraphData.styles,
          elements: [],
          layout: {
            name: 'preset',
            padding: 5
          }
        });

        cy.viewport({
          zoom: 0.50,
          pan: { x: 100, y: 50 }
        });
  
        pathGraphData.getElements().then(function (elements) {
          cy.json({
            elements: elements
          });

          // disable drag & drop
          cy.nodes().ungrabify();
        });

        var filterActiveMountPoints = function (mountpoints) {
          return mountpoints.filter(function (mountpoint) {
            if (!mountpoint) return false;
            // console.warn(mountpoint['node-id'], mountpoint['netconf-node-topology:connection-status']);
            return mountpoint['netconf-node-topology:connection-status'] === 'connected';
          }).map(function (mountpoint) {
            return mountpoint['node-id'];
          });
        };

        var setDevicesActive = function (nodeIds) {
          // console.warn(nodeIds);
          cy.nodes().filter(function (node) {
            node.data('active', 'false');
            return node.data('type') === 'device' && nodeIds.contains(node.data('id'));
          }).map(function (node) {
            node.data('active', 'true');
          });
        };

        var setAllDevicesInactive = function () {
          cy.nodes().map(function (node) {
            node.data('active', 'false');
          });
        };

        var setPortAndEdgedActive = function () {
          cy.edges().map(function (edge) {
            var active = 'true';
            edge.connectedNodes().map(function (port) {
              // console.log('  node', JSON.stringify(edge.data()));
              var parent = cy.getElementById(port.data('parent'));
              if (parent.data('active') === 'false') {
                port.data('active', 'false');
                edge.data('active', 'false');
              } else {
                port.data('active', 'true');
              }
            });
          });
        };

        var setCss = function () {
          var width = 5 / cy.zoom();
          var stroke = 1 / cy.zoom();
          cy.edges().css('width', width);
          cy.nodes().css('border-width', stroke);
        };

        var init = function () {
          $mwtnCommons.getMountPoints().then(function (mountpoints) {
            var filtered = filterActiveMountPoints(mountpoints);
            setDevicesActive(filtered);
            setPortAndEdgedActive();
          }, function (error) {
            setAllDevicesInactive();
            setPortAndEdgedActive();
          });
        };

        init();
        setCss();

        var orderLtps = function () {
          var done = [];
          var x = 0;
          var y = 0;
          var row = 0;
          var offset = 100;
          var selector = "[type = 'device']";
          var devices = cy.nodes(selector).sort(function (a, b) {
            if (a.children().length > b.children().length) return -1;
            if (a.children().length < b.children().length) return 1;
            return 0;
          }).map(function (device) {
            device.children().filter(function (ltp) {
              return done.indexOf(ltp.id()) === -1;
            }).map(function (ltp) {
              ltp.position({ x: x, y: y });
              y = y + offset;
              var remeberX = x;
              ltp.connectedEdges().map(function (edge) {
                edge.connectedNodes().sort(function (a, b) {
                  if (a.data("parent") === device.id()) return -1;
                  return 1;
                }).map(function (node) {
                  // x = remeberX + 0 * offset;
                  node.position({ x: x, y: y });
                  x = x + 3 * offset;
                  y = y + offset;
                  done.push(node.id());
                });
                y = y - 2 * offset;

              });
              x = remeberX;
              done.push(ltp.id());
            });
            y = row * 6 * offset;
            x = x + 6 * offset;

            if (x > 4000) {
              row = row + 1;
              x = 0;
              y = row * 6 * offset;
            }
            return device;
          });
        };

        var dragedNodes = [];    
        // add an event handler for 'tabdrag' for all ports 
        cy.on('drag', 'node[type = "port"]', function (event) {
          var id = event.target.data().id;
          dragedNodes.indexOf(id) <= -1 && dragedNodes.push(id);
        });

        cy.on('tap', function (event) {
          if (event.target !== cy) {
            console.info('click', JSON.stringify(event.target.data()));
          } else {
            orderLtps();
            // cy.zoom(0.1);
            cy.fit();
            cy.center();
          }
        });

        cy.on('zoom', function (event) {
          setCss();
        });

        // global keyboard event handler
        function handleKey(e) {
          if (!e.ctrlKey && !e.commandKey) return;
          switch (e.which) {
            case 69:
              dragedNodes = [];
              cy.nodes().grabify();
              e.preventDefault();
              return false;
              break;
            case 83:
              cy.nodes().ungrabify();
              e.preventDefault();
              var modifiedNodes = dragedNodes.map(id => ({ id: id, position: cy.nodes().getElementById(id).position() }));
              $mwtnTopology.saveChangedNodes(modifiedNodes);
              console.log("dragedNodes", modifiedNodes);
              return false;
              break;
            // default:
            //   console.log(e.which);
            //   e.preventDefault();
            //   return false;
            //   break;
          }
        }

        // register global keyboard event handler
        window.addEventListener('keydown', handleKey, false);

        scope.$on('$destroy', function () {
          // un-register global keyboard event handler
          window.removeEventListener('keydown', handleKey, false);
        });

      }
    }
  }]);

  mwtnTopologyApp.controller("mwtnTopologyNetworkElementsGridController", ['$scope', '$timeout', '$state', '$mwtnCommons', '$mwtnTopology', 'uiGridConstants', 'mwtnTopologyPhysicalPathData', function ($scope, $timeout, $state, $mwtnCommons, $mwtnTopology, uiGridConstants, mwtnTopologyPhysicalPathData) {
    var vm = this;

    // The page number to show in the grid.
    var paginationPage = 1;
    // The page size.
    var paginationPageSize = 100;
    // The grid column object with current sorting informations.
    var sortColumn = null;
    // The grid column object with current sorting informations.
    var gridFilters = [];
    // caches all sites at the current grid page

    vm.gridOptions = Object.assign({}, $mwtnCommons.gridOptions, {
      showGridFooter: false, // disable the grid footer because the pagination component sets its own.
      paginationPageSizes: [10, 25, 50, 100],
      paginationPageSize: paginationPageSize,
      useExternalPagination: true,
      useExternalFiltering: true,
      useExternalSorting: true,
      totalItems: 0,
      columnDefs: [{
        field: "id",
        type: "string",
        displayName: "Id"
      },
      {
        field: "layer",
        type: "string",
        displayName: "Layer",
        width: 100,
      },
      {
        field: "active",
        type: "string",
        displayName: "Active",
        width: 100,
      },
      {
        field: "latitude",
        type: "string",
        displayName: "Latitude",
        visible: false
      },
      {
        field: "longitude",
        type: "string",
        displayName: "Longitude",
        visible: false
      },
      {
        field: "installed", // capacity in Mbit/s
        type: "number",
        displayName: "Installed [Mbit/s]",
        className: "number",
        width: 150
      },
      {
        field: "configured", // capacity in Mbit/s
        type: "number",
        displayName: "Configured [Mbit/s]",
        className: "number",
        width: 150
      },
      {
        field: "effective", // capacity in Mbit/s
        type: "number",
        displayName: "Effective [Mbit/s]",
        className: "number",
        width: 150
      }
      ],
      data: [],
      onRegisterApi: function (gridApi) {
        // http://ui-grid.info/docs/#/api/ui.grid.core.api:PublicApi
        vm.gridApi = gridApi;

        vm.gridApi.core.on.sortChanged($scope, function (grid, sortColumns) {
          // Save the current sort column for later use.
          sortColumn = (!sortColumns || sortColumns.length === 0) ?
            null :
            sortColumns[0];
          loadPage();
        });

        vm.gridApi.pagination.on.paginationChanged($scope, function (newPage, newPageSize) {
          // Save the pagination informations for later use.
          paginationPage = newPage;
          paginationPageSize = newPageSize;
          loadPage();
        });

        vm.gridApi.core.on.filterChanged($scope, function () {
          // Save the all filters for later use.
          var filters = [];
          this.grid.columns.forEach(function (col, ind) {
            if (col.filters[0] && col.filters[0].term) {
              filters.push({
                field: col.field,
                term: col.filters[0].term
              });
            }
          });
          gridFilters = filters;
          loadPage();
        });

        loadPage();
      }
    });

    /**
     * Calculates the page content of the grid and sets the values to the gridOprions.data object.
     */
    function loadPage() {

      // extract all ports        
      var ports = mwtnTopologyPhysicalPathData.elements.nodes.filter(function (node, ind, arr) {
        return node && node.data && node.data.type === 'port';
      }).reduce(function (acc, cur, ind, arr) {
        if (cur.data) acc[cur.data.id] = cur.data;
        return acc;
      }, {});

      // get all port ids
      var portIds = Object.keys(ports);

      // apply the grid filters
      var tempData = portIds.filter(function (portId, ind, arr) {
        var port = ports[portId];
        return gridFilters.map(function (filter) {
          switch (filter.field) {
            case "active":
              return port[filter.field].toString().contains(filter.term);
            default:
              return port[filter.field].contains(filter.term);
          }
        }).and(true);
      }).map(function (portId) {
        var port = ports[portId];
        var orderBy;

        if (!sortColumn || !sortColumn.sort.direction) {
          return {
            id: port.id
          }
        }

        switch (sortColumn.field) {
          case "active":
            orderBy = port[sortColumn.field] ? 1 : 0;
            break;
          default:
            orderBy = port[sortColumn.field];
            break;
        }

        return {
          id: port.id,
          orderBy: orderBy
        };
      });

      if (sortColumn && sortColumn.sort.direction) {
        tempData.sort(function (left, right) {
          if (left === right || left.orderBy === right.orderBy) {
            return 0;
          }
          if (left.orderBy > right.orderBy) {
            return (sortColumn.sort.direction === uiGridConstants.ASC) ? 1 : -1;
          }
          return (sortColumn.sort.direction === uiGridConstants.ASC) ? -1 : 1;
        });
      }

      var maxPageNumber = Math.max(1, Math.ceil(tempData.length / paginationPageSize));
      var currentPage = Math.min(maxPageNumber, paginationPage);
      var orderedPortsAtCurrentPage = tempData.slice((currentPage - 1) * paginationPageSize, currentPage * paginationPageSize);

      portsAtCurrentPageCache = {};
      var orderedData = [];

      orderedPortsAtCurrentPage.forEach(function (orderedPort) {
        var port = ports[orderedPort.id];
        portsAtCurrentPageCache[port.id] = port;
        orderedData.push({
          id: orderedPort.id,
          layer: port.layer,
          active: port.active,
          latitude: port.latitude.toLocaleString("en-US", {
            minimumFractionDigits: 4
          }),
          longitude: port.longitude.toLocaleString("en-US", {
            minimumFractionDigits: 4
          }),
          installed: 0,
          configured: 0,
          effective: 0
        });
      });

      $timeout(function () {
        vm.gridOptions.data = orderedData;
        vm.gridOptions.totalItems = tempData.length;
      });
    }

    // subscribe to the elementsChanged event to reload the grid page if the data in the service has chenged      
    mwtnTopologyPhysicalPathData.events.subscribe("elementsChanged", function (data) {
      loadPage();
    });

  }]);

  mwtnTopologyApp.directive("mwtnTopologyNetworkElementsGrid", [function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologyNetworkElementsGridController',
      controllerAs: 'vm',
      scope: {

      },
      templateUrl: 'src/app/mwtnTopology/templates/networkElementsGrid.tpl.html'
    };
  }]);

  mwtnTopologyApp.controller("mwtnTopologyLinksGridController", ['$scope', '$timeout', '$state', '$mwtnCommons', '$mwtnTopology', 'uiGridConstants', 'mwtnTopologyPhysicalPathData', function ($scope, $timeout, $state, $mwtnCommons, $mwtnTopology, uiGridConstants, mwtnTopologyPhysicalPathData) {
    var vm = this;

    // The page number to show in the grid.
    var paginationPage = 1;
    // The page size.
    var paginationPageSize = 100;
    // The grid column object with current sorting informations.
    var sortColumn = null;
    // The grid column object with current sorting informations.
    var gridFilters = [];
    // caches all sites at the current grid page

    vm.gridOptions = Object.assign({}, $mwtnCommons.gridOptions, {
      showGridFooter: false, // disable the grid footer because the pagination component sets its own.
      paginationPageSizes: [10, 25, 50, 100],
      paginationPageSize: paginationPageSize,
      useExternalPagination: true,
      useExternalFiltering: true,
      useExternalSorting: true,
      totalItems: 0,
      columnDefs: [{
        field: "id",
        type: "string",
        displayName: "Id"
      },
      {
        field: "source",
        type: "string",
        displayName: "PortA"
      },
      {
        field: "target",
        type: "string",
        displayName: "PortZ"
      },
      {
        field: "layer",
        type: "string",
        displayName: "Layer"
      },
      {
        field: "length",
        type: "string",
        displayName: "Length"
      },
      {
        field: "azimuthAZ",
        type: "string",
        displayName: "azimuthAZ"
      },
      {
        field: "azimuthZA",
        type: "string",
        displayName: "azimuthZA"
      }
      ],
      data: [],
      onRegisterApi: function (gridApi) {
        // http://ui-grid.info/docs/#/api/ui.grid.core.api:PublicApi
        vm.gridApi = gridApi;

        vm.gridApi.core.on.sortChanged($scope, function (grid, sortColumns) {
          // Save the current sort column for later use.
          sortColumn = (!sortColumns || sortColumns.length === 0) ?
            null :
            sortColumns[0];
          loadPage();
        });

        vm.gridApi.pagination.on.paginationChanged($scope, function (newPage, newPageSize) {
          // Save the pagination informations for later use.
          paginationPage = newPage;
          paginationPageSize = newPageSize;
          loadPage();
        });

        vm.gridApi.core.on.filterChanged($scope, function () {
          // Save the all filters for later use.
          var filters = [];
          this.grid.columns.forEach(function (col, ind) {
            if (col.filters[0] && col.filters[0].term) {
              filters.push({
                field: col.field,
                term: col.filters[0].term
              });
            }
          });
          gridFilters = filters;
          loadPage();
        });

        loadPage();
      }
    });

    /**
     * Calculates the page content of the grid and sets the values to the gridOprions.data object.
     */
    function loadPage() {
      // extract all ports        
      var ports = mwtnTopologyPhysicalPathData.elements.nodes.filter(function (node, ind, arr) {
        return node && node.data && node.data.type === 'port';
      }).reduce(function (acc, cur, ind, arr) {
        if (cur.data) acc[cur.data.id] = cur.data;
        return acc;
      }, {});

      // extract all links        
      var links = mwtnTopologyPhysicalPathData.elements.edges.filter(function (node, ind, arr) {
        return true; // node && node.data && node.data.type === 'port';
      }).reduce(function (acc, cur, ind, arr) {
        if (cur.data) {

          if (cur.data.layer === 'MWPS') {
            var portA = ports[cur.data.source];
            var portZ = ports[cur.data.target];

            // calculate length
            cur.data.length = (portA && portZ) ? $mwtnTopology.getDistance(portA.latitude, portA.longitude, portZ.latitude, portZ.longitude) : 0;
            cur.data.azimuthAZ = (portA && portZ) ? $mwtnTopology.bearing(portA.latitude, portA.longitude, portZ.latitude, portZ.longitude) : 0;
            cur.data.azimuthZA = (portA && portZ) ? $mwtnTopology.bearing(portZ.latitude, portZ.longitude, portA.latitude, portA.longitude) : 0;

          } else {
            cur.data.length = 0;
            cur.data.azimuthAZ = 0;
            cur.data.azimuthZA = 0;
          }
          acc[cur.data.id] = cur.data;
        }
        return acc;
      }, {});

      // get all link ids
      var linkIds = Object.keys(links);

      // apply the grid filters
      var tempData = linkIds.filter(function (linkId, ind, arr) {
        var link = links[linkId];
        return gridFilters.map(function (filter) {
          switch (filter.field) {
            case "length":
            case "azimuthAZ":
            case "azimuthZA":
              return true;
            default:
              return link[filter.field].contains(filter.term);
          }
        }).and(true);
      }).map(function (linkId) {
        var link = links[linkId];
        var orderBy;

        if (!sortColumn || !sortColumn.sort.direction) {
          return {
            id: link.id
          }
        }

        switch (sortColumn.field) {
          default:
            orderBy = link[sortColumn.field];
            break;
        }

        return {
          id: link.id,
          orderBy: orderBy
        };
      });

      if (sortColumn && sortColumn.sort.direction) {
        tempData.sort(function (left, right) {
          if (left === right || left.orderBy === right.orderBy) {
            return 0;
          }
          if (left.orderBy > right.orderBy) {
            return (sortColumn.sort.direction === uiGridConstants.ASC) ? 1 : -1;
          }
          return (sortColumn.sort.direction === uiGridConstants.ASC) ? -1 : 1;
        });
      }

      var maxPageNumber = Math.max(1, Math.ceil(tempData.length / paginationPageSize));
      var currentPage = Math.min(maxPageNumber, paginationPage);
      var orderedLinksAtCurrentPage = tempData.slice((currentPage - 1) * paginationPageSize, currentPage * paginationPageSize);

      linksAtCurrentPageCache = {};
      var orderedData = [];

      orderedLinksAtCurrentPage.forEach(function (orderedLink) {
        var link = links[orderedLink.id];
        linksAtCurrentPageCache[link.id] = link;
        orderedData.push({
          id: orderedLink.id,
          source: link.source,
          target: link.target,
          layer: link.layer,
          length: link.length,
          azimuthAZ: link.azimuthAZ.toLocaleString("en-US", {
            minimumFractionDigits: 4
          }),
          azimuthZA: link.azimuthZA.toLocaleString("en-US", {
            minimumFractionDigits: 4
          }),
        });
      });

      $timeout(function () {
        vm.gridOptions.data = orderedData;
        vm.gridOptions.totalItems = tempData.length;
      });
    }

    // subscribe to the elementsChanged event to reload the grid page if the data in the service has chenged      
    var subscription = mwtnTopologyPhysicalPathData.events.subscribe("elementsChanged", function (data) {
      loadPage();
      // to unsubscribe call subscription.remove();
    });

  }]);

  mwtnTopologyApp.directive("mwtnTopologyLinksGrid", [function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologyLinksGridController',
      controllerAs: 'vm',
      scope: {

      },
      templateUrl: 'src/app/mwtnTopology/templates/linksGrid.tpl.html'
    };
  }]);

  /********************************************* Ethernet ***********************************/

  mwtnTopologyApp.controller('mwtnTopologyEthernetViewController', ['$scope', '$q', '$timeout', '$state', '$window', '$mwtnTopology', function ($scope, $q, $timeout, $state, $window, $mwtnTopology) {
    var vm = this;
    vm.status = {
      topologyIsOpen: false,
      portsOpen: false,
      ethConnectionsIsOpen: false
    }

    $scope.$watchCollection(function () { return [vm.status.topologyIsOpen, vm.status.portsOpen, vm.status.ethConnectionsIsOpen] }, function (newVal, oldVal) {
      if (newVal[1] || newVal[2]) {
        $timeout(function () {
          $window.dispatchEvent(new Event("resize"));
        });
      }
    });

  }]);

  mwtnTopologyApp.directive('mwtnTopologyEthernetView', function () {
    return {
      restrict: 'E',
      controller: 'mwtnTopologyEthernetViewController',
      controllerAs: 'vm',
      bindToController: true,
      templateUrl: 'src/app/mwtnTopology/templates/ethernetView.tpl.html',
      scope: {

      }
    };
  });

  mwtnTopologyApp.factory("mwtnTopologyEthernetPathData", function () {
    var colors = {
      root: '#f54',
      port: '#377',
      device: '#252',
      site: '#525',
      edge: '#49a',
      white: '#eed',
      grey: '#555',
      selected: '#ff0'
    };

    var styles = [
      {
        selector: 'node',
        css: {
          'content': 'data(label)',
          'text-valign': 'center',
          'text-halign': 'center',
          'background-color': '#eeeeee',
          'border-color': '#000000',
          'border-width': '1px',
          'color': '#000000'
        }
      },
      {
        selector: 'node[type = "label"]',
        css: {
          'content': 'data(label)',
          'border-width': '0px',
          'background-color': '#ffffff',
          'font-size': '50px',
          'text-valign': 'bottom',
          'text-halign': 'right',

        }
      },

      {
        selector: 'node[layer = "MWPS"]',
        css: {
          'content': 'data(label)',
          'text-valign': 'center',
          'text-halign': 'center',
          'background-color': '#316ac5',
          'border-color': '#000000',
          'border-width': '1px',
          'color': '#ffffff'
        }
      },
      {
        selector: 'node[layer = "ETH-TTP"]',
        css: {
          'content': 'data(label)',
          'text-valign': 'center',
          'text-halign': 'center',
          'background-color': '#008800',
          'border-color': '#004400',
          'border-width': '1px',
          'color': '#ffffff'
        }
      },
      {
        selector: '$node > node',
        css: {
          'shape': 'roundrectangle',
          'padding-top': '10px',
          'padding-left': '10px',
          'padding-bottom': '10px',
          'padding-right': '10px',
          'text-valign': 'top',
          'text-halign': 'center',
          'background-color': '#eeeeee',
          'color': '#444444',
          'border-color': '#888888'
        }
      },
      {
        selector: 'node[type = "site"]',
        css: {
          'shape': 'roundrectangle',
          'padding-top': '10px',
          'padding-left': '10px',
          'padding-bottom': '10px',
          'padding-right': '10px',
          'text-valign': 'center',
          'text-halign': 'center',
          'background-color': '#fefefe',
          'color': '#444444',
          'border-color': '#888888',
          'font-weight': 'bold'
        }
      },
      {
        selector: 'node[type = "device"]',
        css: {
          'background-color': '#eeeeee',
          'background-opacity': '0.1',
          'border-color': '#888888',
          'border-width': '2px',
          'color': '#444444'
        }
      },
      {
        selector: 'node[type = "device"][active = "true"]',
        css: {
          'background-color': '#316ac5',
          'background-opacity': '0.1',
          'border-color': '#316ac5',
          'border-width': '2px',
          'color': '#444444'
        }
      },
      {
        selector: 'node[type = "port"][active = "true"]',
        css: {
          'background-opacity': '1.0',
        }
      },
      {
        selector: 'node[path = "working"]',
        css: {
          'background-color': '#FFA500',
          'border-color': '#FFA500',
          'border-width': '2px',
          'color': '#444444'
        }
      },
      {
        selector: 'node[path = "protection"]',
        css: {
          'background-color': '#ffffff',
          'border-color': '#FFA500',
          'border-width': '2px',
          'color': '#444444'
        }
      },
      {
        selector: '$node > node[path = "working"]',
        css: {
          'background-color': '#FFA500',
          'border-color': '#FFA500',
          'border-width': '2px',
          'color': '#444444'
        }
      },
      {
        selector: '$node > node[path = "protection"]',
        css: {
          'border-color': '#FFA500',
          'border-width': '2px',
          'color': '#444444'
        }
      },
      {
        selector: 'node[active = "false"]',
        css: {
          'background-opacity': '0.3',
          'border-opacity': '0.5'
        }
      },
      {
        selector: 'edge',
        css: {
          'content': 'data(id)',
          'target-arrow-shape': 'triangle',
          'line-color': '#666666',
          'color': '#444444'
        }
      },
      {
        selector: 'edge[active = "false"]',
        css: {
          'line-color': '#cccccc',
          'text-opacity': '0.9'
        }
      },
      {
        selector: 'edge[layer = "ETC"]',
        css: {
          'content': 'data(id)',
          'target-arrow-shape': 'triangle',
          'width': '3px',
          'line-color': '#316ac5',
          'color': '#444444'
        }
      },
      {
        selector: 'edge[layer = "ETH"]',
        css: {
          'content': '',
          'target-arrow-shape': 'triangle',
          'width': '2px',
          'line-color': '#FFA500',
          'color': '#000000'
        }
      }, {
        selector: 'edge[layer = "ETC"][active = "false"]',
        css: {
          'line-color': '#C0D1EC',
          'text-opacity': '0.9'
        }
      },

      {
        selector: 'edge[layer = "ETH"][path = "false"]',
        css: {
          'opacity': '0.0'
        }
      },
      {
        selector: 'edge[path = "working"]',
        css: {
          'line-color': '#FFA500',
          'width': '5px',
          'opacity': '1.0'
        }
      },
      {
        selector: 'edge[path = "protection"]',
        css: {
          'line-color': '#FFA500',
          'line-style': 'dashed',
          'width': '3px',
          'opacity': '1.0'
        }
      },
      {
        selector: ':selected',
        css: {
          'background-color': 'black',
          'line-color': 'black',
          'target-arrow-color': 'black',
          'source-arrow-color': 'black'
        }
      }
    ];

    var elements = {
      nodes: [
        { data: { id: 'label', label : '' , type: 'label' }, position: { x: -259, y: -167 } },

        { data: { id: 'north', label : 'north' , type: 'site', latitude: 50.734916, longitude: 7.137636 } },
        { data: { id: 'north-east', label : 'north-east' , type: 'site', latitude: 50.733028, longitude: 7.151086 } },
        { data: { id: 'north-west', label : 'north-west' , type: 'site', latitude: 50.730230, longitude: 7.126017 } },
        { data: { id: 'east', label : 'east' , type: 'site', latitude: 50.725672, longitude: 7.158488 } },
        { data: { id: 'west', label : 'west' , type: 'site', latitude: 50.721914, longitude: 7.120521 } },
        { data: { id: 'south-east', label : 'south-east' , type: 'site', latitude: 50.717158, longitude: 7.155506 } },
        { data: { id: 'south-west', label : 'south-west' , type: 'site', latitude: 50.714359, longitude: 7.130437 } },
        { data: { id: 'south', label : 'south' , type: 'site', latitude: 50.712472, longitude: 7.143887 } },

        { data: { id: 'ADVA-Y', label : 'ADVA-Y' , parent : 'north-east', type: 'device', active: 'true' , latitude: 50.733028, longitude: 7.151086 } },
        { data: { id: 'ADVA-Z', label : 'ADVA-Z' , parent : 'south', type: 'device', active: 'true' , latitude: 50.712472, longitude: 7.143887 } },
        { data: { id: 'Aviat-A', label : 'Aviat-A' , parent : 'north-east', type: 'device', active: 'true' , latitude: 50.733028, longitude: 7.151086 } },
        { data: { id: 'Aviat-Z', label : 'Aviat-Z' , parent : 'east', type: 'device', active: 'true' , latitude: 50.725672, longitude: 7.158488 } },
        { data: { id: 'Ceragon-A', label : 'Ceragon-A' , parent : 'north-west', type: 'device', active: 'true' , latitude: 50.730230, longitude: 7.126017 } },
        { data: { id: 'Ceragon-Z', label : 'Ceragon-Z' , parent : 'west', type: 'device', active: 'true' , latitude: 50.721914, longitude: 7.120521 } },
        { data: { id: 'DragonWave-A', label : 'DragonWave-A' , parent : 'south-west', type: 'device', active: 'true' , latitude: 50.714359, longitude: 7.130437 } },
        { data: { id: 'DragonWave-Z', label : 'DragonWave-Z' , parent : 'south', type: 'device', active: 'true' , latitude: 50.712472, longitude: 7.143887 } },
        { data: { id: 'ELVA-1-A', label : 'ELVA-1-A' , parent : 'north', type: 'device', active: 'true' , latitude: 50.734916, longitude: 7.137636 } },
        { data: { id: 'ELVA-1-Z', label : 'ELVA-1-Z' , parent : 'south-west', type: 'device', active: 'true' , latitude: 50.714359, longitude: 7.130437 } },
        { data: { id: 'Ericsson-A', label : 'Ericsson-A' , parent : 'north-east', type: 'device', active: 'true' , latitude: 50.733028, longitude: 7.151086 } },
        { data: { id: 'Ericsson-Z', label : 'Ericsson-Z' , parent : 'east', type: 'device', active: 'true' , latitude: 50.725672, longitude: 7.158488 } },
        { data: { id: 'Fujitsu-A', label : 'Fujitsu-A' , parent : 'east', type: 'device', active: 'true' , latitude: 50.725672, longitude: 7.158488 } },
        { data: { id: 'Fujitsu-Z', label : 'Fujitsu-Z' , parent : 'south-east', type: 'device', active: 'true' , latitude: 50.717158, longitude: 7.155506 } },
        { data: { id: 'Huawei-A', label : 'Huawei-A' , parent : 'south-west', type: 'device', active: 'true' , latitude: 50.714359, longitude: 7.130437 } },
        { data: { id: 'Huawei-Z', label : 'Huawei-Z' , parent : 'south', type: 'device', active: 'true' , latitude: 50.712472, longitude: 7.143887 } },
        { data: { id: 'Intracom-A', label : 'Intracom-A' , parent : 'south', type: 'device', active: 'true' , latitude: 50.712472, longitude: 7.143887 } },
        { data: { id: 'Intracom-Z', label : 'Intracom-Z' , parent : 'south-east', type: 'device', active: 'true' , latitude: 50.717158, longitude: 7.155506 } },
        { data: { id: 'NEC-A', label : 'NEC-A' , parent : 'north', type: 'device', active: 'true' , latitude: 50.734916, longitude: 7.137636 } },
        { data: { id: 'NEC-Z', label : 'NEC-Z' , parent : 'north-east', type: 'device', active: 'true' , latitude: 50.733028, longitude: 7.151086 } },
        { data: { id: 'Nokia-A', label : 'Nokia-A' , parent : 'west', type: 'device', active: 'fasel' , latitude: 50.721914, longitude: 7.120521 } },
        { data: { id: 'Nokia-Z', label : 'Nokia-Z' , parent : 'south-west', type: 'device', active: 'true' , latitude: 50.714359, longitude: 7.130437 } },
        { data: { id: 'SIAE-A', label : 'SIAE-A' , parent : 'south', type: 'device', active: 'true' , latitude: 50.712472, longitude: 7.143887 } },
        { data: { id: 'SIAE-Z', label : 'SIAE-Z' , parent : 'south-east', type: 'device', active: 'true' , latitude: 50.717158, longitude: 7.155506 } },
        { data: { id: 'ZTE-A', label : 'ZTE-A' , parent : 'north-west', type: 'device', active: 'true' , latitude: 50.730230, longitude: 7.126017 } },
        { data: { id: 'ZTE-Z', label : 'ZTE-Z' , parent : 'north', type: 'device', active: 'true' , latitude: 50.734916, longitude: 7.137636 } },

        { data: { id: 'Aviat-Z#5', label : '#5' , parent : 'Aviat-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.725672, longitude: 7.158488 }, position: { x: 1984, y: 390 } },
        { data: { id: 'Aviat-Z#6', label : '#6' , parent : 'Aviat-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.725672, longitude: 7.158488 }, position: { x: 1984, y: 321 } },
        { data: { id: 'Ericsson-Z#5', label : '#5' , parent : 'Ericsson-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.725672, longitude: 7.158488 }, position: { x: 1777, y: 393 } },
        { data: { id: 'Ericsson-Z#6', label : '#6' , parent : 'Ericsson-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.725672, longitude: 7.158488 }, position: { x: 1765, y: 325 } },
        { data: { id: 'Fujitsu-A#5', label : '#5' , parent : 'Fujitsu-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.725672, longitude: 7.158488 }, position: { x: 1859, y: 567 } },
        { data: { id: 'Fujitsu-A#6', label : '#6' , parent : 'Fujitsu-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.725672, longitude: 7.158488 }, position: { x: 1859, y: 647 } },
        { data: { id: 'ELVA-1-A#2', label : '#2' , parent : 'ELVA-1-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.734916, longitude: 7.137636 }, position: { x: 895, y: 150 } },
        { data: { id: 'ELVA-1-A#6', label : '#6' , parent : 'ELVA-1-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.734916, longitude: 7.137636 }, position: { x: 815, y: 150 } },
        { data: { id: 'NEC-A#3', label : '#3' , parent : 'NEC-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.734916, longitude: 7.137636 }, position: { x: 955, y: -52 } },
        { data: { id: 'NEC-A#6', label : '#6' , parent : 'NEC-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.734916, longitude: 7.137636 }, position: { x: 1035, y: -52 } },
        { data: { id: 'ZTE-Z#4', label : '#4' , parent : 'ZTE-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.734916, longitude: 7.137636 }, position: { x: 707, y: -67 } },
        { data: { id: 'ZTE-Z#5', label : '#5' , parent : 'ZTE-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.734916, longitude: 7.137636 }, position: { x: 747, y: -27 } },
        { data: { id: 'ZTE-Z#6', label : '#6' , parent : 'ZTE-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.734916, longitude: 7.137636 }, position: { x: 667, y: -27 } },
        // { data: { id: 'ADVA-Y#1', label : '#1' , parent : 'ADVA-Y' , type:'port', layer:'ETY', active:'true', latitude:50.733028, longitude:7.151086}, position: { x: 1392, y: 229 } },
        { data: { id: 'ADVA-Y#2', label : '#2' , parent : 'ADVA-Y' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1449, y: 172 } },
        { data: { id: 'ADVA-Y#3', label : '#3' , parent : 'ADVA-Y' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1392, y: 172 } },
        { data: { id: 'ADVA-Y#4', label : '#4' , parent : 'ADVA-Y' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1449, y: 229 } },
        { data: { id: 'Aviat-A#5', label : '#5' , parent : 'Aviat-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1654, y: -47 } },
        { data: { id: 'Aviat-A#6', label : '#6' , parent : 'Aviat-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1654, y: 22 } },
        { data: { id: 'Ericsson-A#4', label : '#4' , parent : 'Ericsson-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1605, y: 229 } },
        { data: { id: 'Ericsson-A#5', label : '#5' , parent : 'Ericsson-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1605, y: 172 } },
        { data: { id: 'Ericsson-A#6', label : '#6' , parent : 'Ericsson-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1664, y: 226 } },
        // { data: { id: 'NEC-Z#3', label : '#3' , parent : 'NEC-Z' , type:'port', layer:'ETY', active:'true', latitude:50.733028, longitude:7.151086}, position: { x: 1392, y: 16 } },
        { data: { id: 'NEC-Z#4', label : '#4' , parent : 'NEC-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1449, y: 16 } },
        { data: { id: 'NEC-Z#2', label : '#2' , parent : 'NEC-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1449, y: -41 } },
        { data: { id: 'NEC-Z#6', label : '#6' , parent : 'NEC-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1382, y: -23 } },
        { data: { id: 'Ceragon-A#5', label : '#5' , parent : 'Ceragon-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.730230, longitude: 7.126017 }, position: { x: 195, y: 312 } },
        { data: { id: 'Ceragon-A#6', label : '#6' , parent : 'Ceragon-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.730230, longitude: 7.126017 }, position: { x: 136, y: 366 } },
        { data: { id: 'ZTE-A#5', label : '#5' , parent : 'ZTE-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.730230, longitude: 7.126017 }, position: { x: 345, y: 108 } },
        { data: { id: 'ZTE-A#6', label : '#6' , parent : 'ZTE-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.730230, longitude: 7.126017 }, position: { x: 408, y: 99 } },
        { data: { id: 'ADVA-Z#1', label : '#1' , parent : 'ADVA-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1139, y: 1001 } },
        // { data: { id: 'ADVA-Z#2', label : '#2' , parent : 'ADVA-Z' , type:'port', layer:'ETY', active:'true', latitude:50.712472, longitude:7.143887}, position: { x: 1196, y: 944 } },
        // { data: { id: 'ADVA-Z#3', label : '#3' , parent : 'ADVA-Z' , type:'port', layer:'ETY', active:'true', latitude:50.712472, longitude:7.143887}, position: { x: 1139, y: 944 } },
        { data: { id: 'ADVA-Z#4', label : '#4' , parent : 'ADVA-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1196, y: 1001 } },
        { data: { id: 'DragonWave-Z#2', label : '#2' , parent : 'DragonWave-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1133, y: 1252 } },
        { data: { id: 'DragonWave-Z#6', label : '#6' , parent : 'DragonWave-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1053, y: 1252 } },
        { data: { id: 'Huawei-Z#3', label : '#3' , parent : 'Huawei-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1046, y: 1094 } },
        // { data: { id: 'Huawei-Z#4', label : '#4' , parent : 'Huawei-Z' , type:'port', layer:'ETY', active:'true', latitude:50.712472, longitude:7.143887}, position: { x: 989, y: 1094 } },
        { data: { id: 'Huawei-Z#5', label : '#5' , parent : 'Huawei-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1058, y: 1123 } },
        { data: { id: 'Huawei-Z#6', label : '#6' , parent : 'Huawei-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 978, y: 1123 } },
        { data: { id: 'Intracom-A#2', label : '#2' , parent : 'Intracom-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1203, y: 1252 } },
        { data: { id: 'Intracom-A#6', label : '#6' , parent : 'Intracom-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1283, y: 1252 } },
        { data: { id: 'SIAE-A#4', label : '#4' , parent : 'SIAE-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1289, y: 1094 } },
        { data: { id: 'SIAE-A#5', label : '#5' , parent : 'SIAE-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1278, y: 1123 } },
        { data: { id: 'SIAE-A#6', label : '#6' , parent : 'SIAE-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1346, y: 1094 } },
        { data: { id: 'Fujitsu-Z#5', label : '#5' , parent : 'Fujitsu-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.717158, longitude: 7.155506 }, position: { x: 1855, y: 821 } },
        { data: { id: 'Fujitsu-Z#6', label : '#6' , parent : 'Fujitsu-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.717158, longitude: 7.155506 }, position: { x: 1855, y: 741 } },
        { data: { id: 'Intracom-Z#5', label : '#5' , parent : 'Intracom-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.717158, longitude: 7.155506 }, position: { x: 1755, y: 998 } },
        { data: { id: 'Intracom-Z#6', label : '#6' , parent : 'Intracom-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.717158, longitude: 7.155506 }, position: { x: 1714, y: 1018 } },
        { data: { id: 'SIAE-Z#4', label : '#4' , parent : 'SIAE-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.717158, longitude: 7.155506 }, position: { x: 1590, y: 784 } },
        { data: { id: 'SIAE-Z#5', label : '#5' , parent : 'SIAE-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.717158, longitude: 7.155506 }, position: { x: 1647, y: 784 } },
        { data: { id: 'SIAE-Z#6', label : '#6' , parent : 'SIAE-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.717158, longitude: 7.155506 }, position: { x: 1588, y: 838 } },
        { data: { id: 'DragonWave-A#2', label : '#2' , parent : 'DragonWave-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.714359, longitude: 7.130437 }, position: { x: 455, y: 1178 } },
        { data: { id: 'DragonWave-A#6', label : '#6' , parent : 'DragonWave-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.714359, longitude: 7.130437 }, position: { x: 535, y: 1178 } },
        { data: { id: 'ELVA-1-Z#2', label : '#2' , parent : 'ELVA-1-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.714359, longitude: 7.130437 }, position: { x: 455, y: 878 } },
        { data: { id: 'ELVA-1-Z#6', label : '#6' , parent : 'ELVA-1-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.714359, longitude: 7.130437 }, position: { x: 535, y: 878 } },
        { data: { id: 'Huawei-A#5', label : '#5' , parent : 'Huawei-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.714359, longitude: 7.130437 }, position: { x: 605, y: 1028 } },
        { data: { id: 'Huawei-A#6', label : '#6' , parent : 'Huawei-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.714359, longitude: 7.130437 }, position: { x: 685, y: 1028 } },
        { data: { id: 'Nokia-Z33', label : '33' , parent : 'Nokia-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.714359, longitude: 7.130437 }, position: { x: 385, y: 1028 } },
        { data: { id: 'Nokia-Z#6', label : '#6' , parent : 'Nokia-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.714359, longitude: 7.130437 }, position: { x: 305, y: 1028 } },
        { data: { id: 'Ceragon-Z#4', label : '#4' , parent : 'Ceragon-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.721914, longitude: 7.120521 }, position: { x: -159, y: 547 } },
        { data: { id: 'Ceragon-Z#5', label : '#5' , parent : 'Ceragon-Z' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.721914, longitude: 7.120521 }, position: { x: -159, y: 604 } },
        { data: { id: 'Ceragon-Z#6', label : '#6' , parent : 'Ceragon-Z' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.721914, longitude: 7.120521 }, position: { x: -130, y: 536 } },
        // { data: { id: 'Nokia-A13', label : '13' , parent : 'Nokia-A' , type:'port', layer:'ETY', active:'true', latitude:50.721914, longitude:7.120521}, position: { x: 40, y: 801 } },
        // { data: { id: 'Nokia-A34', label : '34' , parent : 'Nokia-A' , type:'port', layer:'ETY', active:'true', latitude:50.721914, longitude:7.120521}, position: { x: 28, y: 772 } },
        { data: { id: 'Nokia-A11', label : '11' , parent : 'Nokia-A' , type: 'port', layer: 'ETY', active: 'true', latitude: 50.721914, longitude: 7.120521 }, position: { x: -29, y: 772 } },
        { data: { id: 'Nokia-A#6', label : '#6' , parent : 'Nokia-A' , type: 'port', layer: 'ETC', active: 'true', latitude: 50.721914, longitude: 7.120521 }, position: { x: 28, y: 829 } },

        { data: { id: 'Spirent#1', label : '#1' , parent : 'Spirent' , type: 'host', layer: 'ETH-TTP', active: 'true', service: 'service13' }, position: { x: 707, y: -167 } },
        { data: { id: 'Spirent#2', label : '#2' , parent : 'Spirent' , type: 'host', layer: 'ETH-TTP', active: 'true', service: 'service24' }, position: { x: -259, y: 547 } },
        { data: { id: 'Spirent#3', label : '#3' , parent : 'Spirent' , type: 'host', layer: 'ETH-TTP', active: 'true', service: 'service13' }, position: { x: 1292, y: 172 } },
        { data: { id: 'Spirent#4', label : '#4' , parent : 'Spirent' , type: 'host', layer: 'ETH-TTP', active: 'true', service: 'service24' }, position: { x: 1490, y: 784 } },
        { data: { id: 'Spirent#5', label : '#5' , parent : 'Spirent' , type: 'host', layer: 'ETH-TTP', active: 'true', service: 'service56' }, position: { x: 1754, y: -47 } },
        { data: { id: 'Spirent#6', label : '#6' , parent : 'Spirent' , type: 'host', layer: 'ETH-TTP', active: 'true', service: 'service56' }, position: { x: 455, y: 1278 } },
        { data: { id: 'Spirent#7', label : '#7' , parent : 'Spirent' , type: 'host', layer: 'ETH-TTP', active: 'true', service: 'service78' }, position: { x: 895, y: 250 } },
        { data: { id: 'Spirent#8', label : '#8' , parent : 'Spirent' , type: 'host', layer: 'ETH-TTP', active: 'true', service: 'service78' }, position: { x: 455, y: 778 } },

      ],
      edges: [

        { data: { id: '21', source: 'Aviat-A#6', target: 'Aviat-Z#6', label: '21', layer: 'ETC' , active: 'true' } },
        { data: { id: '31', source: 'Ceragon-A#6', target: 'Ceragon-Z#6', label: '31', layer: 'ETC' , active: 'true' } },
        { data: { id: '41', source: 'DragonWave-A#6', target: 'DragonWave-Z#6', label: '41', layer: 'ETC' , active: 'true' } },
        { data: { id: '121', source: 'ELVA-1-A#6', target: 'ELVA-1-Z#6', label: '121' , layer: 'ETC' , active: 'true' } },
        { data: { id: 'ERI1', source: 'Ericsson-A#6', target: 'Ericsson-Z#6', label: 'ERI1', layer: 'ETC' , active: 'true' } },
        { data: { id: '61', source: 'Fujitsu-A#6', target: 'Fujitsu-Z#6', label: '61', layer: 'ETC' , active: 'true' } },
        { data: { id: '71', source: 'Huawei-A#6', target: 'Huawei-Z#6', label: '71', layer: 'ETC' , active: 'true' } },
        { data: { id: '131', source: 'Intracom-A#6', target: 'Intracom-Z#6', label: '131', layer: 'ETC' , active: 'true' } },
        { data: { id: '81', source: 'NEC-A#6', target: 'NEC-Z#6', label: '81', layer: 'ETC' , active: 'true' } },
        { data: { id: '91', source: 'Nokia-A#6', target: 'Nokia-Z#6', label: '91', layer: 'ETC' , active: 'true' } },
        { data: { id: '101', source: 'SIAE-A#6', target: 'SIAE-Z#6', label: '101', layer: 'ETC' , active: 'true' } },
        { data: { id: '111', source: 'ZTE-A#6', target: 'ZTE-Z#6', label: '111', layer: 'ETC' , active: 'true' } },

        // { data: { id: 'ETY01', source: 'ADVA-A#1', target: 'Nokia-A34', label: 'ADVA-A#1-Nokia-A34' , layer: 'ETY' , active: 'true' } },
        // { data: { id: 'ETY02', source: 'ADVA-A#2', target: 'ZTE-A#4', label: 'ADVA-A#2-ZTE-A#4' , layer: 'ETY' , active: 'false' } },
        // { data: { id: 'ETY03', source: 'ADVA-B#1', target: 'Nokia-A13', label: 'ADVA-B#1-Nokia-A13' , layer: 'ETY' , active: 'true' } },
        // { data: { id: 'ETY04', source: 'ADVA-B#2', target: 'ZTE-A#3', label: 'ADVA-B#2-ZTE-A#3' , layer: 'ETY' , active: 'true' } },
        // { data: { id: 'ETY05', source: 'ADVA-Y#1', target: 'Huawei-Z#4', label: 'ADVA-Y#1-Huawei-Z#4' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY06', source: 'ADVA-Y#2', target: 'NEC-Z#4', label: 'ADVA-Y#2-NEC-Z#4' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY07', source: 'ADVA-Y#3', target: 'Spirent#3', label: 'ADVA-Y#3-Spirent#3' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY08', source: 'ADVA-Y#4', target: 'Ericsson-A#4', label: 'ADVA-Y#4-Ericsson-A#4' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY09', source: 'ADVA-Z#1', target: 'Huawei-Z#3', label: 'ADVA-Z#1-Huawei-Z#3' , layer: 'ETY' , active: 'true' } },
        // { data: { id: 'ETY10', source: 'ADVA-Z#2', target: 'NEC-Z#3', label: 'ADVA-Z#2-NEC-Z#3' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY11', source: 'ADVA-Z#4', target: 'SIAE-A#4', label: 'ADVA-Z#4-SIAE-A#4' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY12', source: 'Aviat-A#5', target: 'Spirent#5', label: 'Aviat-A#5-Spirent#5' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY13', source: 'Aviat-Z#5', target: 'Fujitsu-A#5', label: 'Aviat-Z#5-Fujitsu-A#5' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY14', source: 'Ceragon-A#5', target: 'ZTE-A#5', label: 'Ceragon-A#5-ZTE-A#5' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY15', source: 'Ceragon-Z#4', target: 'Spirent#2', label: 'Ceragon-Z#4-Spirent#2' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY16', source: 'Ceragon-Z#5', target: 'Nokia-A11', label: 'Ceragon-Z#5-Nokia-A11' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY17', source: 'DragonWave-A#2', target: 'Spirent#6', label: 'DragonWave-A#2-Spirent#6' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY18', source: 'DragonWave-Z#2', target: 'Intracom-A#2', label: 'DragonWave-Z#2-Intracom-A#2' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY19', source: 'ELVA-1-A#2', target: 'Spirent#7', label: 'ELVA-1-A#2-Spirent#7' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY20', source: 'ELVA-1-Z#2', target: 'Spirent#8', label: 'ELVA-1-Z#2-Spirent#8' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY21', source: 'Ericsson-A#5', target: 'NEC-Z#2', label: 'Ericsson-A#5-NEC-Z#2' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY22', source: 'Ericsson-Z#5', target: 'SIAE-Z#5', label: 'Ericsson-Z#5-SIAE-Z#5' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY23', source: 'Fujitsu-Z#5', target: 'Intracom-Z#5', label: 'Fujitsu-Z#5-Intracom-Z#5' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY24', source: 'Huawei-A#5', target: 'Nokia-Z33', label: 'Huawei-A#5-Nokia-Z33' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY25', source: 'Huawei-Z#5', target: 'SIAE-A#5', label: 'Huawei-Z#5-SIAE-A#5' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY26', source: 'NEC-A#3', target: 'ZTE-Z#5', label: 'NEC-A#3-ZTE-Z#5' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY27', source: 'SIAE-Z#4', target: 'Spirent#4', label: 'SIAE-Z#4-Spirent#4' , layer: 'ETY' , active: 'true' } },
        { data: { id: 'ETY28', source: 'ZTE-Z#4', target: 'Spirent#1', label: 'Spirent#1-ZTE-Z#4' , layer: 'ETY' , active: 'true' } },

        {  data:  {  id:  'ADVA-Y#2-ETH-13<->ADVA-Y#3-ETH-13',  source:  'ADVA-Y#2',  target:  'ADVA-Y#3',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'protection'  }  },
        {  data:  {  id:  'ADVA-Y#2-ETH-24<->ADVA-Y#4-ETH-24',  source:  'ADVA-Y#2',  target:  'ADVA-Y#4',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'ADVA-Y#3-ETH-13<->ADVA-Y#4-ETH-13',  source:  'ADVA-Y#3',  target:  'ADVA-Y#4',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'Aviat-A#5-ETH-56<->Aviat-A#6-ETH-56',  source:  'Aviat-A#5',  target:  'Aviat-A#6',  label:  'service56' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service56' ,  rule:  'working'  }  },
        {  data:  {  id:  'Aviat-Z#5-ETH-56<->Aviat-Z#6-ETH-56',  source:  'Aviat-Z#5',  target:  'Aviat-Z#6',  label:  'service56' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service56' ,  rule:  'working'  }  },
        {  data:  {  id:  'Ceragon-A#5-ETH-13<->Ceragon-A#6-ETH-13',  source:  'Ceragon-A#5',  target:  'Ceragon-A#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'Ceragon-A#5-ETH-24<->Ceragon-A#6-ETH-24',  source:  'Ceragon-A#5',  target:  'Ceragon-A#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'Ceragon-Z#4-ETH-24<->Ceragon-Z#5-ETH-24',  source:  'Ceragon-Z#4',  target:  'Ceragon-Z#5',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'working'  }  },
        {  data:  {  id:  'Ceragon-Z#4-ETH-24<->Ceragon-Z#6-ETH-24',  source:  'Ceragon-Z#4',  target:  'Ceragon-Z#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'Ceragon-Z#5-ETH-13<->Ceragon-Z#6-ETH-13',  source:  'Ceragon-Z#5',  target:  'Ceragon-Z#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'DragonWave-A#2-ETH-56<->DragonWave-A#6-ETH-56',  source:  'DragonWave-A#2',  target:  'DragonWave-A#6',  label:  'service56' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service56' ,  rule:  'working'  }  },
        {  data:  {  id:  'DragonWave-Z#2-ETH-56<->DragonWave-Z#6-ETH-56',  source:  'DragonWave-Z#2',  target:  'DragonWave-Z#6',  label:  'service56' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service56' ,  rule:  'working'  }  },
        {  data:  {  id:  'ELVA-1-A#2-ETH-78<->ELVA-1-A#6-ETH-78',  source:  'ELVA-1-A#2',  target:  'ELVA-1-A#6',  label:  'service78' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service78' ,  rule:  'working'  }  },
        {  data:  {  id:  'ELVA-1-Z#2-ETH-78<->ELVA-1-Z#6-ETH-78',  source:  'ELVA-1-Z#2',  target:  'ELVA-1-Z#6',  label:  'service78' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service78' ,  rule:  'working'  }  },
        {  data:  {  id:  'Ericsson-A#4-ETH-13<->Ericsson-A#6-ETH-13',  source:  'Ericsson-A#4',  target:  'Ericsson-A#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'Ericsson-A#4-ETH-24<->Ericsson-A#6-ETH-24',  source:  'Ericsson-A#4',  target:  'Ericsson-A#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'Ericsson-Z#5-ETH-13<->Ericsson-Z#6-ETH-13',  source:  'Ericsson-Z#5',  target:  'Ericsson-Z#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'Ericsson-Z#5-ETH-24<->Ericsson-Z#6-ETH-24',  source:  'Ericsson-Z#5',  target:  'Ericsson-Z#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'Fujitsu-A#5-ETH-56<->Fujitsu-A#6-ETH-56',  source:  'Fujitsu-A#5',  target:  'Fujitsu-A#6',  label:  'service56' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service56' ,  rule:  'working'  }  },
        {  data:  {  id:  'Fujitsu-Z#5-ETH-56<->Fujitsu-Z#6-ETH-56',  source:  'Fujitsu-Z#5',  target:  'Fujitsu-Z#6',  label:  'service56' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service56' ,  rule:  'working'  }  },
        {  data:  {  id:  'Huawei-A#5-ETH-13<->Huawei-A#6-ETH-13',  source:  'Huawei-A#5',  target:  'Huawei-A#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'Huawei-A#5-ETH-24<->Huawei-A#6-ETH-24',  source:  'Huawei-A#5',  target:  'Huawei-A#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'working'  }  },
        {  data:  {  id:  'Huawei-Z#5-ETH-13<->Huawei-Z#6-ETH-13',  source:  'Huawei-Z#5',  target:  'Huawei-Z#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'Huawei-Z#5-ETH-24<->Huawei-Z#6-ETH-24',  source:  'Huawei-Z#5',  target:  'Huawei-Z#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'working'  }  },
        {  data:  {  id:  'Intracom-A#2-ETH-56<->Intracom-A#6-ETH-56',  source:  'Intracom-A#2',  target:  'Intracom-A#6',  label:  'service56' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service56' ,  rule:  'working'  }  },
        {  data:  {  id:  'Intracom-Z#5-ETH-56<->Intracom-Z#6-ETH-56',  source:  'Intracom-Z#5',  target:  'Intracom-Z#6',  label:  'service56' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service56' ,  rule:  'working'  }  },
        {  data:  {  id:  'NEC-A#3-ETH-13<->NEC-A#6-ETH-13',  source:  'NEC-A#3',  target:  'NEC-A#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'protection'  }  },
        {  data:  {  id:  'NEC-A#3-ETH-24<->NEC-A#6-ETH-24',  source:  'NEC-A#3',  target:  'NEC-A#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'NEC-Z#4-ETH-13<->NEC-Z#6-ETH-13',  source:  'NEC-Z#4',  target:  'NEC-Z#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'protection'  }  },
        {  data:  {  id:  'NEC-Z#4-ETH-24<->NEC-Z#6-ETH-24',  source:  'NEC-Z#4',  target:  'NEC-Z#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'Nokia-A11-ETH-13<->Nokia-A#6-ETH-13',  source:  'Nokia-A11',  target:  'Nokia-A#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'Nokia-A11-ETH-24<->Nokia-A#6-ETH-24',  source:  'Nokia-A11',  target:  'Nokia-A#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'working'  }  },
        {  data:  {  id:  'Nokia-Z33-ETH-13<->Nokia-Z#6-ETH-13',  source:  'Nokia-Z33',  target:  'Nokia-Z#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'Nokia-Z33-ETH-24<->Nokia-Z#6-ETH-24',  source:  'Nokia-Z33',  target:  'Nokia-Z#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'working'  }  },
        {  data:  {  id:  'SIAE-A#5-ETH-13<->SIAE-A#6-ETH-13',  source:  'SIAE-A#5',  target:  'SIAE-A#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'SIAE-A#5-ETH-24<->SIAE-A#6-ETH-24',  source:  'SIAE-A#5',  target:  'SIAE-A#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'working'  }  },
        {  data:  {  id:  'SIAE-Z#4-ETH-24<->SIAE-Z#6-ETH-24',  source:  'SIAE-Z#4',  target:  'SIAE-Z#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'working'  }  },
        {  data:  {  id:  'SIAE-Z#4-ETH-24<->SIAE-Z#5-ETH-24',  source:  'SIAE-Z#4',  target:  'SIAE-Z#5',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'SIAE-Z#5-ETH-13<->SIAE-Z#6-ETH-13',  source:  'SIAE-Z#5',  target:  'SIAE-Z#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'ZTE-A#5-ETH-13<->ZTE-A#6-ETH-13',  source:  'ZTE-A#5',  target:  'ZTE-A#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'ZTE-A#5-ETH-24<->ZTE-A#6-ETH-24',  source:  'ZTE-A#5',  target:  'ZTE-A#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'ZTE-A#5-ETH-24<->ZTE-A#6-ETH-24',  source:  'ZTE-A#5',  target:  'ZTE-A#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
        {  data:  {  id:  'ZTE-Z#4-ETH-13<->ZTE-Z#6-ETH-13',  source:  'ZTE-Z#4',  target:  'ZTE-Z#6',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'working'  }  },
        {  data:  {  id:  'ZTE-Z#4-ETH-13<->ZTE-Z#5-ETH-13',  source:  'ZTE-Z#4',  target:  'ZTE-Z#5',  label:  'service13' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service13' ,  rule:  'protection'  }  },
        {  data:  {  id:  'ZTE-Z#5-ETH-24<->ZTE-Z#6-ETH-24',  source:  'ZTE-Z#5',  target:  'ZTE-Z#6',  label:  'service24' ,  layer:  'ETH' ,  active:  'true' ,  path:  'false'  ,  service:  'service24' ,  rule:  'protection'  }  },
      ]
    };

    var events = eventsFabric();

    var result = {
      colors: colors,
      elements: elements,
      styles: styles,
      events: events
    };

    var someMethodChangingTheElements = function () {
      // @Martin: hier kannst Du die Elements ändern, anschließend mußt Du das Ereignis veröffentlichen
      //          das Ereigniss wird in der Directive aufgefangen und die Grig wird neu gezeichnet

      // Hinweis: Die Reihenfolge muss so bleiben und du kannst NUR result.elements ändern.

      events.publish("elementsChanged", {
        elements: result.elements
      });
    };

    return result;
  });

  mwtnTopologyApp.directive("mwtnTopologyEthernetPathGraph", ["mwtnTopologyEthernetPathData", '$mwtnCommons', function (mwtnTopologyEthernetPathData, $mwtnCommons) {

    return {
      restrict: 'E',
      replace: true,
      template: '<div id="cy" style="height: 750px; width: 100%;"></div>',
      controller: function () {

      },
      scope: {

      },
      link: function (scope, element, attrs, ctrl) {

        var cy = cytoscape({
          container: element[0],

          boxSelectionEnabled: false,
          autounselectify: true,

          style: mwtnTopologyEthernetPathData.styles,
          elements: mwtnTopologyEthernetPathData.elements,
          layout: {
            name: 'preset',
            padding: 5
          }
        });

        // @ Martin: Hier wird das Ereignis aus dem Service aboniert.
        //           Es ist möglich mehrere Ereignisse zu definieren.
        mwtnTopologyEthernetPathData.events.subscribe("elementsChanged", function (data) {

          // @Martin: cy aktualisiert sich mit Hilfe der Referenz auf die Elemente aus dem Service
          cy.json({
            elements: mwtnTopologyEthernetPathData.elements // oder data.elements
          });

        });

        // pathGraphData.events.subscribe("styleChanged", function () {
        //   cy.json({
        //      style: mwtnTopologyEthernetPathData.styles
        //   });
        // });

        cy.viewport({
          zoom: 0.5,
          pan: { x: 150, y: 100 }
        });

        var clearService = function () {
          var lable = cy.getElementById('label');
          lable.data('label', '');

          var pathState = ['working', 'protection', 'hidden'];
          pathState.map(function (state) {
            var selector = "[path = '" + state + "']";
            cy.elements(selector).map(function (element) {
              element.data('path', 'false');
            });
          });
        };

        var highlightService = function (service) {
          var lable = cy.getElementById('label');
          lable.data('label', service);

          var selector = "[service = '" + service + "']";
          // start and end service node (host, traffic analyser)
          cy.nodes(selector).map(function (node) {
            // console.log(node.id());
            node.data('path', 'working');
          });

          ['protection', 'working'].map(function (state) {
            selector = "[service = '" + service + "'][rule = '" + state + "']";
            cy.edges(selector).map(function (edge) {
              edge.connectedNodes().map(function (node) {
                node.data('path', edge.data('rule'));
              });
            });
            return state;
          }).reverse().map(function (state) {
            selector = "[path = '" + state + "']";
            cy.nodes(selector).connectedEdges().filter(function (edge) {
              return edge.data('service') === service || edge.data('layer') !== "ETH";
            }).map(function (edge) {
              edge.data('path', state);
            });
          });
        };
        var filterActiveMountPoints = function (mountpoints) {
          return mountpoints.filter(function (mountpoint) {
            if (!mountpoint) return false;
            // console.warn(mountpoint['node-id'], mountpoint['netconf-node-topology:connection-status']);
            return mountpoint['netconf-node-topology:connection-status'] === 'connected';
          }).map(function (mountpoint) {
            return mountpoint['node-id'];
          });
        };

        var setDevicesActive = function (nodeIds) {
          // console.warn(nodeIds);
          cy.nodes().filter(function (node) {
            node.data('active', 'false');
            return node.data('type') === 'device' && nodeIds.contains(node.data('id'));
          }).map(function (node) {
            node.data('active', 'true');
          });
        };

        var setAllDevicesInactive = function () {
          cy.nodes().map(function (node) {
            node.data('active', 'false');
          });
        };

        var setPortAndEdgedActive = function () {
          cy.edges().map(function (edge) {
            var active = 'true';
            edge.connectedNodes().map(function (port) {
              // console.log('  node', JSON.stringify(edge.data()));
              var parent = cy.getElementById(port.data('parent'));
              if (parent.data('active') === 'false') {
                port.data('active', 'false');
                edge.data('active', 'false');
              } else {
                port.data('active', 'true');
              }
            });
          });
        };

        var init = function () {
          var timerName = 'init ethernet';
          console.time(timerName);
          $mwtnCommons.getMountPoints().then(function (mountpoints) {
            var filtered = filterActiveMountPoints(mountpoints);
            setDevicesActive(filtered);
            setPortAndEdgedActive();
            console.timeEnd(timerName);
          }, function (error) {
            setAllDevicesInactive();
            setPortAndEdgedActive();
            console.timeEnd(timerName);
          });

        };
        init();

        cy.on('tap', function (event) {
          clearService();
          if (event.target !== cy) {
            if (event.target.data('service')) {
              highlightService(event.target.data('service'));
            }
          } else {
            init();
          }
        });
      }
    }
  }]);

  mwtnTopologyApp.controller("mwtnTopologyPortsGridController", ['$scope', '$timeout', '$state', '$mwtnCommons', '$mwtnTopology', 'uiGridConstants', 'mwtnTopologyEthernetPathData', function ($scope, $timeout, $state, $mwtnCommons, $mwtnTopology, uiGridConstants, mwtnTopologyEthernetPathData) {
    var vm = this;

    // The page number to show in the grid.
    var paginationPage = 1;
    // The page size.
    var paginationPageSize = 100;
    // The grid column object with current sorting informations.
    var sortColumn = null;
    // The grid column object with current sorting informations.
    var gridFilters = [];
    // caches all sites at the current grid page

    vm.gridOptions = Object.assign({}, $mwtnCommons.gridOptions, {
      showGridFooter: false, // disable the grid footer because the pagination component sets its own.
      paginationPageSizes: [10, 25, 50, 100],
      paginationPageSize: paginationPageSize,
      useExternalPagination: true,
      useExternalFiltering: true,
      useExternalSorting: true,
      totalItems: 0,
      columnDefs: [{
        field: "id",
        type: "string",
        displayName: "Id"
      },
      {
        field: "layer",
        type: "string",
        displayName: "Layer"
      },
      {
        field: "active",
        type: "string",
        displayName: "Active"
      }
      ],
      data: [],
      onRegisterApi: function (gridApi) {
        // http://ui-grid.info/docs/#/api/ui.grid.core.api:PublicApi
        vm.gridApi = gridApi;

        vm.gridApi.core.on.sortChanged($scope, function (grid, sortColumns) {
          // Save the current sort column for later use.
          sortColumn = (!sortColumns || sortColumns.length === 0) ?
            null :
            sortColumns[0];
          loadPage();
        });

        vm.gridApi.pagination.on.paginationChanged($scope, function (newPage, newPageSize) {
          // Save the pagination informations for later use.
          paginationPage = newPage;
          paginationPageSize = newPageSize;
          loadPage();
        });

        vm.gridApi.core.on.filterChanged($scope, function () {
          // Save the all filters for later use.
          var filters = [];
          this.grid.columns.forEach(function (col, ind) {
            if (col.filters[0] && col.filters[0].term) {
              filters.push({
                field: col.field,
                term: col.filters[0].term
              });
            }
          });
          gridFilters = filters;
          loadPage();
        });

        loadPage();
      }
    });

    /**
     * Calculates the page content of the grid and sets the values to the gridOprions.data object.
     */
    function loadPage() {

      // extract all ports        
      var ports = mwtnTopologyEthernetPathData.elements.nodes.filter(function (node, ind, arr) {
        return node && node.data && node.data.type === 'port';
      }).reduce(function (acc, cur, ind, arr) {
        if (cur.data) acc[cur.data.id] = cur.data;
        return acc;
      }, {});

      // get all port ids
      var portIds = Object.keys(ports);

      // apply the grid filters
      var tempData = portIds.filter(function (portId, ind, arr) {
        var port = ports[portId];
        return gridFilters.map(function (filter) {
          switch (filter.field) {
            case "active":
              return port[filter.field].toString().contains(filter.term);
            default:
              return port[filter.field].contains(filter.term);
          }
        }).and(true);
      }).map(function (portId) {
        var port = ports[portId];
        var orderBy;

        if (!sortColumn || !sortColumn.sort.direction) {
          return {
            id: port.id
          }
        }

        switch (sortColumn.field) {
          case "active":
            orderBy = port[sortColumn.field] ? 1 : 0;
            break;
          default:
            orderBy = port[sortColumn.field];
            break;
        }

        return {
          id: port.id,
          orderBy: orderBy
        };
      });

      if (sortColumn && sortColumn.sort.direction) {
        tempData.sort(function (left, right) {
          if (left === right || left.orderBy === right.orderBy) {
            return 0;
          }
          if (left.orderBy > right.orderBy) {
            return (sortColumn.sort.direction === uiGridConstants.ASC) ? 1 : -1;
          }
          return (sortColumn.sort.direction === uiGridConstants.ASC) ? -1 : 1;
        });
      }

      var maxPageNumber = Math.max(1, Math.ceil(tempData.length / paginationPageSize));
      var currentPage = Math.min(maxPageNumber, paginationPage);
      var orderedPortsAtCurrentPage = tempData.slice((currentPage - 1) * paginationPageSize, currentPage * paginationPageSize);

      portsAtCurrentPageCache = {};
      var orderedData = [];

      orderedPortsAtCurrentPage.forEach(function (orderedPort) {
        var port = ports[orderedPort.id];
        portsAtCurrentPageCache[port.id] = port;
        orderedData.push({
          id: orderedPort.id,
          layer: port.layer,
          active: port.active
        });
      });

      $timeout(function () {
        vm.gridOptions.data = orderedData;
        vm.gridOptions.totalItems = tempData.length;
      });
    }

    // subscribe to the elementsChanged event to reload the grid page if the data in the service has chenged      
    mwtnTopologyEthernetPathData.events.subscribe("elementsChanged", function (data) {
      loadPage();
    });

  }]);

  mwtnTopologyApp.directive("mwtnTopologyPortsGrid", [function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologyPortsGridController',
      controllerAs: 'vm',
      scope: {

      },
      templateUrl: 'src/app/mwtnTopology/templates/portsGrid.tpl.html'
    };
  }]);

  mwtnTopologyApp.controller("mwtnTopologyEthConnectionsGridController", ['$scope', '$timeout', '$state', '$mwtnCommons', '$mwtnTopology', 'uiGridConstants', 'mwtnTopologyEthernetPathData', function ($scope, $timeout, $state, $mwtnCommons, $mwtnTopology, uiGridConstants, mwtnTopologyEthernetPathData) {
    var vm = this;

    // The page number to show in the grid.
    var paginationPage = 1;
    // The page size.
    var paginationPageSize = 100;
    // The grid column object with current sorting informations.
    var sortColumn = null;
    // The grid column object with current sorting informations.
    var gridFilters = [];
    // caches all sites at the current grid page

    vm.gridOptions = Object.assign({}, $mwtnCommons.gridOptions, {
      showGridFooter: false, // disable the grid footer because the pagination component sets its own.
      paginationPageSizes: [10, 25, 50, 100],
      paginationPageSize: paginationPageSize,
      useExternalPagination: true,
      useExternalFiltering: true,
      useExternalSorting: true,
      totalItems: 0,
      columnDefs: [{
        field: "id",
        type: "string",
        displayName: "Id",
        width: 400
      },
      {
        field: "source",
        type: "string",
        displayName: "PortA",
        width: 200
      },
      {
        field: "target",
        type: "string",
        displayName: "PortZ",
        width: 200
      },
      {
        field: "layer",
        type: "string",
        displayName: "Layer",
        width: 80
      },
      {
        field: "service",
        type: "string",
        displayName: "Service",
        width: 150
      },
      {
        field: "rule",
        type: "string",
        displayName: "Rule",
        width: 150
      }
      ],
      data: [],
      onRegisterApi: function (gridApi) {
        // http://ui-grid.info/docs/#/api/ui.grid.core.api:PublicApi
        vm.gridApi = gridApi;

        vm.gridApi.core.on.sortChanged($scope, function (grid, sortColumns) {
          // Save the current sort column for later use.
          sortColumn = (!sortColumns || sortColumns.length === 0) ?
            null :
            sortColumns[0];
          loadPage();
        });

        vm.gridApi.pagination.on.paginationChanged($scope, function (newPage, newPageSize) {
          // Save the pagination informations for later use.
          paginationPage = newPage;
          paginationPageSize = newPageSize;
          loadPage();
        });

        vm.gridApi.core.on.filterChanged($scope, function () {
          // Save the all filters for later use.
          var filters = [];
          this.grid.columns.forEach(function (col, ind) {
            if (col.filters[0] && col.filters[0].term) {
              filters.push({
                field: col.field,
                term: col.filters[0].term
              });
            }
          });
          gridFilters = filters;
          loadPage();
        });

        loadPage();
      }
    });

    /**
     * Calculates the page content of the grid and sets the values to the gridOprions.data object.
     */
    function loadPage() {

      // extract all links        
      var links = mwtnTopologyEthernetPathData.elements.edges.filter(function (link, ind, arr) {
        // return true; // node && node.data && node.data.type === 'port'; 
        return link.data.layer === 'ETH';
      }).reduce(function (acc, cur, ind, arr) {
        if (cur.data) {
          acc[cur.data.id] = cur.data;
        }
        return acc;
      }, {});

      // get all relevant link ids
      var linkIds = Object.keys(links);

      // apply the grid filters
      var tempData = linkIds.filter(function (linkId, ind, arr) {
        var link = links[linkId];
        return gridFilters.map(function (filter) {
          switch (filter.field) {
            default:
              return link[filter.field].contains(filter.term);
          }
        }).and(true);
      }).map(function (linkId) {
        var link = links[linkId];
        var orderBy;

        if (!sortColumn || !sortColumn.sort.direction) {
          return {
            id: link.id
          }
        }

        switch (sortColumn.field) {
          default:
            orderBy = link[sortColumn.field];
            break;
        }

        return {
          id: link.id,
          orderBy: orderBy
        };
      });

      if (sortColumn && sortColumn.sort.direction) {
        tempData.sort(function (left, right) {
          if (left === right || left.orderBy === right.orderBy) {
            return 0;
          }
          if (left.orderBy > right.orderBy) {
            return (sortColumn.sort.direction === uiGridConstants.ASC) ? 1 : -1;
          }
          return (sortColumn.sort.direction === uiGridConstants.ASC) ? -1 : 1;
        });
      }

      var maxPageNumber = Math.max(1, Math.ceil(tempData.length / paginationPageSize));
      var currentPage = Math.min(maxPageNumber, paginationPage);
      var orderedLinksAtCurrentPage = tempData.slice((currentPage - 1) * paginationPageSize, currentPage * paginationPageSize);

      linksAtCurrentPageCache = {};
      var orderedData = [];

      orderedLinksAtCurrentPage.forEach(function (orderedLink) {
        var link = links[orderedLink.id];
        linksAtCurrentPageCache[link.id] = link;
        orderedData.push({
          id: orderedLink.id,
          source: link.source,
          target: link.target,
          layer: link.layer,
          service: link.service,
          rule: link.rule
        });
      });

      $timeout(function () {
        vm.gridOptions.data = orderedData;
        vm.gridOptions.totalItems = tempData.length;
      });
    }

    // subscribe to the elementsChanged event to reload the grid page if the data in the service has chenged      
    var subscription = mwtnTopologyEthernetPathData.events.subscribe("elementsChanged", function (data) {
      loadPage();
      // to unsubscribe call subscription.remove();
    });

  }]);

  mwtnTopologyApp.directive("mwtnTopologyEthConnectionsGrid", [function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologyEthConnectionsGridController',
      controllerAs: 'vm',
      scope: {

      },
      templateUrl: 'src/app/mwtnTopology/templates/ethConnectionsGrid.tpl.html'
    };
  }]);

  /********************************************* IEEE 1588v2 (PTP) **************************/

  mwtnTopologyApp.controller('mwtnTopologyIeee1588ViewController', ['$scope', '$q', '$timeout', '$state', '$window', '$mwtnTopology', function ($scope, $q, $timeout, $state, $window, $mwtnTopology) {
    var vm = this;
    vm.status = {
      topologyIsOpen: false,
      portsOpen: false,
      ethConnectionsIsOpen: false
    }

    $scope.$watchCollection(function () { return [vm.status.topologyIsOpen, vm.status.portsOpen, vm.status.ethConnectionsIsOpen] }, function (newVal, oldVal) {
      if (newVal[1] || newVal[2]) {
        $timeout(function () {
          $window.dispatchEvent(new Event("resize"));
        });
      }
    });
  }]);

  mwtnTopologyApp.directive('mwtnTopologyIeee1588View', function () {
    return {
      restrict: 'E',
      controller: 'mwtnTopologyIeee1588ViewController',
      controllerAs: 'vm',
      bindToController: true,
      templateUrl: 'src/app/mwtnTopology/templates/ieee1588View.tpl.html',
      scope: {

      }
    };
  });

  mwtnTopologyApp.factory("mwtnTopologyIeee1588PathData", function () {
    var colors = {
      root: '#f54',
      port: '#377',
      device: '#252',
      site: '#525',
      edge: '#49a',
      white: '#eed',
      grey: '#555',
      selected: '#ff0'
    };

    var styles = [
      {
        selector: 'node',
        css: {
          'content': 'data(label)',
          'text-valign': 'center',
          'text-halign': 'center',
          'background-color': '#aaaaaa',
          'border-color': '#000000',
          'border-width': '1px',
          'color': '#ffffff'
        }
      },
      {
        selector: '$node > node',
        css: {
          'shape': 'roundrectangle',
          'padding-top': '10px',
          'padding-left': '10px',
          'padding-bottom': '10px',
          'padding-right': '10px',
          'text-valign': 'top',
          'text-halign': 'center',
          'background-color': '#eeeeee',
          'color': '#444444',
          'border-color': '#888888'
        }
      },
      {
        selector: 'node[type = "site"]',
        css: {
          'shape': 'roundrectangle',
          'padding-top': '10px',
          'padding-left': '10px',
          'padding-bottom': '10px',
          'padding-right': '10px',
          'text-valign': 'center',
          'text-halign': 'center',
          'background-color': '#fefefe',
          'color': '#444444',
          'border-color': '#888888',
          'font-weight': 'bold'
        }
      },
      {
        selector: 'node[type = "ptp-clock"][active = "true"]',
        css: {
          'background-color': '#316ac5',
          'background-opacity': '0.2',
          'border-color': '#316ac5',
          'border-opacity': '0.8',
          'border-width': '2px',
          'color': '#444444'
        }
      },
      {
        selector: 'node[type = "port"][active = "true"]',
        css: {
          'background-opacity': '1.0',
        }
      },
      {
        selector: 'node[active = "false"]',
        css: {
          'background-opacity': '0.3',
          'border-opacity': '0.5'
        }
      },
      {
        selector: 'node[path = "true"]',
        css: {
          'background-color': '#ff00ff',
          'background-opacity': '0.9',
          'border-color': '#880088',
        }
      },
      {
        selector: '$node > node[path = "true"]',
        css: {
          'background-color': '#ff00ff',
          'background-opacity': '0.3',
          'border-color': '#ff00ff',
          'border-opacity': '1.0',
          'border-width': '2px',
        }
      },
      {
        selector: 'edge',
        css: {
          'content': 'data(id)',
          'target-arrow-shape': 'triangle',
          'line-color': '#666666',
          'color': '#444444'
        }
      },
      {
        selector: 'edge[active = "false"]',
        css: {
          'line-color': '#cccccc',
          'text-opacity': '0.9'
        }
      },
      {
        selector: 'edge[path = "true"]',
        css: {
          'line-color': '#ff00ff',
          'width': '5px'
        }
      },
      {
        selector: ':selected',
        css: {
          'background-color': 'black',
          'line-color': 'black',
          'target-arrow-color': 'black',
          'source-arrow-color': 'black'
        }
      }];

    var elements = {
      nodes: [
        { data: { id: 'north', label: 'north', type: 'site', latitude: 50.734916, longitude: 7.137636 } },
        { data: { id: 'north-east', label: 'north-east', type: 'site', latitude: 50.733028, longitude: 7.151086 } },
        { data: { id: 'north-west', label: 'north-west', type: 'site', latitude: 50.730230, longitude: 7.126017 } },
        { data: { id: 'east', label: 'east', type: 'site', latitude: 50.725672, longitude: 7.158488 } },
        { data: { id: 'west', label: 'west', type: 'site', latitude: 50.721914, longitude: 7.120521 } },
        { data: { id: 'south-east', label: 'south-east', type: 'site', latitude: 50.717158, longitude: 7.155506 } },
        { data: { id: 'south-west', label: 'south-west', type: 'site', latitude: 50.714359, longitude: 7.130437 } },
        { data: { id: 'south', label: 'south', type: 'site', latitude: 50.712472, longitude: 7.143887 } },

        {  data:  {  id:  'ADVA-A',  label :  'ADVA-A' ,  parent :  'west', type: 'ptp-clock', base64: 'AIDq//6MFzA=', hex: '0x47 0x4D 0x30 0x30 0x30 0x30 0x30 0x31', active: 'true' , latitude: 50.721914, longitude: 7.120521, parentDs: '', path: 'false' }   },
        {  data:  {  id:  'ADVA-B',  label :  'ADVA-B' ,  parent :  'north-west', type: 'ptp-clock', base64: 'AIDq//6MGDA=', hex: '0x47 0x4D 0x30 0x30 0x30 0x30 0x30 0x32', active: 'true' , latitude: 50.730230, longitude: 7.126017, parentDs: '', path: 'false' }   },
        {  data:  {  id:  'ADVA-Y',  label :  'ADVA-Y' ,  parent :  'north-east', type: 'ptp-clock', base64: 'AIDqb0hQAAE=', hex: '0x53 0x4C 0x41 0x56 0x45 0x30 0x30 0x31', active: 'true' , latitude: 50.733028, longitude: 7.151086, parentDs: 'NEC-Z#4', path: 'false' }   },
        {  data:  {  id:  'ADVA-Z',  label :  'ADVA-Z' ,  parent :  'south', type: 'ptp-clock', base64: 'AIDqb0mAAAA=', hex: '0x53 0x4C 0x41 0x56 0x45 0x30 0x30 0x32', active: 'true' , latitude: 50.712472, longitude: 7.143887, parentDs: 'Huawei-Z#3', path: 'false' }   },
        {  data:  {  id:  'Ericsson-A',  label :  'Ericsson-A' ,  parent :  'north-east', type: 'ptp-clock', base64: 'BE4G//4jsio=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x31', active: 'true' , latitude: 50.733028, longitude: 7.151086, parentDs: 'NEC-Z#2', path: 'false' }   },
        {  data:  {  id:  'Ericsson-Z',  label :  'Ericsson-Z' ,  parent :  'east', type: 'ptp-clock', base64: 'BE4G//4jtBA=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x32', active: 'true' , latitude: 50.725672, longitude: 7.158488, parentDs: 'Ericsson-A#6', path: 'false' }   },
        {  data:  {  id:  'Huawei-A',  label :  'Huawei-A' ,  parent :  'south-west', type: 'ptp-clock', base64: 'ACWeIQAJq6A=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x33', active: 'true' , latitude: 50.714359, longitude: 7.130437, parentDs: 'Nokia-Z33', path: 'false' }   },
        {  data:  {  id:  'Huawei-Z',  label :  'Huawei-Z' ,  parent :  'south', type: 'ptp-clock', base64: 'ACWeIQAJAm8=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x34', active: 'true' , latitude: 50.712472, longitude: 7.143887, parentDs: 'Huawei-A#6', path: 'false' }   },
        {  data:  {  id:  'NEC-A',  label :  'NEC-A' ,  parent :  'north', type: 'ptp-clock', base64: 'jN+d//5XDuA=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x35', active: 'true' , latitude: 50.734916, longitude: 7.137636, parentDs: 'ZTE-Z#5', path: 'false' }   },
        {  data:  {  id:  'NEC-Z',  label :  'NEC-Z' ,  parent :  'north-east', type: 'ptp-clock', base64: 'jN+d//5XDwA=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x36', active: 'true' , latitude: 50.733028, longitude: 7.151086, parentDs: 'NEC-A#6', path: 'false' }   },
        {  data:  {  id:  'Nokia-A',  label :  'Nokia-A' ,  parent :  'west', type: 'ptp-clock', base64: 'ACGu//4Crac=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x37', active: 'true' , latitude: 50.721914, longitude: 7.120521, parentDs: 'ADVA-A#1', path: 'false' }   },
        {  data:  {  id:  'Nokia-Z',  label :  'Nokia-Z' ,  parent :  'south-west', type: 'ptp-clock', base64: 'ACGu//4CrZY=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x38', active: 'true' , latitude: 50.714359, longitude: 7.130437, parentDs: 'Nokia-A#6', path: 'false' }   },
        {  data:  {  id:  'SIAE-A',  label :  'SIAE-A' ,  parent :  'south', type: 'ptp-clock', base64: 'ALCs//4R6K8=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x30 0x39', active: 'true' , latitude: 50.712472, longitude: 7.143887, parentDs: 'Huawei-Z#5', path: 'false' }   },
        {  data:  {  id:  'SIAE-Z',  label :  'SIAE-Z' ,  parent :  'south-east', type: 'ptp-clock', base64: 'ALCs//4RucQ=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x31 0x30', active: 'true' , latitude: 50.717158, longitude: 7.155506, parentDs: 'SIAE-A#6', path: 'false' }   },
        {  data:  {  id:  'ZTE-A',  label :  'ZTE-A' ,  parent :  'north-west', type: 'ptp-clock', base64: 'DBJi//7Zdpo=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x31 0x31', active: 'true' , latitude: 50.730230, longitude: 7.126017, parentDs: 'ADVA-B#2', path: 'false' }   },
        {  data:  {  id:  'ZTE-Z',  label :  'ZTE-Z' ,  parent :  'north', type: 'ptp-clock', base64: 'DBJi//7ZdqQ=', hex: '0x42 0x43 0x30 0x30 0x30 0x30 0x31 0x32', active: 'true' , latitude: 50.734916, longitude: 7.137636, parentDs: 'ZTE-A#6', path: 'false' }   },

        { data: { id: 'ADVA-A#1', label: '#1', parent: 'ADVA-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.721914, longitude: 7.120521 }, position: { x: 124, y: 564 } },
        { data: { id: 'ADVA-A#2', label: '#2', parent: 'ADVA-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.721914, longitude: 7.120521 }, position: { x: 124, y: 507 } },
        { data: { id: 'ADVA-B#1', label: '#1', parent: 'ADVA-B', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.730230, longitude: 7.126017 }, position: { x: 380, y: 381 } },
        { data: { id: 'ADVA-B#2', label: '#2', parent: 'ADVA-B', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.730230, longitude: 7.126017 }, position: { x: 380, y: 301 } },
        { data: { id: 'ADVA-Y#1', label: '#1', parent: 'ADVA-Y', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1392, y: 229 } },
        { data: { id: 'ADVA-Y#2', label: '#2', parent: 'ADVA-Y', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1449, y: 172 } },
        { data: { id: 'ADVA-Z#1', label: '#1', parent: 'ADVA-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1139, y: 1001 } },
        { data: { id: 'ADVA-Z#2', label: '#2', parent: 'ADVA-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1196, y: 944 } },
        { data: { id: 'Ericsson-A#5', label: '#5', parent: 'Ericsson-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1605, y: 172 } },
        { data: { id: 'Ericsson-A#6', label: '#6', parent: 'Ericsson-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1664, y: 226 } },
        { data: { id: 'Ericsson-Z#6', label: '#6', parent: 'Ericsson-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.725672, longitude: 7.158488 }, position: { x: 1765, y: 325 } },
        { data: { id: 'Huawei-A#5', label: '#5', parent: 'Huawei-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.714359, longitude: 7.130437 }, position: { x: 605, y: 1028 } },
        { data: { id: 'Huawei-A#6', label: '#6', parent: 'Huawei-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.714359, longitude: 7.130437 }, position: { x: 685, y: 1028 } },
        { data: { id: 'Huawei-Z#3', label: '#3', parent: 'Huawei-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1046, y: 1094 } },
        { data: { id: 'Huawei-Z#4', label: '#4', parent: 'Huawei-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.712472, longitude: 7.143887 }, position: { x: 989, y: 1094 } },
        { data: { id: 'Huawei-Z#5', label: '#5', parent: 'Huawei-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1058, y: 1123 } },
        { data: { id: 'Huawei-Z#6', label: '#6', parent: 'Huawei-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.712472, longitude: 7.143887 }, position: { x: 978, y: 1123 } },
        { data: { id: 'NEC-A#3', label: '#3', parent: 'NEC-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.734916, longitude: 7.137636 }, position: { x: 955, y: -52 } },
        { data: { id: 'NEC-A#6', label: '#6', parent: 'NEC-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.734916, longitude: 7.137636 }, position: { x: 1035, y: -52 } },
        { data: { id: 'NEC-Z#2', label: '#2', parent: 'NEC-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1449, y: -41 } },
        { data: { id: 'NEC-Z#3', label: '#3', parent: 'NEC-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1392, y: 16 } },
        { data: { id: 'NEC-Z#4', label: '#4', parent: 'NEC-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1449, y: 16 } },
        { data: { id: 'NEC-Z#6', label: '#6', parent: 'NEC-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.733028, longitude: 7.151086 }, position: { x: 1382, y: -23 } },
        { data: { id: 'Nokia-A13', label: '13', parent: 'Nokia-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.721914, longitude: 7.120521 }, position: { x: 40, y: 801 } },
        { data: { id: 'Nokia-A34', label: '34', parent: 'Nokia-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.721914, longitude: 7.120521 }, position: { x: 28, y: 772 } },
        { data: { id: 'Nokia-A#6', label: '#6', parent: 'Nokia-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.721914, longitude: 7.120521 }, position: { x: 28, y: 829 } },
        { data: { id: 'Nokia-Z33', label: '33', parent: 'Nokia-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.714359, longitude: 7.130437 }, position: { x: 385, y: 1028 } },
        { data: { id: 'Nokia-Z#6', label: '#6', parent: 'Nokia-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.714359, longitude: 7.130437 }, position: { x: 305, y: 1028 } },
        { data: { id: 'SIAE-A#5', label: '#5', parent: 'SIAE-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1278, y: 1123 } },
        { data: { id: 'SIAE-A#6', label: '#6', parent: 'SIAE-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.712472, longitude: 7.143887 }, position: { x: 1346, y: 1094 } },
        { data: { id: 'SIAE-Z#6', label: '#6', parent: 'SIAE-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.717158, longitude: 7.155506 }, position: { x: 1588, y: 838 } },
        { data: { id: 'ZTE-A#3', label: '#3', parent: 'ZTE-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.730230, longitude: 7.126017 }, position: { x: 380, y: 168 } },
        { data: { id: 'ZTE-A#4', label: '#4', parent: 'ZTE-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.730230, longitude: 7.126017 }, position: { x: 345, y: 148 } },
        { data: { id: 'ZTE-A#6', label: '#6', parent: 'ZTE-A', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.730230, longitude: 7.126017 }, position: { x: 408, y: 99 } },
        { data: { id: 'ZTE-Z#5', label: '#5', parent: 'ZTE-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.734916, longitude: 7.137636 }, position: { x: 747, y: -27 } },
        { data: { id: 'ZTE-Z#6', label: '#6', parent: 'ZTE-Z', type: 'port', layer: 'PTP', active: 'true', path: 'false', latitude: 50.734916, longitude: 7.137636 }, position: { x: 667, y: -27 } },

      ],
      edges: [
        { data: { id: 'ERI1', source: 'Ericsson-A#6', target: 'Ericsson-Z#6', label: 'ERI1', layer: 'PTP', active: 'true' } },
        { data: { id: '71', source: 'Huawei-A#6', target: 'Huawei-Z#6', label: '71', layer: 'PTP', active: 'true' } },
        { data: { id: '81', source: 'NEC-A#6', target: 'NEC-Z#6', label: '81', layer: 'PTP', active: 'true' } },
        { data: { id: '91', source: 'Nokia-A#6', target: 'Nokia-Z#6', label: '91', layer: 'PTP', active: 'true' } },
        { data: { id: '101', source: 'SIAE-A#6', target: 'SIAE-Z#6', label: '101', layer: 'PTP', active: 'true' } },
        { data: { id: '111', source: 'ZTE-A#6', target: 'ZTE-Z#6', label: '111', layer: 'PTP', active: 'true' } },

        { data: { id: 'ETY01', source: 'ADVA-A#1', target: 'Nokia-A34', label: 'ADVA-A#1-Nokia-A34', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY02', source: 'ADVA-A#2', target: 'ZTE-A#4', label: 'ADVA-A#2-ZTE-A#4', layer: 'PTP', active: 'false' } },
        { data: { id: 'ETY03', source: 'ADVA-B#1', target: 'Nokia-A13', label: 'ADVA-B#1-Nokia-A13', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY04', source: 'ADVA-B#2', target: 'ZTE-A#3', label: 'ADVA-B#2-ZTE-A#3', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY05', source: 'ADVA-Y#1', target: 'Huawei-Z#4', label: 'ADVA-Y#1-Huawei-Z#4', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY06', source: 'ADVA-Y#2', target: 'NEC-Z#4', label: 'ADVA-Y#2-NEC-Z#4', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY09', source: 'ADVA-Z#1', target: 'Huawei-Z#3', label: 'ADVA-Z#1-Huawei-Z#3', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY10', source: 'ADVA-Z#2', target: 'NEC-Z#3', label: 'ADVA-Z#2-NEC-Z#3', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY21', source: 'Ericsson-A#5', target: 'NEC-Z#2', label: 'Ericsson-A#5-NEC-Z#2', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY24', source: 'Huawei-A#5', target: 'Nokia-Z33', label: 'Huawei-A#5-Nokia-Z33', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY25', source: 'Huawei-Z#5', target: 'SIAE-A#5', label: 'Huawei-Z#5-SIAE-A#5', layer: 'PTP', active: 'true' } },
        { data: { id: 'ETY26', source: 'NEC-A#3', target: 'ZTE-Z#5', label: 'NEC-A#3-ZTE-Z#5', layer: 'PTP', active: 'true' } },

      ]
    };

    var events = eventsFabric();

    var result = {
      colors: colors,
      elements: elements,
      styles: styles,
      events: events
    };

    var someMethodChangingTheElements = function () {
      // @Martin: hier kannst Du die Elements ändern, anschließend mußt Du das Ereignis veröffentlichen
      //          das Ereigniss wird in der Directive aufgefangen und die Grig wird neu gezeichnet

      // Hinweis: Die Reihenfolge muss so bleiben und du kannst NUR result.elements ändern.

      events.publish("elementsChanged", {
        elements: result.elements
      });
    };

    return result;
  });

  mwtnTopologyApp.directive("mwtnTopologyIeee1588PathGraph", ["mwtnTopologyIeee1588PathData", "$mwtnPtp", function (mwtnTopologyIeee1588PathData, $mwtnPtp) {

    return {
      restrict: 'E',
      replace: true,
      template: '<div style="height: 750px; width: 100%;"></div>',
      controller: function () {

      },
      scope: {

      },
      link: function (scope, element, attrs, ctrl) {

        var cy = cytoscape({
          container: element[0],

          boxSelectionEnabled: false,
          autounselectify: true,

          style: mwtnTopologyIeee1588PathData.styles,
          elements: mwtnTopologyIeee1588PathData.elements,
          layout: {
            name: 'preset',
            padding: 5
          }
        });

        // @ Martin: Hier wird das Ereignis aus dem Service aboniert.
        //           Es ist möglich mehrere Ereignisse zu definieren.
        mwtnTopologyIeee1588PathData.events.subscribe("elementsChanged", function (data) {

          // @Martin: cy aktualisiert sich mit Hilfe der Referenz auf die Elemente aus dem Service
          cy.json({
            elements: mwtnTopologyIeee1588PathData.elements // oder data.elements
          });
        });

        // pathGraphData.events.subscribe("styleChanged", function () {
        //   cy.json({
        //      style: mwtnTopologyIeee1588PathData.styles
        //   });
        // });

        cy.viewport({
          zoom: 0.5,
          pan: { x: 150, y: 100 }
        });

        var clearPtpPath = function () {
          var selector = "[path = 'true']";
          cy.elements(selector).map(function (element) {
            element.data('path', 'false');
          });
        };

        var highlightPtpMaster = function (id) {
          var selector = "[id = '" + id + "']";
          cy.nodes(selector).map(function (node) {
            if (node.data('parentDs') && node.data('parentDs') != '') {
              // console.warn('parentDs', node.data('parentDs'));
              var parentNode = node.data('parentDs').slice(0, -2);
              if (parentNode !== id) {
                highlightPtpMaster(parentNode);

                // highlight edge
                selector = "[id = '" + node.data('parentDs') + "']";
                cy.nodes(selector).connectedEdges().map(function (edge) {
                  edge.data('path', 'true');
                  edge.connectedNodes().map(function (node) {
                    node.data('path', 'true');
                  });
                });
              }
            }
          });
        };

        var setAllDevicesInactive = function () {
          cy.nodes().map(function (node) {
            node.data('active', 'false');
          });
        };

        var setPortAndEdgedActive = function () {
          cy.edges().map(function (edge) {
            var active = 'true';
            edge.connectedNodes().map(function (port) {
              // console.log('  node', JSON.stringify(edge.data()));
              var parent = cy.getElementById(port.data('parent'));
              if (parent.data('active') === 'false') {
                port.data('active', 'false');
                edge.data('active', 'false');
              } else {
                port.data('active', 'true');
              }
            });
          });
        };

        var init = function () {
          setAllDevicesInactive();
          $mwtnPtp.getPtpClocks().then(function (clocks) {
            // setDevicesActive(Object.keys(clocks));
            var hex = true;
            // update clock ids first
            Object.keys(clocks).map(function (key) {
              var clock = clocks[key];
              var graphClock = cy.getElementById(key);
              graphClock.data('active', 'true')
              graphClock.data('base64', clock.getIdentity());
              graphClock.data('hex', clock.getIdentity(hex));
            });
            // update rest
            Object.keys(clocks).map(function (key) {
              var clock = clocks[key];
              var graphClock = cy.getElementById(key);
              var graphParentDs = nodeId(clock.getParent().slice(0, -2));
              graphClock.data('parentDs', graphParentDs + clock.getParent().slice(-2));
              graphClock.data('grandMaster', nodeId(clock.getGrandMaster()));

              // clock.getPtpPorts().map(function(port){
              //   // console.warn(port.getId(), port.getNumber(), port.getState(), port.isSlave(), port.isMaster(), port.getLogicalTerminationPointReference());
              //   var portKey = [key, port.getNumber() < 10 ? '#' : '', port.getNumber()].join('');
              //   var graphPort = cy.getElementById(portKey);
              //   // console.warn(JSON.stringify(graphPort.data()));
              //   if (graphPort === undefined) {
              //     console.error('PtpPort not found in graph:' , portKey);
              //   } else {
              //     console.info('PtpPort found in graph:' , portKey);
              //   }

              // });
            });
            setPortAndEdgedActive();
          }, function (error) {
            setPortAndEdgedActive();
            console.error(JSON.stringify(error));
          });
        };
        // init();

        var getNodeId = function (base64) {
          if (base64 === undefined || base64 === '') return '';

          var selector = "[type = 'ptp-clock']";
          var result = cy.nodes(selector).filter(function (graphClock) {
            // console.error(base64, graphClock.data('base64'), graphClock.data('base64') === base64);
            return graphClock.data('base64') === base64;
          });
          if (result.length === 0) {
            console.warn('Clock', base64, 'not found!');
            return '';
          } else {
            return result[0].id();
          }
        };

        var getParentClock = function (nodeId) {
          $mwtnPtp.getParent(nodeId).then(function (parentPortIdentity) {
            var parentNode = getNodeId(parentPortIdentity['clock-identity']);
            console.log(JSON.stringify(parentPortIdentity), parentNode);
            if (parentNode) {
              getParentClock(parentNode);
            }
          });
        };

        cy.on('tap', function (event) {
          console.log('tap');
          clearPtpPath();
          if (event.target !== cy) {
            if (event.target.data('type') === 'ptp-clock') {
              getParentClock(event.target.id());
              //   highlightPtpMaster(event.target.id());
            } else if (event.target.data('type') === 'port') {
              var parent = cy.getElementById(event.target.data('parent'));
              // highlightPtpMaster(parent.id());
              getParentClock(event.target.id());
            }
          } else {
            // init();
          }
        });

      }
    }
  }]);

  mwtnTopologyApp.controller("mwtnTopologyClocksGridController", ['$scope', '$timeout', '$state', '$mwtnCommons', '$mwtnTopology', 'uiGridConstants', 'mwtnTopologyIeee1588PathData', function ($scope, $timeout, $state, $mwtnCommons, $mwtnTopology, uiGridConstants, mwtnTopologyIeee1588PathData) {
    var vm = this;

    // The page number to show in the grid.
    var paginationPage = 1;
    // The page size.
    var paginationPageSize = 100;
    // The grid column object with current sorting informations.
    var sortColumn = null;
    // The grid column object with current sorting informations.
    var gridFilters = [];
    // caches all sites at the current grid page

    vm.gridOptions = Object.assign({}, $mwtnCommons.gridOptions, {
      showGridFooter: false, // disable the grid footer because the pagination component sets its own.
      paginationPageSizes: [10, 25, 50, 100],
      paginationPageSize: paginationPageSize,
      useExternalPagination: true,
      useExternalFiltering: true,
      useExternalSorting: true,
      totalItems: 0,
      columnDefs: [{
        field: "id",
        type: "string",
        displayName: "Node id",
        width: 120
      },
      {
        field: "hex",
        type: "string",
        displayName: "Clock identity in hex",
        width: 300
      }, {
        field: "base64",
        type: "string",
        displayName: "... in base64",
        width: 150
      },
      {
        field: "parentDs",
        type: "string",
        displayName: "parentDs",
        width: 150
      },
      {
        field: "grandMaster",
        type: "string",
        displayName: "grandmaster",
        width: 300
      },
      {
        field: "active",
        type: "string",
        displayName: "Active",
        width: 80
      }
      ],
      data: [],
      onRegisterApi: function (gridApi) {
        // http://ui-grid.info/docs/#/api/ui.grid.core.api:PublicApi
        vm.gridApi = gridApi;

        vm.gridApi.core.on.sortChanged($scope, function (grid, sortColumns) {
          // Save the current sort column for later use.
          sortColumn = (!sortColumns || sortColumns.length === 0) ?
            null :
            sortColumns[0];
          loadPage();
        });

        vm.gridApi.pagination.on.paginationChanged($scope, function (newPage, newPageSize) {
          // Save the pagination informations for later use.
          paginationPage = newPage;
          paginationPageSize = newPageSize;
          loadPage();
        });

        vm.gridApi.core.on.filterChanged($scope, function () {
          // Save the all filters for later use.
          var filters = [];
          this.grid.columns.forEach(function (col, ind) {
            if (col.filters[0] && col.filters[0].term) {
              filters.push({
                field: col.field,
                term: col.filters[0].term
              });
            }
          });
          gridFilters = filters;
          loadPage();
        });

        loadPage();
      }
    });

    /**
     * Calculates the page content of the grid and sets the values to the gridOprions.data object.
     */
    function loadPage() {

      // extract all ports        
      var ports = mwtnTopologyIeee1588PathData.elements.nodes.filter(function (node, ind, arr) {
        return node && node.data && node.data.type === 'ptp-clock';
      }).reduce(function (acc, cur, ind, arr) {
        if (cur.data) acc[cur.data.id] = cur.data;
        return acc;
      }, {});

      // get all port ids
      var portIds = Object.keys(ports);

      // apply the grid filters
      var tempData = portIds.filter(function (portId, ind, arr) {
        var port = ports[portId];
        return gridFilters.map(function (filter) {
          switch (filter.field) {
            case "active":
              return port[filter.field].toString().contains(filter.term);
            default:
              return port[filter.field].contains(filter.term);
          }
        }).and(true);
      }).map(function (portId) {
        var port = ports[portId];
        var orderBy;

        if (!sortColumn || !sortColumn.sort.direction) {
          return {
            id: port.id
          }
        }

        switch (sortColumn.field) {
          case "active":
            orderBy = port[sortColumn.field] ? 1 : 0;
            break;
          default:
            orderBy = port[sortColumn.field];
            break;
        }

        return {
          id: port.id,
          orderBy: orderBy
        };
      });

      if (sortColumn && sortColumn.sort.direction) {
        tempData.sort(function (left, right) {
          if (left === right || left.orderBy === right.orderBy) {
            return 0;
          }
          if (left.orderBy > right.orderBy) {
            return (sortColumn.sort.direction === uiGridConstants.ASC) ? 1 : -1;
          }
          return (sortColumn.sort.direction === uiGridConstants.ASC) ? -1 : 1;
        });
      }

      var maxPageNumber = Math.max(1, Math.ceil(tempData.length / paginationPageSize));
      var currentPage = Math.min(maxPageNumber, paginationPage);
      var orderedPortsAtCurrentPage = tempData.slice((currentPage - 1) * paginationPageSize, currentPage * paginationPageSize);

      portsAtCurrentPageCache = {};
      var orderedData = [];

      orderedPortsAtCurrentPage.forEach(function (orderedPort) {
        var port = ports[orderedPort.id]; // TODO [sko] varible port should be renamed to clock
        portsAtCurrentPageCache[port.id] = port;
        orderedData.push({
          id: orderedPort.id,
          layer: port.layer,
          active: port.active,
          hex: port.hex,
          base64: port.base64,
          parentDs: port.parentDs,
          grandMaster: port.grandMaster
        });
      });

      $timeout(function () {
        vm.gridOptions.data = orderedData;
        vm.gridOptions.totalItems = tempData.length;
      });
    }

    // subscribe to the elementsChanged event to reload the grid page if the data in the service has chenged      
    mwtnTopologyIeee1588PathData.events.subscribe("elementsChanged", function (data) {
      loadPage();
    });

  }]);

  mwtnTopologyApp.directive("mwtnTopologyClocksGrid", [function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologyClocksGridController',
      controllerAs: 'vm',
      scope: {

      },
      templateUrl: 'src/app/mwtnTopology/templates/clocksGrid.tpl.html'
    };
  }]);

  mwtnTopologyApp.controller("mwtnTopologyPtpLinksGridController", ['$scope', '$timeout', '$state', '$mwtnCommons', '$mwtnTopology', 'uiGridConstants', 'mwtnTopologyIeee1588PathData', function ($scope, $timeout, $state, $mwtnCommons, $mwtnTopology, uiGridConstants, mwtnTopologyIeee1588PathData) {
    var vm = this;

    // The page number to show in the grid.
    var paginationPage = 1;
    // The page size.
    var paginationPageSize = 100;
    // The grid column object with current sorting informations.
    var sortColumn = null;
    // The grid column object with current sorting informations.
    var gridFilters = [];
    // caches all sites at the current grid page

    vm.gridOptions = Object.assign({}, $mwtnCommons.gridOptions, {
      showGridFooter: false, // disable the grid footer because the pagination component sets its own.
      paginationPageSizes: [10, 25, 50, 100],
      paginationPageSize: paginationPageSize,
      useExternalPagination: true,
      useExternalFiltering: true,
      useExternalSorting: true,
      totalItems: 0,
      columnDefs: [{
        field: "id",
        type: "string",
        displayName: "Id"
      },
      {
        field: "source",
        type: "string",
        displayName: "PortA"
      },
      {
        field: "target",
        type: "string",
        displayName: "PortZ"
      },
      {
        field: "active",
        type: "string",
        displayName: "active"
      }
      ],
      data: [],
      onRegisterApi: function (gridApi) {
        // http://ui-grid.info/docs/#/api/ui.grid.core.api:PublicApi
        vm.gridApi = gridApi;

        vm.gridApi.core.on.sortChanged($scope, function (grid, sortColumns) {
          // Save the current sort column for later use.
          sortColumn = (!sortColumns || sortColumns.length === 0) ?
            null :
            sortColumns[0];
          loadPage();
        });

        vm.gridApi.pagination.on.paginationChanged($scope, function (newPage, newPageSize) {
          // Save the pagination informations for later use.
          paginationPage = newPage;
          paginationPageSize = newPageSize;
          loadPage();
        });

        vm.gridApi.core.on.filterChanged($scope, function () {
          // Save the all filters for later use.
          var filters = [];
          this.grid.columns.forEach(function (col, ind) {
            if (col.filters[0] && col.filters[0].term) {
              filters.push({
                field: col.field,
                term: col.filters[0].term
              });
            }
          });
          gridFilters = filters;
          loadPage();
        });

        loadPage();
      }
    });

    /**
     * Calculates the page content of the grid and sets the values to the gridOprions.data object.
     */
    function loadPage() {

      // extract all links        
      var links = mwtnTopologyIeee1588PathData.elements.edges.filter(function (node, ind, arr) {
        return true; // node && node.data && node.data.type === 'port';
      }).reduce(function (acc, cur, ind, arr) {
        if (cur.data) {
          acc[cur.data.id] = cur.data;
        }
        return acc;
      }, {});

      // get all link ids
      var linkIds = Object.keys(links);

      // apply the grid filters
      var tempData = linkIds.filter(function (linkId, ind, arr) {
        var link = links[linkId];
        return gridFilters.map(function (filter) {
          switch (filter.field) {
            default:
              return link[filter.field].contains(filter.term);
          }
        }).and(true);
      }).map(function (linkId) {
        var link = links[linkId];
        var orderBy;

        if (!sortColumn || !sortColumn.sort.direction) {
          return {
            id: link.id
          }
        }

        switch (sortColumn.field) {
          case "active":
            orderBy = link[sortColumn.field] ? 1 : 0;
          default:
            orderBy = link[sortColumn.field];
            break;
        }

        return {
          id: link.id,
          orderBy: orderBy
        };
      });

      if (sortColumn && sortColumn.sort.direction) {
        tempData.sort(function (left, right) {
          if (left === right || left.orderBy === right.orderBy) {
            return 0;
          }
          if (left.orderBy > right.orderBy) {
            return (sortColumn.sort.direction === uiGridConstants.ASC) ? 1 : -1;
          }
          return (sortColumn.sort.direction === uiGridConstants.ASC) ? -1 : 1;
        });
      }

      var maxPageNumber = Math.max(1, Math.ceil(tempData.length / paginationPageSize));
      var currentPage = Math.min(maxPageNumber, paginationPage);
      var orderedLinksAtCurrentPage = tempData.slice((currentPage - 1) * paginationPageSize, currentPage * paginationPageSize);

      linksAtCurrentPageCache = {};
      var orderedData = [];

      orderedLinksAtCurrentPage.forEach(function (orderedLink) {
        var link = links[orderedLink.id];
        linksAtCurrentPageCache[link.id] = link;
        orderedData.push({
          id: orderedLink.id,
          source: link.source,
          target: link.target,
          active: link.active
        });
      });

      $timeout(function () {
        vm.gridOptions.data = orderedData;
        vm.gridOptions.totalItems = tempData.length;
      });
    }

    // subscribe to the elementsChanged event to reload the grid page if the data in the service has chenged      
    var subscription = mwtnTopologyIeee1588PathData.events.subscribe("elementsChanged", function (data) {
      loadPage();
      // to unsubscribe call subscription.remove();
    });

  }]);

  mwtnTopologyApp.directive("mwtnTopologyPtpLinksGrid", [function () {
    return {
      restrict: 'E',
      replace: false,
      controller: 'mwtnTopologyPtpLinksGridController',
      controllerAs: 'vm',
      scope: {

      },
      templateUrl: 'src/app/mwtnTopology/templates/ptpLinksGrid.tpl.html'
    };
  }]);

  mwtnTopologyApp.filter('coordinateFilter', coordinateFilter);

  function coordinateFilter($sce) {

    return function (coordinate, conversion, type, places) {

      // The filter will be running as we type values into the input boxes, which returns undefined
      // and brings up an error in the console. Here wait until the coordinate is defined
      if (coordinate != undefined) {

        // Check for user input that is a positive or negative number with the option
        // that it is a float. Match only the numbers and not the white space or other characters
        var pattern = /[-+]?[0-9]*\.?[0-9]+/g
        var match = String(coordinate).match(pattern);

        if (conversion === "toDD" && match && coordinateIsValid(match, type)) {
          // If the match array only has one item, the user has provided decimal degrees
          // and we can just return what the user typed in
          if (match.length === 1) {
            return parseFloat(match);
          }

          // If the match array has a length of three then we know degrees, minutes, and seconds
          // were provided so we can convert it to decimal degrees
          if (match.length === 3) {
            return toDecimalDegrees(match);
          }
        }

        else if (conversion === 'toDMS' && match && coordinateIsValid(match, type)) {
          // When converting from decimal degrees to degrees, minutes and seconds, if
          // the match array has one item we know the user has input decimal degrees
          // so we can convert it to degrees, minutes and seconds
          if (match.length === 1) {
            return toDegreesMinutesSeconds(match, type);
          }

          // To properly format the converted coordinates we will need to add in HTML entities
          // which means we'll need to bind the returned string as HTML and thus we need
          // to use $sce (Strict Contextual Escaping) to say that we trust what is being bound as HTML
          if (match.length === 3) {
            return $sce.trustAsHtml(match[0] + '&deg; ' + match[1] + '&prime; ' + match[2] + '&Prime; ');
          }
        }

        // Output a notice that the coordinates are invalid if they are
        else if (!coordinateIsValid(match, type)) {
          return "Invalid Coordinate!";
        }

        function toDecimalDegrees(coord) {
          // Setup for all parts of the DMS coordinate and the necessary math to convert
          // from DMS to DD
          var degrees = parseInt(coord[0]);
          var minutes = parseInt(coord[1]) / 60;
          var seconds = parseInt(coord[2]) / 3600;

          // When the degrees value is negative, the math is a bit different
          // than when the value is positive. This checks whether the value is below zero
          // and does subtraction instead of addition if it is. 
          if (degrees < 0) {
            var calculated = degrees - minutes - seconds;
            return calculated.toFixed(places || 4);
          }
          else {
            var calculated = degrees + minutes + seconds
            return calculated.toFixed(places || 4);
          }
        }

        // This function converts from DD to DMS. Math.abs is used a lot because
        // for the minutes and seconds, negative values aren't valid 
        function toDegreesMinutesSeconds(decimal_degrees, type) {

          var dd = decimal_degrees[0];
          var direction = 'E';

          if (type === 'lat') {
            if (dd < 0) {
              direction = 'S';
            } else {
              direction = 'N'
            }
          } else {
            if (dd < 0) {
              direction = 'W';
            } else {
              direction = 'E'
            }
          }

          dd = Math.abs(dd);
          var degrees = Math.floor(dd);
          var frac = dd - degrees; // get fractional part
          var min = Math.floor(frac * 60);
          var sec = frac * 3600 - min * 60;

          var formated = [degrees, '° ', ("0" + min).slice(-2), '\' ', ("0" + sec.toFixed(4)).slice(-7), '\" ', direction];
          return formated.join('');

          //           var degrees = coordinate[0].split('.')[0];
          //           var minutes = Math.abs(Math.floor(60 * (Math.abs(coordinate[0]) - Math.abs(degrees))));
          //           var seconds = 3600 * (Math.abs(coordinate[0]) - Math.abs(degrees) - Math.abs(minutes) / 60).toFixed(2);

          //            return $sce.trustAsHtml(degrees + '° ' + minutes + '\' ' + seconds + '\" ');

        }

        // This function checks whether the coordinate value the user enters is valid or not. 
        // If the coordinate doesn't pass one of these rules, the function will return false
        // which will then alert the user that the coordinate is invalid.
        function coordinateIsValid(coordinate, type) {
          if (coordinate) {

            // The degree values of latitude coordinates have a range between -90 and 90
            if (coordinate[0] && type === 'lat') {
              if (!(-90 <= +(coordinate[0]) <= 90)) return false;
            }
            // The degree values longitude coordinates have a range between -180 and 180
            else if (coordinate[0] && type === 'lon') {
              if (!(-180 <= +(coordinate[0]) <= 180)) return false;
            }
            // Minutes and seconds can only be between 0 and 60
            if (coordinate[1]) {
              if (!(0 <= +(coordinate[1]) <= 60)) return false;
            }
            if (coordinate[2]) {
              if (!(0 <= +(coordinate[2]) <= 60)) return false;
            }
          }

          // If the coordinate made it through all the rules above, the function
          // returns true because the coordinate is good
          return true;
        }
      }
    }
  }
});