blob: 7c7f498a4ae4a7fd9793aeae5310a09d06f09593 [file] [log] [blame]
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +09001/*
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
17package core
18
19import (
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020020
Zack Williams2abf3932019-08-05 14:07:05 -070021 "github.com/opencord/voltha-bbsim/common/logger"
22 "github.com/opencord/voltha-bbsim/device"
Matt Jeanneret7c9c5f22019-08-09 14:40:12 -040023 openolt "github.com/opencord/voltha-protos/go/openolt"
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090024)
25
Keita NISHIMOTO9c6f6f12018-10-18 04:56:34 +090026func sendOltIndUp(stream openolt.Openolt_EnableIndicationServer, olt *device.Olt) error {
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090027 data := &openolt.Indication_OltInd{OltInd: &openolt.OltIndication{OperState: "up"}}
28 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080029 logger.Error("Failed to send OLT UP indication: %v", err)
Keita NISHIMOTO9c6f6f12018-10-18 04:56:34 +090030 return err
31 }
32 return nil
33}
34
35func sendOltIndDown(stream openolt.Openolt_EnableIndicationServer) error {
36 data := &openolt.Indication_OltInd{OltInd: &openolt.OltIndication{OperState: "down"}}
37 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080038 logger.Error("Failed to send OLT DOWN indication: %v", err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090039 return err
40 }
41 return nil
42}
43
44func sendIntfInd(stream openolt.Openolt_EnableIndicationServer, olt *device.Olt) error {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020045 // There is no need to send IntfInd for NNI
46 for i := uint32(0); i < olt.NumPonIntf; i++ {
47 intf := olt.PonIntfs[i]
48 data := &openolt.Indication_IntfInd{&openolt.IntfIndication{IntfId: intf.IntfID, OperState: intf.OperState}}
49 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
50 logger.Error("Failed to send Intf [id: %d] indication : %v", i, err)
51 return err
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090052 }
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020053 logger.Info("SendIntfInd olt:%d intf:%d (%s)", olt.ID, intf.IntfID, intf.Type)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090054 }
55 return nil
56}
57
58func sendOperInd(stream openolt.Openolt_EnableIndicationServer, olt *device.Olt) error {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020059 // Send OperInd for Nni
60 for i := uint32(0); i < olt.NumNniIntf; i++ {
61 intf := olt.NniIntfs[i]
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090062 data := &openolt.Indication_IntfOperInd{&openolt.IntfOperIndication{Type: intf.Type, IntfId: intf.IntfID, OperState: intf.OperState}}
63 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020064 logger.Error("Failed to send NNI IntfOper [id: %d] indication : %v", i, err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090065 return err
66 }
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020067 logger.Info("SendOperInd NNI olt:%d intf:%d (%s)", olt.ID, intf.IntfID, intf.Type)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090068 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090069
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020070 // Send OperInd for Pon
71 for i := uint32(0); i < olt.NumPonIntf; i++ {
72 intf := olt.PonIntfs[i]
73 data := &openolt.Indication_IntfOperInd{&openolt.IntfOperIndication{Type: intf.Type, IntfId: intf.IntfID, OperState: intf.OperState}}
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090074 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020075 logger.Error("Failed to send PON IntfOper [id: %d] indication : %v", i, err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090076 return err
77 }
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020078 logger.Info("SendOperInd PON olt:%d intf:%d (%s)", olt.ID, intf.IntfID, intf.Type)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090079 }
80 return nil
81}
82
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020083func sendOnuDiscInd(stream openolt.Openolt_EnableIndicationServer, onu *device.Onu) error {
84 data := &openolt.Indication_OnuDiscInd{OnuDiscInd: &openolt.OnuDiscIndication{IntfId: onu.IntfID, SerialNumber: onu.SerialNumber}}
Mahir Gunyel9897f6e2019-05-22 14:54:05 -070085 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020086 logger.Error("Failed to send ONUDiscInd [id: %d]: %v", onu.OnuID, err)
87 return err
88 }
Keita NISHIMOTO9617c852019-06-17 21:46:44 +090089 device.LoggerWithOnu(onu).Info("sendONUDiscInd Onuid")
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020090 return nil
91}
92
Mahir Gunyel32dfd722019-08-05 16:18:06 +030093func sendOnuInd(stream openolt.Openolt_EnableIndicationServer, onu *device.Onu, operState string, adminState string) error {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020094 data := &openolt.Indication_OnuInd{OnuInd: &openolt.OnuIndication{
Keita NISHIMOTO9617c852019-06-17 21:46:44 +090095 IntfId: onu.IntfID,
96 OnuId: onu.OnuID,
97 OperState: operState,
98 AdminState: adminState,
99 SerialNumber: onu.SerialNumber,
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200100 }}
101 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
102 logger.Error("Failed to send ONUInd [id: %d]: %v", onu.OnuID, err)
103 return err
Mahir Gunyel9897f6e2019-05-22 14:54:05 -0700104 }
Keita NISHIMOTO9617c852019-06-17 21:46:44 +0900105 device.LoggerWithOnu(onu).Info("sendONUInd Onuid")
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200106 return nil
107}
Mahir Gunyel9897f6e2019-05-22 14:54:05 -0700108
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200109func sendDyingGaspInd(stream openolt.Openolt_EnableIndicationServer, intfID uint32, onuID uint32) error {
110 // Form DyingGasp Indication with ONU-ID and Intf-ID
111 alarmData := &openolt.AlarmIndication_DyingGaspInd{DyingGaspInd: &openolt.DyingGaspIndication{IntfId: intfID, OnuId: onuID, Status: "on"}}
112 data := &openolt.Indication_AlarmInd{AlarmInd: &openolt.AlarmIndication{Data: alarmData}}
113
114 // Send Indication to VOLTHA
115 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
116 logger.Error("Failed to send DyingGaspInd : %v", err)
117 return err
118 }
119 logger.Info("sendDyingGaspInd Intf-ID:%d ONU-ID:%d", intfID, onuID)
120 return nil
121}
122
123func startAlarmLoop(stream openolt.Openolt_EnableIndicationServer, alarmchan chan *openolt.Indication) {
124 logger.Debug("SendAlarm() Invoked")
125 for {
126 select {
127 case ind := <-alarmchan:
128 logger.Debug("Alarm recieved at alarm-channel to send to voltha %+v", ind)
129 err := stream.Send(ind)
130 if err != nil {
131 logger.Debug("Error occured while sending alarm indication %v", err)
132 }
133 }
134 }
Mahir Gunyel9897f6e2019-05-22 14:54:05 -0700135}