blob: 24f2cbf9e6369443f95c31e84e62bd3c581f65ec [file] [log] [blame]
/*
* Copyright 2018-present Open Networking Foundation
* 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.
*/
package device
import (
"reflect"
"sync"
"gerrit.opencord.org/voltha-bbsim/common/logger"
"gerrit.opencord.org/voltha-bbsim/protos"
log "github.com/sirupsen/logrus"
)
type onuState int
const (
ONU_PRE_ACTIVATED onuState = iota
ONU_ACTIVATED
)
type Onu struct {
InternalState *onuState
OltID uint32
IntfID uint32
OperState string
SerialNumber *openolt.SerialNumber
OnuID uint32
mu *sync.Mutex
}
func NewSN(oltid uint32, intfid uint32, onuid uint32) []byte {
sn := []byte{0, byte(oltid % 256), byte(intfid), byte(onuid)}
return sn
}
func NewOnus(oltid uint32, intfid uint32, nonus uint32, nnni uint32) []*Onu {
onus := []*Onu{}
for i := 0; i < int(nonus); i++ {
onu := Onu{}
onu.InternalState = new(onuState)
*onu.InternalState = ONU_PRE_ACTIVATED
onu.mu = &sync.Mutex{}
onu.IntfID = intfid
onu.OltID = oltid
onu.OperState = "up"
onu.SerialNumber = new(openolt.SerialNumber)
onu.SerialNumber.VendorId = []byte("BBSM")
onu.SerialNumber.VendorSpecific = NewSN(oltid, intfid, uint32(i))
onus = append(onus, &onu)
}
return onus
}
func (onu *Onu) InitializeStatus() {
onu.OperState = "up"
*onu.InternalState = ONU_PRE_ACTIVATED
}
func ValidateONU(targetonu openolt.Onu, regonus map[uint32][]*Onu) bool {
for _, onus := range regonus {
for _, onu := range onus {
if ValidateSN(*targetonu.SerialNumber, *onu.SerialNumber) {
return true
}
}
}
return false
}
func ValidateSN(sn1 openolt.SerialNumber, sn2 openolt.SerialNumber) bool {
return reflect.DeepEqual(sn1.VendorId, sn2.VendorId) && reflect.DeepEqual(sn1.VendorSpecific, sn2.VendorSpecific)
}
func UpdateOnusOpStatus(ponif uint32, onus []*Onu, opstatus string) {
for _, onu := range onus {
onu.OperState = "up"
logger.WithFields(log.Fields{
"onu": onu.SerialNumber,
"pon_interface": ponif,
}).Info("ONU discovered.")
}
}
func (onu *Onu) UpdateIntStatus(intstatus onuState) {
onu.mu.Lock()
defer onu.mu.Unlock()
*onu.InternalState = intstatus
}
func (onu *Onu) GetIntStatus() onuState {
onu.mu.Lock()
defer onu.mu.Unlock()
return *onu.InternalState
}