Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | package core |
| 18 | |
| 19 | import ( |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 20 | "time" |
| 21 | |
Matteo Scandolo | 88e9189 | 2018-11-06 16:29:19 -0800 | [diff] [blame] | 22 | "gerrit.opencord.org/voltha-bbsim/common/logger" |
Keita NISHIMOTO | 9708e04 | 2018-10-27 09:24:44 +0900 | [diff] [blame] | 23 | "gerrit.opencord.org/voltha-bbsim/device" |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 24 | openolt "gerrit.opencord.org/voltha-bbsim/protos" |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 25 | ) |
| 26 | |
Keita NISHIMOTO | 9c6f6f1 | 2018-10-18 04:56:34 +0900 | [diff] [blame] | 27 | func sendOltIndUp(stream openolt.Openolt_EnableIndicationServer, olt *device.Olt) error { |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 28 | data := &openolt.Indication_OltInd{OltInd: &openolt.OltIndication{OperState: "up"}} |
| 29 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 30 | logger.Error("Failed to send OLT UP indication: %v", err) |
Keita NISHIMOTO | 9c6f6f1 | 2018-10-18 04:56:34 +0900 | [diff] [blame] | 31 | return err |
| 32 | } |
| 33 | return nil |
| 34 | } |
| 35 | |
| 36 | func sendOltIndDown(stream openolt.Openolt_EnableIndicationServer) error { |
| 37 | data := &openolt.Indication_OltInd{OltInd: &openolt.OltIndication{OperState: "down"}} |
| 38 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
Matteo Scandolo | 2aca22c | 2018-11-08 14:12:07 -0800 | [diff] [blame] | 39 | logger.Error("Failed to send OLT DOWN indication: %v", err) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 40 | return err |
| 41 | } |
| 42 | return nil |
| 43 | } |
| 44 | |
| 45 | func sendIntfInd(stream openolt.Openolt_EnableIndicationServer, olt *device.Olt) error { |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 46 | // There is no need to send IntfInd for NNI |
| 47 | for i := uint32(0); i < olt.NumPonIntf; i++ { |
| 48 | intf := olt.PonIntfs[i] |
| 49 | data := &openolt.Indication_IntfInd{&openolt.IntfIndication{IntfId: intf.IntfID, OperState: intf.OperState}} |
| 50 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
| 51 | logger.Error("Failed to send Intf [id: %d] indication : %v", i, err) |
| 52 | return err |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 53 | } |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 54 | logger.Info("SendIntfInd olt:%d intf:%d (%s)", olt.ID, intf.IntfID, intf.Type) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 55 | } |
| 56 | return nil |
| 57 | } |
| 58 | |
| 59 | func sendOperInd(stream openolt.Openolt_EnableIndicationServer, olt *device.Olt) error { |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 60 | // Send OperInd for Nni |
| 61 | for i := uint32(0); i < olt.NumNniIntf; i++ { |
| 62 | intf := olt.NniIntfs[i] |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 63 | data := &openolt.Indication_IntfOperInd{&openolt.IntfOperIndication{Type: intf.Type, IntfId: intf.IntfID, OperState: intf.OperState}} |
| 64 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 65 | logger.Error("Failed to send NNI IntfOper [id: %d] indication : %v", i, err) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 66 | return err |
| 67 | } |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 68 | logger.Info("SendOperInd NNI olt:%d intf:%d (%s)", olt.ID, intf.IntfID, intf.Type) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 69 | } |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 70 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 71 | // Send OperInd for Pon |
| 72 | for i := uint32(0); i < olt.NumPonIntf; i++ { |
| 73 | intf := olt.PonIntfs[i] |
| 74 | data := &openolt.Indication_IntfOperInd{&openolt.IntfOperIndication{Type: intf.Type, IntfId: intf.IntfID, OperState: intf.OperState}} |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 75 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 76 | logger.Error("Failed to send PON IntfOper [id: %d] indication : %v", i, err) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 77 | return err |
| 78 | } |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 79 | logger.Info("SendOperInd PON olt:%d intf:%d (%s)", olt.ID, intf.IntfID, intf.Type) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 80 | } |
| 81 | return nil |
| 82 | } |
| 83 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 84 | func sendOnuDiscInd(stream openolt.Openolt_EnableIndicationServer, onu *device.Onu) error { |
| 85 | data := &openolt.Indication_OnuDiscInd{OnuDiscInd: &openolt.OnuDiscIndication{IntfId: onu.IntfID, SerialNumber: onu.SerialNumber}} |
Mahir Gunyel | 9897f6e | 2019-05-22 14:54:05 -0700 | [diff] [blame] | 86 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 87 | logger.Error("Failed to send ONUDiscInd [id: %d]: %v", onu.OnuID, err) |
| 88 | return err |
| 89 | } |
Keita NISHIMOTO | 9617c85 | 2019-06-17 21:46:44 +0900 | [diff] [blame] | 90 | device.LoggerWithOnu(onu).Info("sendONUDiscInd Onuid") |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 91 | return nil |
| 92 | } |
| 93 | |
| 94 | func sendOnuInd(stream openolt.Openolt_EnableIndicationServer, onu *device.Onu, delay int, operState string, adminState string) error { |
| 95 | time.Sleep(time.Duration(delay) * time.Millisecond) |
| 96 | data := &openolt.Indication_OnuInd{OnuInd: &openolt.OnuIndication{ |
Keita NISHIMOTO | 9617c85 | 2019-06-17 21:46:44 +0900 | [diff] [blame] | 97 | IntfId: onu.IntfID, |
| 98 | OnuId: onu.OnuID, |
| 99 | OperState: operState, |
| 100 | AdminState: adminState, |
| 101 | SerialNumber: onu.SerialNumber, |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 102 | }} |
| 103 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
| 104 | logger.Error("Failed to send ONUInd [id: %d]: %v", onu.OnuID, err) |
| 105 | return err |
Mahir Gunyel | 9897f6e | 2019-05-22 14:54:05 -0700 | [diff] [blame] | 106 | } |
Keita NISHIMOTO | 9617c85 | 2019-06-17 21:46:44 +0900 | [diff] [blame] | 107 | device.LoggerWithOnu(onu).Info("sendONUInd Onuid") |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 108 | return nil |
| 109 | } |
Mahir Gunyel | 9897f6e | 2019-05-22 14:54:05 -0700 | [diff] [blame] | 110 | |
Zdravko Bozakov | 7401ff2 | 2019-05-28 22:45:12 +0200 | [diff] [blame] | 111 | func sendDyingGaspInd(stream openolt.Openolt_EnableIndicationServer, intfID uint32, onuID uint32) error { |
| 112 | // Form DyingGasp Indication with ONU-ID and Intf-ID |
| 113 | alarmData := &openolt.AlarmIndication_DyingGaspInd{DyingGaspInd: &openolt.DyingGaspIndication{IntfId: intfID, OnuId: onuID, Status: "on"}} |
| 114 | data := &openolt.Indication_AlarmInd{AlarmInd: &openolt.AlarmIndication{Data: alarmData}} |
| 115 | |
| 116 | // Send Indication to VOLTHA |
| 117 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
| 118 | logger.Error("Failed to send DyingGaspInd : %v", err) |
| 119 | return err |
| 120 | } |
| 121 | logger.Info("sendDyingGaspInd Intf-ID:%d ONU-ID:%d", intfID, onuID) |
| 122 | return nil |
| 123 | } |
| 124 | |
| 125 | func startAlarmLoop(stream openolt.Openolt_EnableIndicationServer, alarmchan chan *openolt.Indication) { |
| 126 | logger.Debug("SendAlarm() Invoked") |
| 127 | for { |
| 128 | select { |
| 129 | case ind := <-alarmchan: |
| 130 | logger.Debug("Alarm recieved at alarm-channel to send to voltha %+v", ind) |
| 131 | err := stream.Send(ind) |
| 132 | if err != nil { |
| 133 | logger.Debug("Error occured while sending alarm indication %v", err) |
| 134 | } |
| 135 | } |
| 136 | } |
Mahir Gunyel | 9897f6e | 2019-05-22 14:54:05 -0700 | [diff] [blame] | 137 | } |