aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/handler/RansimPciHandler.java
blob: 48d78c519b94bce36642b8535673acc494fb60e9 (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
/*
 * ============LICENSE_START=======================================================
 * Ran Simulator Controller
 * ================================================================================
 * Copyright (C) 2020-2021 Wipro Limited.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.ransim.rest.api.handler;

import com.google.gson.Gson;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap;

import javax.websocket.Session;

import org.apache.log4j.Logger;
import org.onap.ransim.rest.api.models.CellDetails;
import org.onap.ransim.rest.api.models.CellNeighbor;
import org.onap.ransim.rest.api.models.FmAlarmInfo;
import org.onap.ransim.rest.api.models.GetNeighborList;
import org.onap.ransim.rest.api.models.NeighborDetails;
import org.onap.ransim.rest.api.models.NetconfServers;
import org.onap.ransim.rest.api.models.NRCellCU;
import org.onap.ransim.rest.api.models.NRCellRelation;
import org.onap.ransim.rest.api.models.OperationLog;
import org.onap.ransim.rest.api.models.PmDataDump;
import org.onap.ransim.rest.api.models.PmParameters;
import org.onap.ransim.rest.api.services.RANSliceConfigService;
import org.onap.ransim.rest.api.services.RansimControllerServices;
import org.onap.ransim.rest.api.services.RansimRepositoryService;
import org.onap.ransim.websocket.model.AdditionalMeasurements;
import org.onap.ransim.websocket.model.CommonEventHeaderFm;
import org.onap.ransim.websocket.model.CommonEventHeaderPm;
import org.onap.ransim.websocket.model.EventFm;
import org.onap.ransim.websocket.model.EventPm;
import org.onap.ransim.websocket.model.FaultFields;
import org.onap.ransim.websocket.model.FmMessage;
import org.onap.ransim.websocket.model.Measurement;
import org.onap.ransim.websocket.model.PmMessage;
import org.onap.ransim.websocket.server.RansimWebSocketServer;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

@Service
public class RansimPciHandler {

    static Logger log = Logger.getLogger(RansimPciHandler.class.getName());

    @Autowired
    RansimRepositoryService ransimRepo;

    @Autowired
    RansimControllerServices rscServices;

    @Autowired
    RANSliceConfigService ranSliceConfigService;

    static Map<String, String> globalFmCellIdUuidMap = new ConcurrentHashMap<String, String>();
    static Map<String, String> globalPmCellIdUuidMap = new ConcurrentHashMap<String, String>();

    Set<String> cellsWithIssues = new HashSet<>();

    List<PmParameters> pmParameters = new ArrayList<PmParameters>();
    int next = 0;

    public FmAlarmInfo setCollisionConfusionFromFile(String cellNodeId) {

        FmAlarmInfo result = new FmAlarmInfo();

        try {

            boolean collisionDetected = false;
            boolean confusionDetected = false;
            List<Long> nbrPcis = new ArrayList<Long>();
            String collisions = "";
            HashMap<Long, String> confusions = new HashMap<Long, String>();
            CellDetails currentCell = ransimRepo.getCellDetail(cellNodeId);
            log.info("Setting confusion/collision for Cell :" + cellNodeId);

            GetNeighborList cellNbrDetails = generateNeighborList(cellNodeId);

            for (CellDetails firstLevelNbr : cellNbrDetails.getCellsWithHo()) {
                 if (nbrPcis.contains((Long) firstLevelNbr.getPhysicalCellId())) {
                    confusionDetected = true;
                    if(confusions.containsKey((Long) firstLevelNbr.getPhysicalCellId())) {
                        confusions.put((Long) firstLevelNbr.getPhysicalCellId(),
                                        confusions.get((Long) firstLevelNbr.getPhysicalCellId())+","+firstLevelNbr.getNodeId());
                    } else {
                         confusions.put((Long) firstLevelNbr.getPhysicalCellId(),firstLevelNbr.getNodeId());
                    }


                  } else {
                     nbrPcis.add((Long) firstLevelNbr.getPhysicalCellId());
                  }

                  if (currentCell.getPhysicalCellId() == firstLevelNbr.getPhysicalCellId()) {
                      collisionDetected = true;
                      collisions += collisions.isEmpty()?firstLevelNbr.getNodeId():","+firstLevelNbr.getNodeId();
                  }
            }

            result.setCollisions(collisions);
            result.setConfusions(confusions);

            currentCell.setPciCollisionDetected(collisionDetected);
            currentCell.setPciConfusionDetected(confusionDetected);

            if (!currentCell.isPciCollisionDetected() && !currentCell.isPciConfusionDetected()) {
                currentCell.setColor("#BFBFBF"); // GREY - No Issues
                result.setProblem("No Issues");
            } else if (currentCell.isPciCollisionDetected() && currentCell.isPciConfusionDetected()) {
                currentCell.setColor("#C30000"); // BROWN - Cell has both
                                                 // collision & confusion
                result.setProblem("CollisionAndConfusion");

            } else if (currentCell.isPciCollisionDetected()) {
                currentCell.setColor("#FF0000"); // RED - Cell has collision
                result.setProblem("Collision");

            } else if (currentCell.isPciConfusionDetected()) {
                currentCell.setColor("#E88B00"); // ORANGE - Cell has confusion
                result.setProblem("Confusion");

            } else {
                currentCell.setColor("#BFBFBF"); // GREY - No Issues
                result.setProblem("No Issues");
            }

            ransimRepo.mergeCellDetails(currentCell);

            return result;

        } catch (Exception e2) {
            log.info("setCollisionConfusionFromFile :", e2);

            return null;
        }

    }

    /**
     * Generates separate list of neighbors with and without hand-off for a
     * cell.
     *
     * @param nodeId
     *        Node Id of cell for which the neighbor list is generated
     * @return Returns GetNeighborList object
     */
    public GetNeighborList generateNeighborList(String nodeId) {
	
	try {
		log.info("inside generateNeighborList for: " + nodeId);
		NRCellCU neighborList = ransimRepo.getCellRelation(Integer.valueOf(nodeId));
		GetNeighborList result = new GetNeighborList();
		neighborList.display();

		List<NRCellCU> cellsWithNoHO = new ArrayList<>();
		List<NRCellCU> cellsWithHO = new ArrayList<>();

		List<NRCellRelation> nbrList = new ArrayList<>();
		if (neighborList != null) {
			nbrList.addAll(neighborList.getNrCellRelationsList());
			log.info("neighborList.getNrCellRelationsList() is : " + nbrList);
		}

		for (int i = 0; i < nbrList.size(); i++) {
			NRCellCU nbr = ransimRepo.getNRCellCUDetail(nbrList.get(i).getIdNRCellRelation());
			if (nbrList.get(i).getisHOAllowed()) {
				cellsWithHO.add(nbr);
				log.info("cellswithHO is : " + cellsWithHO);
			} else {
				cellsWithNoHO.add(nbr);
				log.info("cellswithNoHO is : " + cellsWithNoHO);
			}
		}
		result.setNodeId(nodeId);
		result.setCUCellsWithHo(cellsWithHO);
		result.setCUCellsWithNoHo(cellsWithNoHO);
		log.info(" Generate neighbour result is : " + result);
		return result;
	} catch (Exception eu) {
		log.info("/getCUNeighborList", eu);
		return null;
	}
    }

    public void checkCollisionAfterModify() {
        try {
            List<CellDetails> checkCollisionConfusion = ransimRepo.getCellsWithCollisionOrConfusion();

            for (int i = 0; i < checkCollisionConfusion.size(); i++) {
                log.info(checkCollisionConfusion.get(i).getNodeId());
                setCollisionConfusionFromFile(checkCollisionConfusion.get(i).getNodeId());
            }
        } catch (Exception eu) {
            log.info("checkCollisionAfterModify", eu);
        }
    }

    /**
     * It updates the cell with its new neighbor list and PCI and updates the
     * change in a database.
     *
     * @param nodeId
     *        node Id of the cell
     * @param physicalCellId
     *        PCI number of the cell
     * @param newNbrs
     *        List of new neighbors for the cell
     * @param source
     *        The source from which cell modification has been triggered
     * @return returns success or failure message
     */
    public int modifyCellFunction(String nodeId, long physicalCellId, List<NeighborDetails> newNbrs, String source) {

        int result = 111;

        log.info("modifyCellFunction nodeId:" + nodeId + ", physicalCellId:" + physicalCellId);
        CellDetails modifyCell = ransimRepo.getCellDetail(nodeId);

        if (modifyCell != null) {
            if (physicalCellId < 0 || physicalCellId > RansimControllerServices.maxPciValueAllowed) {
                log.info("NewPhysicalCellId is empty or invalid");
                result = 400;
            } else {
                long oldPciId = modifyCell.getPhysicalCellId();
                if (physicalCellId != oldPciId) {
                    updatePciOperationsTable(nodeId, source, physicalCellId, oldPciId);

                    modifyCell.setPhysicalCellId(physicalCellId);
                    ransimRepo.mergeCellDetails(modifyCell);
                }

                CellNeighbor neighbors = ransimRepo.getCellNeighbor(nodeId);
                List<NeighborDetails> oldNbrList = new ArrayList<NeighborDetails>(neighbors.getNeighborList());
                List<NeighborDetails> oldNbrListWithHo = new ArrayList<NeighborDetails>();

                for (NeighborDetails cell : oldNbrList) {
                    if (!cell.isBlacklisted()) {
                        oldNbrListWithHo.add(cell);
                    }
                }

                boolean flag = false;

                List<NeighborDetails> addedNbrs = new ArrayList<NeighborDetails>();
                List<NeighborDetails> deletedNbrs = new ArrayList<NeighborDetails>();

                String nbrsDel = "";

                List<String> oldNbrsArr = new ArrayList<String>();
                for (NeighborDetails cell : oldNbrListWithHo) {
                    oldNbrsArr.add(cell.getNeigbor().getNeighborCell());
                }

                List<String> newNbrsArr = new ArrayList<String>();
                for (NeighborDetails cell : newNbrs) {
                    newNbrsArr.add(cell.getNeigbor().getNeighborCell());
                }

                for (NeighborDetails cell : oldNbrListWithHo) {

                    if (!newNbrsArr.contains(cell.getNeigbor().getNeighborCell())) {
                        if (!flag) {
                            flag = true;
                        }
                        deletedNbrs.add(cell);
                        if (nbrsDel == "") {
                            nbrsDel = cell.getNeigbor().getNeighborCell();
                        } else {
                            nbrsDel += "," + cell.getNeigbor().getNeighborCell();
                        }
                        log.info("deleted cell: " + cell.getNeigbor().getNeighborCell() + cell.isBlacklisted());

                    }
                }

                String nbrsAdd = "";

                for (NeighborDetails cell : newNbrs) {
                    if (cell.isBlacklisted()) {
                        addedNbrs.add(cell);
                    } else {
                        if (!oldNbrsArr.contains(cell.getNeigbor().getNeighborCell())) {
                            addedNbrs.add(cell);
                            if (nbrsAdd == "") {
                                nbrsAdd = cell.getNeigbor().getNeighborCell();
                            } else {
                                nbrsAdd += "," + cell.getNeigbor().getNeighborCell();
                            }
                            log.info("added cell: " + cell.getNeigbor().getNeighborCell() + cell.isBlacklisted());
                        }
                    }

                }
                List<NeighborDetails> newNeighborList = new ArrayList<NeighborDetails>(oldNbrList);
                for (NeighborDetails cell : deletedNbrs) {
                    NeighborDetails removeHo = new NeighborDetails(cell.getNeigbor(), true);
                    ransimRepo.mergeNeighborDetails(removeHo);
                    newNeighborList.add(removeHo);
                }

                for (NeighborDetails cell : addedNbrs) {
                    ransimRepo.mergeNeighborDetails(cell);
                    newNeighborList.add(cell);
                }

                if (!flag) {
                    if (newNbrs.size() != oldNbrList.size()) {
                        flag = true;
                    }
                }

                if (flag) {
                    updateNbrsOperationsTable(nodeId, source, nbrsAdd, nbrsDel);
                }

                if (newNbrs != null) {
                    neighbors.getNeighborList().clear();
                    Set<NeighborDetails> updatedNbrList = new HashSet<NeighborDetails>(newNeighborList);
                    neighbors.setNeighborList(updatedNbrList);
                    ransimRepo.mergeCellNeighbor(neighbors);
                }

                generateFmData(source, modifyCell, newNeighborList);

                result = 200;
            }

        } else {
            result = 400;
        }

        return result;
    }

    public void checkCellsWithIssue() {

        try {

            for (String id : cellsWithIssues) {
                CellDetails currentCell = ransimRepo.getCellDetail(id);
                FmMessage fmDataMessage = new FmMessage();
                List<EventFm> data = new ArrayList<EventFm>();

                if (!currentCell.isPciCollisionDetected()) {
                    if (!currentCell.isPciConfusionDetected()) {

                        cellsWithIssues.remove(id);
                        CommonEventHeaderFm commonEventHeader = new CommonEventHeaderFm();
                        FaultFields faultFields = new FaultFields();

                        commonEventHeader.setStartEpochMicrosec(System.currentTimeMillis() * 1000);
                        commonEventHeader.setSourceName(currentCell.getNodeId());
                        commonEventHeader.setReportingEntityName(currentCell.getServerId());
                        String uuid = globalFmCellIdUuidMap.get(currentCell.getNodeId());
                        commonEventHeader.setSourceUuid(uuid);

                        faultFields.setAlarmCondition("RanPciCollisionConfusionOccurred");
                        faultFields.setEventSeverity("NORMAL");
                        faultFields.setEventSourceType("other");
                        faultFields.setSpecificProblem("Problem Solved");

                        commonEventHeader.setLastEpochMicrosec(System.currentTimeMillis() * 1000);

                        EventFm event = new EventFm();
                        event.setCommonEventHeader(commonEventHeader);
                        event.setFaultFields(faultFields);

                        data.add(event);
                    }
                }

                fmDataMessage.setFmEventList(data);

                if (!data.isEmpty()) {
                    sendFmData(currentCell.getServerId(), fmDataMessage);
                }

            }

        } catch (Exception eu) {
            log.error("Exception:", eu);
        }
    }

    public void updatePciOperationsTable(String nodeId, String source, long physicalCellId, long oldPciId) {

        OperationLog operationLog = new OperationLog();

        operationLog.setNodeId(nodeId);
        operationLog.setFieldName("PCID");
        operationLog.setOperation("Modify");
        operationLog.setSource(source);
        operationLog.setTime(System.currentTimeMillis());
        operationLog.setMessage("PCID value changed from " + oldPciId + " to " + physicalCellId);
        ransimRepo.mergeOperationLog(operationLog);
    }

    public void updateNbrsOperationsTable(String nodeId, String source, String addedNbrs, String deletedNbrs) {

        OperationLog operationLogNbrChng = new OperationLog();
        operationLogNbrChng.setNodeId(nodeId);
        operationLogNbrChng.setFieldName("Neighbors");
        operationLogNbrChng.setOperation("Modify");
        operationLogNbrChng.setSource(source);

        log.info(" Neighbors added " + addedNbrs + ".");
        log.info(" Neighbors removed " + deletedNbrs + ".");
        String message = "";
        if (!addedNbrs.equals("")) {
            message += " Neighbors added " + addedNbrs + ".";
        }

        if (!deletedNbrs.equals("")) {
            message += " Neighbors removed " + deletedNbrs + ".";
        }

        operationLogNbrChng.setMessage(message);
        operationLogNbrChng.setTime(System.currentTimeMillis());
        ransimRepo.mergeOperationLog(operationLogNbrChng);
    }

    /**
     * Sends PM message to the netconf agent through the websocket server.
     *
     * @param serverId
     *        Netconf agent - Server ID to which the message is sent.
     * @param pmMessage
     *        PM message to be sent.
     */
    void sendPmdata(String serverId, String pmMessage) {

        log.info("Sending PM message to netconf agent");

        String ipPort = RansimControllerServices.serverIdIpPortMapping.get(serverId);

        if (ipPort != null && !ipPort.trim().equals("")) {

            if (ipPort != null && !ipPort.trim().equals("")) {

                Session clSess = RansimControllerServices.webSocketSessions.get(ipPort);
                log.info("PM message. Netconf agent IP:" + ipPort);
                if (clSess != null) {
                    RansimWebSocketServer.sendPmMessage(pmMessage, clSess);
                    log.info("Pm Data jsonStr: " + pmMessage);
                    log.info("PM message sent to netconf agent");
                } else {
                    log.info("No client session for " + ipPort);
                }
            } else {
                log.info("Pm message not sent, ipPort is null");
            }
        } else {

            log.info("Pm message not sent, ipPort is null. Server Id: " + serverId);
        }

    }

    /**
     *
     * Reads the values PM parameter values from a dump file.
     *
     */
    public void readPmParameters() {

        File dumpFile = null;
        PmDataDump pmDump = null;
        String jsonString = "";
        dumpFile = new File("PM_Kpi_Data.json");

        BufferedReader br = null;

        try {
            log.info("Reading dump file");
            br = new BufferedReader(new FileReader(dumpFile));

            StringBuilder sb = new StringBuilder();
            String line = br.readLine();

            while (line != null) {
                sb.append(line);
                sb.append("\n");
                line = br.readLine();
            }
            jsonString = sb.toString();

            pmDump = new Gson().fromJson(jsonString, PmDataDump.class);
            log.info("Dump value: " + pmDump.getKpiDump().get(0).getParameter1());
            pmParameters = new ArrayList<PmParameters>(pmDump.getKpiDump());

        } catch (Exception eu) {
            log.info("Exception: ", eu);
        }
    }

    private static String getUuid() {
        return UUID.randomUUID().toString();
    }

    /**
     * Sets values for all the parameters in the PM message
     *
     * @param nodeIdBad
     *        List of node Ids with bad performance values
     * @param nodeIdPoor
     *        List of node Ids with poor performance values
     * @return It returns the pm message
     */
    @Transactional
    public List<String> generatePmData(String nodeIdBad, String nodeIdPoor) {

	log.info(" nodeIdBad in generatePmData is" + nodeIdBad);
	log.info(" nodeIdPoor in generatePmData is" + nodeIdPoor);
        List<String> result = new ArrayList<>();

        String parameter1 = "";
        String successValue1 = "";
        String badValue1 = "";
        String poorValue1 = "";
        String parameter2 = "";
        String successValue2 = "";
        String badValue2 = "";
        String poorValue2 = "";

        try {

            if (next >= pmParameters.size()) {
                next = 0;
                log.info("next : " + next);
            }
            try {
                log.info("next : " + next);
                parameter1 = pmParameters.get(next).getParameter1();
		log.info("parameter1 is : " + parameter1);
                successValue1 = pmParameters.get(next).getSuccessValue1();
		log.info("successValue1 is : " + successValue1);
                badValue1 = pmParameters.get(next).getBadValue1();
		log.info("badValue1 is : " + badValue1);
                poorValue1 = pmParameters.get(next).getPoorValue1();
		log.info("poorValue1 is : " + poorValue1);
                parameter2 = pmParameters.get(next).getParameter2();
		log.info("parameter2 is : " + parameter2);
                successValue2 = pmParameters.get(next).getSuccessValue2();
		log.info("successValue2 is : " + successValue2);
                badValue2 = pmParameters.get(next).getBadValue2();
		log.info("badValue2 is : " + badValue2);
                poorValue2 = pmParameters.get(next).getPoorValue2();
		log.info("poorValue2 is : " + poorValue2);
                next++;
            } catch (Exception e) {
                log.info("Exception: ", e);
            }

            List<NetconfServers> cnl = ransimRepo.getNetconfServersList();
            log.debug("obtained data from db");
            String[] cellIdsBad = null;
            String[] cellIdsPoor = null;
            Set<String> nodeIdsBad = new HashSet<String>();
            Set<String> nodeIdsPoor = new HashSet<String>();

            if (nodeIdBad != null) {
                cellIdsBad = nodeIdBad.split(",");
                for (int a = 0; a < cellIdsBad.length; a++) {
                    nodeIdsBad.add(cellIdsBad[a].trim());
		    log.info("nodeIds bad is : " + nodeIdsBad);
		    
                }
            }
            if (nodeIdPoor != null) {
                cellIdsPoor = nodeIdPoor.split(",");
                for (int a = 0; a < cellIdsPoor.length; a++) {
                    nodeIdsPoor.add(cellIdsPoor[a].trim());
		    log.info("nodeIds poor is : " + nodeIdsPoor);
                }
            }

            for (int i = 0; i < cnl.size(); i++) {

                 long startTime = System.currentTimeMillis();
		 List<NRCellCU> cellList = new ArrayList<NRCellCU>(cnl.get(i).getCellList());
                 log.info(" CellList in generatePmData is : " + cellList);
		 List<EventPm> data = new ArrayList<EventPm>();
		 for (int j = 0; j < cellList.size(); j++) {

			 long startTimeCell = System.currentTimeMillis();
			 String nodeId = cellList.get(j).getCellLocalId().toString();
			 log.info(" nodeId in cellList in generatePmData is : " + nodeId);
			 String reportingEntityName = cellList.get(j).getgNBCUCPFunction().getgNBCUName();
			 EventPm event = new EventPm();
			 CommonEventHeaderPm commonEventHeader = new CommonEventHeaderPm();
			 commonEventHeader.setSourceName(nodeId);
			 commonEventHeader.setReportingEntityName(reportingEntityName);
			 commonEventHeader.setStartEpochMicrosec(System.currentTimeMillis() * 1000);
			 String uuid = globalPmCellIdUuidMap.get(nodeId);
			 if (uuid == null) {
				 uuid = getUuid();
				 globalPmCellIdUuidMap.put(nodeId, uuid);
			 }
			 commonEventHeader.setSourceUuid(uuid);
			 Measurement measurement = new Measurement();
			 measurement.setMeasurementInterval(180);
			 
			 GetNeighborList cellNbrList = generateNeighborList(nodeId);
			 log.info("Get CellCU neighbourList with HO is : " + cellNbrList.getCUCellsWithHo());

			 long startTimeCheckBadPoor = System.currentTimeMillis();
			 boolean checkBad = false;
			 boolean checkPoor = false;
			 int countBad = 0;
			 int countPoor = 0;
			 log.info( "nodeIdsBad in for loop is" + nodeIdsBad);
			 log.info( "nodeIdsPoor in for loop is" + nodeIdsPoor);
			 
			 if (nodeIdsBad.contains(nodeId)) {
				 log.info( " inside nodeIdsBad if condition " + nodeId);
				 checkBad = true;
				 countBad = (int) (cellNbrList.getCUCellsWithHo().size() * 0.2);
				 log.info( " check bad is : " + checkBad);
				 log.info( " count bad is : " + countBad);
			 }
			 
			 if (nodeIdsPoor.contains(nodeId)) {
				 log.info( " inside nodeIdsPoor if condition " + nodeId);
				 checkPoor = true;
				 countPoor = (int) (cellNbrList.getCUCellsWithHo().size() * 0.2);
				 log.info( " check poor is : " + checkPoor);
				 log.info( " count bad is : " + countPoor);
			 }

			 long endTimeCheckBadPoor = System.currentTimeMillis();
			 log.debug("Time taken CheckBadPoor : " + (endTimeCheckBadPoor - startTimeCheckBadPoor));
			 List<AdditionalMeasurements> additionalMeasurements = new ArrayList<AdditionalMeasurements>();
			 if (checkPoor || checkBad) {
				 Collections.sort(cellNbrList.getCUCellsWithHo());
				 for (int k = 0; k < cellNbrList.getCUCellsWithHo().size(); k++) {
					 AdditionalMeasurements addMsmnt = new AdditionalMeasurements();
					 addMsmnt.setName(cellNbrList.getCUCellsWithHo().get(k).getCellLocalId().toString());
					 Map<String, String> hashMap = new HashMap<String, String>();
					 hashMap.put("networkId", "RAN001");
					 hashMap.put(parameter1, successValue1);
					 if (checkBad == true) {
						 if (countBad > 0) {
							 log.info("countBad: " + countBad);
							 hashMap.put(parameter2, badValue2);
							 countBad--;
						 } else {
							 hashMap.put(parameter2, successValue2);
						 }
					 } else if (checkPoor == true) {
						 if (countPoor > 0) {
							 log.info("countPoor: " + countPoor);
							 hashMap.put(parameter2, poorValue2);
							 countPoor--;
						 } else {
							 hashMap.put(parameter2, successValue2);
						 }
					 }
					 addMsmnt.setHashMap(hashMap);
					 additionalMeasurements.add(addMsmnt);
				 }
			 } else {
				 for (int k = 0; k < cellNbrList.getCUCellsWithHo().size(); k++) {
					 AdditionalMeasurements addMsmnt = new AdditionalMeasurements();
					 addMsmnt.setName(cellNbrList.getCUCellsWithHo().get(k).getCellLocalId().toString());
					 Map<String, String> hashMap = new HashMap<String, String>();
					 hashMap.put("networkId", "RAN001");
					 hashMap.put(parameter1, successValue1);
					 hashMap.put(parameter2, successValue2);
					 addMsmnt.setHashMap(hashMap);
					 additionalMeasurements.add(addMsmnt);
				 }
			 }
			 commonEventHeader.setLastEpochMicrosec(System.currentTimeMillis() * 1000);
			 measurement.setAdditionalMeasurements(additionalMeasurements);
			 event.setCommonEventHeader(commonEventHeader);
			 event.setMeasurement(measurement);
			 data.add(event);
			 long endTimeCell = System.currentTimeMillis();
			 log.debug("Time taken to Process Cell list : " + (endTimeCell - startTimeCell));
		 }
		 long endTime = System.currentTimeMillis();
		 log.info("Time taken for generating PM data for " + cnl.get(i).getServerId() + " : "
				 + (endTime - startTime));
		 PmMessage msg = new PmMessage();
		 if (data.size() > 0) {
			 msg.setEventPmList(data);
			 Gson gson = new Gson();
			 String jsonStr = gson.toJson(msg);
			 sendPmdata(cnl.get(i).getServerId(), jsonStr);
			 result.add(jsonStr);
		 }
	    }
	} catch (Exception e) {
		log.info("Exception in string builder", e);
	}
	return result;
    }
		  
    /**	  
     * Sets the value for all fields in the FM data for individual cell.
     *
     * @param networkId
     *        Network Id of the cell
     * @param ncServer
     *        Server Id of the cell
     * @param cellId
     *        Node Id of the cell
     * @param issue
     *        Contains the collision/confusion details of the cess
     * @return returns List of EventFm objects, with all the necessary parameters.
     */
    public static List<EventFm> setEventFm(String networkId, String ncServer, String cellId, FmAlarmInfo issue) {

        log.info("Inside generate FmData");
        List<EventFm> eventList = new ArrayList<EventFm>();
        EventFm event = new EventFm();

        try {

            CommonEventHeaderFm commonEventHeader = new CommonEventHeaderFm();
            FaultFields faultFields = new FaultFields();
            String uuid = globalFmCellIdUuidMap.get(cellId);
            if (uuid == null) {
                uuid = getUuid();
                globalFmCellIdUuidMap.put(cellId, uuid);
            }
            commonEventHeader.setSourceUuid(uuid);
            faultFields.setAlarmCondition("RanPciCollisionConfusionOccurred");
            faultFields.setEventSeverity("CRITICAL");
            faultFields.setEventSourceType("other");
            Map<String, String> alarmAdditionalInformation = new HashMap<String, String>();
            alarmAdditionalInformation.put("networkId", networkId);
            faultFields.setAlarmAdditionalInformation(alarmAdditionalInformation);

            if (!issue.getCollisions().isEmpty()) {
                commonEventHeader.setStartEpochMicrosec(System.currentTimeMillis() * 1000);
                commonEventHeader.setSourceName(cellId);
                commonEventHeader.setReportingEntityName(ncServer);
                faultFields.setSpecificProblem(issue.getCollisions());
                faultFields.setEventCategory("PCICollision");
                commonEventHeader.setLastEpochMicrosec(System.currentTimeMillis() * 1000);
                event.setCommonEventHeader(commonEventHeader);
                event.setFaultFields(faultFields);
                eventList.add(event);
            }

            for (Map.Entry<Long, String> set : issue.getConfusions().entrySet()) {
                commonEventHeader.setStartEpochMicrosec(System.currentTimeMillis() * 1000);
                commonEventHeader.setSourceName(cellId);
                commonEventHeader.setReportingEntityName(ncServer);
                faultFields.setSpecificProblem(set.getValue());
                faultFields.setEventCategory("PCIConfusion");
                commonEventHeader.setLastEpochMicrosec(System.currentTimeMillis() * 1000);
                event.setCommonEventHeader(commonEventHeader);
                event.setFaultFields(faultFields);
                eventList.add(event);
            }

        } catch (Exception e) {
            log.info("Exception: ", e);
        }

        return eventList;

    }

    /**
     * It checks if the cell or any of its neighbors have collision/confusion
     * issue. If there are any issues it generates the FM data for the entire
     * cluster
     *
     * @param source
     *        The source from which the cell modification has been
     *        triggered.
     * @param cell
     *        Details of the given cell.
     * @param newNeighborList
     *        Neighbor list of the given cell.
     */
    public void generateFmData(String source, CellDetails cell, List<NeighborDetails> newNeighborList) {

        List<EventFm> listCellIssue = new ArrayList<EventFm>();
        Set<String> ncs = new HashSet<>();
        log.info("Generating Fm data");
        FmAlarmInfo op1 = setCollisionConfusionFromFile(cell.getNodeId());

        if (source.equals("GUI")) {
            if (op1.getProblem().equals("CollisionAndConfusion") || op1.getProblem().equals("Collision")
                    || op1.getProblem().equals("Confusion")) {
                log.info("op1: " + op1);
                List<EventFm> lci = setEventFm(cell.getNetworkId(), cell.getServerId(), cell.getNodeId(), op1);
                listCellIssue.addAll(lci);
                ncs.add(cell.getServerId());
                log.info("Generating Fm data for: " + cell.getNodeId());
            }
        }

        for (NeighborDetails cd : newNeighborList) {
            FmAlarmInfo op2 = setCollisionConfusionFromFile(cd.getNeigbor().getNeighborCell());
            CellDetails nbrCell = ransimRepo.getCellDetail(cd.getNeigbor().getNeighborCell());

            if (source.equals("GUI")) {
                if (op2.getProblem().equals("CollisionAndConfusion") || op2.getProblem().equals("Collision")
                        || op2.getProblem().equals("Confusion")) {
                    List<EventFm> lci = setEventFm(nbrCell.getNetworkId(), nbrCell.getServerId(), nbrCell.getNodeId(), op2);
                    log.info("FmData added:" + nbrCell.getNodeId());
                    listCellIssue.addAll(lci);
                    ncs.add(nbrCell.getServerId());
                    log.info("Generating Fm data for: " + nbrCell.getNodeId());
                }
            }

        }

        if (source.equals("GUI")) {
            for (String nc : ncs) {

                FmMessage fmDataMessage = new FmMessage();
                List<EventFm> data = new ArrayList<EventFm>();
                log.info("listCellIssue.size(): " + listCellIssue.size());
                for (EventFm cellIssue : listCellIssue) {
                    if (cellIssue.getCommonEventHeader().getReportingEntityName().equals(nc)) {
                        data.add(cellIssue);
                        if (!cellsWithIssues.contains(cellIssue.getCommonEventHeader().getSourceName())) {
                            cellsWithIssues.add(cellIssue.getCommonEventHeader().getSourceName());
                        }

                    }
                }
                log.info("data.size(): " + data.size());

                if (data.size() > 0) {
                    fmDataMessage.setFmEventList(data);
                    log.info("Sending FM message: ");
                    sendFmData(nc, fmDataMessage);
                }

            }
        }

    }

    /**
     * Sends the FM data message to the netconf agent through the ransim
     * websocket server.
     *
     * @param serverId
     *        server id of the netconf agent
     * @param fmDataMessage
     *        FM message to be sent
     */
    public void sendFmData(String serverId, FmMessage fmDataMessage) {

        log.info("inside sendFmData");
        Gson gson = new Gson();
        String jsonStr = gson.toJson(fmDataMessage);

        log.info("Fm Data jsonStr: " + jsonStr);

        String ipPort = RansimControllerServices.serverIdIpPortMapping.get(serverId);

        if (ipPort != null && !ipPort.trim().equals("")) {

            log.info("Connection estabilished with ip: " + ipPort);
            if (ipPort != null && !ipPort.trim().equals("")) {
                Session clSess = RansimControllerServices.webSocketSessions.get(ipPort);
                if (clSess != null) {
                    log.info("FM message sent.");
                    RansimWebSocketServer.sendFmMessage(jsonStr, clSess);
                } else {
                    log.info("No client session for " + ipPort);
                }
            } else {
                log.info("No client for " + serverId);
            }
        } else {
            log.info("No client for ");
        }

    }

}