blob: c4bab2888fe926c0e7d35c62186928e1bd6cfb11 [file] [log] [blame]
Matteo Scandolo11006992019-08-28 11:29:46 -07001/*
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
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070017package devices
18
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070019import (
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070020 "strconv"
Pragya Arya324337e2020-02-20 14:35:08 +053021 "time"
22
23 "github.com/looplab/fsm"
24 "github.com/opencord/bbsim/internal/common"
25 "github.com/opencord/voltha-protos/v2/go/openolt"
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070026)
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070027
Pragya Arya2225f202020-01-29 18:05:01 +053028type mode int
29
30// Constants for Controlled Activation modes
31const (
32 Default mode = iota
33 OnlyONU
34 OnlyPON
35 Both
36)
37
38// ControlledActivationModes maps string to int value of mode
39var ControlledActivationModes = map[string]mode{
40 "default": Default,
41 "only-onu": OnlyONU,
42 "only-pon": OnlyPON,
43 "both": Both,
44}
45
Matteo Scandolo11006992019-08-28 11:29:46 -070046var newFSM = fsm.NewFSM
47
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070048func getOperStateFSM(cb fsm.Callback) *fsm.FSM {
Matteo Scandolo11006992019-08-28 11:29:46 -070049 return newFSM(
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070050 "down",
51 fsm.Events{
52 {Name: "enable", Src: []string{"down"}, Dst: "up"},
53 {Name: "disable", Src: []string{"up"}, Dst: "down"},
54 },
55 fsm.Callbacks{
56 "enter_state": func(e *fsm.Event) {
57 cb(e)
58 },
59 },
60 )
61}
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070062
Matteo Scandolo40e067f2019-10-16 16:59:41 -070063// deprecated
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070064func onuSnToString(sn *openolt.SerialNumber) string {
65 s := string(sn.VendorId)
66 for _, i := range sn.VendorSpecific {
67 s = s + strconv.FormatInt(int64(i/16), 16) + strconv.FormatInt(int64(i%16), 16)
68 }
69 return s
70}
Pragya Arya324337e2020-02-20 14:35:08 +053071
72func publishEvent(eventType string, intfID int32, onuID int32, onuSerial string) {
73 if olt.PublishEvents {
74 currentTime := time.Now()
75
76 event := common.Event{
77 EventType: eventType,
78 OltID: olt.ID,
79 IntfID: intfID,
80 OnuID: onuID,
81 OnuSerial: onuSerial,
82 Timestamp: currentTime.Format("2006-01-02 15:04:05.000000000"),
83 EpochTime: currentTime.UnixNano() / 1000000,
84 }
85 olt.EventChannel <- event
86 }
87}