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 ( |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 20 | "log" |
Matteo Scandolo | 4549d3f | 2018-10-19 12:48:20 -0700 | [diff] [blame^] | 21 | "time" |
| 22 | |
| 23 | "gerrit.opencord.org/voltha-bbsim/device" |
| 24 | "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 { |
Keita NISHIMOTO | 9c6f6f1 | 2018-10-18 04:56:34 +0900 | [diff] [blame] | 30 | log.Printf("Failed to send OLT UP indication: %v\n", err) |
| 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 { |
| 39 | log.Printf("Failed to send OLT DOWN indication: %v\n", 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 { |
| 46 | for i := uint32(0); i < olt.NumPonIntf+olt.NumNniIntf; i++ { |
| 47 | intf := olt.Intfs[i] |
Matteo Scandolo | 4549d3f | 2018-10-19 12:48:20 -0700 | [diff] [blame^] | 48 | if intf.Type == "pon" { // There is no need to send IntfInd for NNI |
Keita NISHIMOTO | ca4da5f | 2018-10-15 22:48:52 +0900 | [diff] [blame] | 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 | log.Printf("Failed to send Intf [id: %d] indication : %v\n", i, err) |
| 52 | return err |
| 53 | } |
| 54 | log.Printf("SendIntfInd olt:%d intf:%d (%s)\n", olt.ID, intf.IntfID, intf.Type) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 55 | } |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 56 | } |
| 57 | return nil |
| 58 | } |
| 59 | |
| 60 | func sendOperInd(stream openolt.Openolt_EnableIndicationServer, olt *device.Olt) error { |
| 61 | for i := uint32(0); i < olt.NumPonIntf+olt.NumNniIntf; i++ { |
| 62 | intf := olt.Intfs[i] |
| 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 { |
| 65 | log.Printf("Failed to send IntfOper [id: %d] indication : %v\n", i, err) |
| 66 | return err |
| 67 | } |
| 68 | log.Printf("SendOperInd olt:%d intf:%d (%s)\n", olt.ID, intf.IntfID, intf.Type) |
| 69 | } |
| 70 | return nil |
| 71 | } |
| 72 | |
| 73 | func sendOnuDiscInd(stream openolt.Openolt_EnableIndicationServer, onus []*device.Onu) error { |
| 74 | for i, onu := range onus { |
| 75 | data := &openolt.Indication_OnuDiscInd{&openolt.OnuDiscIndication{IntfId: onu.IntfID, SerialNumber: onu.SerialNumber}} |
| 76 | log.Printf("sendONUDiscInd Onuid: %d\n", i) |
| 77 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
| 78 | log.Printf("Failed to send ONUDiscInd [id: %d]: %v\n", i, err) |
| 79 | return err |
| 80 | } |
| 81 | } |
| 82 | return nil |
| 83 | } |
| 84 | |
Matteo Scandolo | 4549d3f | 2018-10-19 12:48:20 -0700 | [diff] [blame^] | 85 | func sendOnuInd(stream openolt.Openolt_EnableIndicationServer, onus []*device.Onu, delay int) error { |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 86 | for i, onu := range onus { |
Matteo Scandolo | 4549d3f | 2018-10-19 12:48:20 -0700 | [diff] [blame^] | 87 | time.Sleep(time.Duration(delay) * time.Second) |
Keita NISHIMOTO | 3b8b9c0 | 2018-10-09 09:40:01 +0900 | [diff] [blame] | 88 | data := &openolt.Indication_OnuInd{&openolt.OnuIndication{IntfId: onu.IntfID, OnuId: onu.OnuID, OperState: "up", AdminState: "up", SerialNumber: onu.SerialNumber}} |
| 89 | log.Printf("sendONUInd Onuid: %d\n", i) |
| 90 | if err := stream.Send(&openolt.Indication{Data: data}); err != nil { |
| 91 | log.Printf("Failed to send ONUInd [id: %d]: %v\n", i, err) |
| 92 | return err |
| 93 | } |
| 94 | } |
| 95 | return nil |
| 96 | } |