blob: ef9270429a5fc20ca460eaff4797c2e956252cbf [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 (
Matteo Scandolo4549d3f2018-10-19 12:48:20 -070020 "time"
Matteo Scandolo4549d3f2018-10-19 12:48:20 -070021 "gerrit.opencord.org/voltha-bbsim/protos"
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090022 "gerrit.opencord.org/voltha-bbsim/device"
23 "gerrit.opencord.org/voltha-bbsim/common"
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 {
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090029 logger.Error("Failed to send OLT UP indication: %v\n", 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 {
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090038 logger.Error("Failed to send OLT DOWN indication: %v\n", 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 {
45 for i := uint32(0); i < olt.NumPonIntf+olt.NumNniIntf; i++ {
46 intf := olt.Intfs[i]
Matteo Scandolo4549d3f2018-10-19 12:48:20 -070047 if intf.Type == "pon" { // There is no need to send IntfInd for NNI
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090048 data := &openolt.Indication_IntfInd{&openolt.IntfIndication{IntfId: intf.IntfID, OperState: intf.OperState}}
49 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090050 logger.Error("Failed to send Intf [id: %d] indication : %v\n", i, err)
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090051 return err
52 }
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090053 logger.Info("SendIntfInd olt:%d intf:%d (%s)\n", olt.ID, intf.IntfID, intf.Type)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090054 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090055 }
56 return nil
57}
58
59func sendOperInd(stream openolt.Openolt_EnableIndicationServer, olt *device.Olt) error {
60 for i := uint32(0); i < olt.NumPonIntf+olt.NumNniIntf; i++ {
61 intf := olt.Intfs[i]
62 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 {
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090064 logger.Error("Failed to send IntfOper [id: %d] indication : %v\n", i, err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090065 return err
66 }
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090067 logger.Info("SendOperInd olt:%d intf:%d (%s)\n", olt.ID, intf.IntfID, intf.Type)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090068 }
69 return nil
70}
71
72func sendOnuDiscInd(stream openolt.Openolt_EnableIndicationServer, onus []*device.Onu) error {
73 for i, onu := range onus {
74 data := &openolt.Indication_OnuDiscInd{&openolt.OnuDiscIndication{IntfId: onu.IntfID, SerialNumber: onu.SerialNumber}}
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090075 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090076 logger.Error("Failed to send ONUDiscInd [id: %d]: %v\n", i, err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090077 return err
78 }
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090079 logger.Info("sendONUDiscInd Onuid: %d\n", i)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090080 }
81 return nil
82}
83
Matteo Scandolo4549d3f2018-10-19 12:48:20 -070084func sendOnuInd(stream openolt.Openolt_EnableIndicationServer, onus []*device.Onu, delay int) error {
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090085 for i, onu := range onus {
Matteo Scandolo4549d3f2018-10-19 12:48:20 -070086 time.Sleep(time.Duration(delay) * time.Second)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090087 data := &openolt.Indication_OnuInd{&openolt.OnuIndication{IntfId: onu.IntfID, OnuId: onu.OnuID, OperState: "up", AdminState: "up", SerialNumber: onu.SerialNumber}}
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090088 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090089 logger.Error("Failed to send ONUInd [id: %d]: %v\n", i, err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090090 return err
91 }
Keita NISHIMOTOc66b8eb2018-10-20 07:19:39 +090092 logger.Info("sendONUInd Onuid: %d\n", i)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090093 }
94 return nil
95}