blob: 69fa26ff2576070bad8da5ff40b662b52b57d6e7 [file] [log] [blame]
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +00001/*
2 * Copyright 2020-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 common provides global definitions
18package common
19
20import (
21 "context"
Girish Gowdraf7d82d02022-04-26 16:18:35 -070022 "sync"
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +000023 "time"
24
Holger Hildebrandt94688c72021-12-17 12:13:02 +000025 me "github.com/opencord/omci-lib-go/v2/generated"
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +000026 "github.com/opencord/voltha-lib-go/v7/pkg/db"
27 "github.com/opencord/voltha-lib-go/v7/pkg/events/eventif"
28 "github.com/opencord/voltha-openonu-adapter-go/internal/pkg/devdb"
khenaidoo42dcdfd2021-10-19 17:34:12 -040029 ia "github.com/opencord/voltha-protos/v5/go/inter_adapter"
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +000030 "github.com/opencord/voltha-protos/v5/go/openolt"
31 "github.com/opencord/voltha-protos/v5/go/voltha"
32)
33
34// IopenONUAC interface to openONUAC
35type IopenONUAC interface {
36 GetSupportedFsms() *OmciDeviceFsms
37 LockMutexMibTemplateGenerated()
38 UnlockMutexMibTemplateGenerated()
39 GetMibTemplatesGenerated(string) (bool, bool)
40 SetMibTemplatesGenerated(string, bool)
41 RLockMutexDeviceHandlersMap()
42 RUnlockMutexDeviceHandlersMap()
43 GetDeviceHandler(string) (IdeviceHandler, bool)
44}
45
46// IdeviceHandler interface to deviceHandler
47type IdeviceHandler interface {
48 GetDeviceID() string
49 GetLogicalDeviceID() string
50 GetDevice() *voltha.Device
51 GetDeviceType() string
52 GetProxyAddressID() string
53 GetProxyAddressType() string
54 GetProxyAddress() *voltha.Device_ProxyAddress
55 GetEventProxy() eventif.EventProxy
56 GetOmciTimeout() int
57 GetAlarmAuditInterval() time.Duration
58 GetDlToOnuTimeout4M() time.Duration
59 GetUniEntityMap() *OnuUniPortMap
60 GetUniPortMask() int
61 GetPonPortNumber() *uint32
62 GetOnuIndication() *openolt.OnuIndication
63 GetUniVlanConfigFsm(uint8) IuniVlanConfigFsm
Holger Hildebrandt9afc1582021-11-30 16:10:19 +000064 GetTechProfileInstanceFromParentAdapter(context.Context, uint8, string) (*ia.TechProfileDownloadMessage, error)
Holger Hildebrandtc572e622022-06-22 09:19:17 +000065 GetExtendedOmciSupportEnabled() bool
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +000066
67 GetDeviceReasonString() string
mpagenkoe4782082021-11-25 12:04:26 +000068 ReasonUpdate(context.Context, uint8, bool) error
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +000069
70 GetCollectorIsRunning() bool
Girish Gowdraf7d82d02022-04-26 16:18:35 -070071 StartCollector(context.Context, *sync.WaitGroup)
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +000072 InitPmConfigs()
73 GetPmConfigs() *voltha.PmConfigs
74 GetMetricsEnabled() bool
75 GetOnuMetricsManager() IonuMetricsManager
76 GetOnuAlarmManager() IonuAlarmManager
77 GetOnuTP() IonuUniTechProf
78
79 GetAlarmManagerIsRunning(context.Context) bool
80 StartAlarmManager(context.Context)
81
Girish Gowdrae95687a2021-09-08 16:30:58 -070082 GetFlowMonitoringIsRunning(uniID uint8) bool
83
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +000084 CheckAuditStartCondition(context.Context, UsedOmciConfigFsms) bool
85
86 RemoveOnuUpgradeFsm(context.Context, *voltha.ImageState)
87 DeviceProcStatusUpdate(context.Context, OnuDeviceEvent)
88
89 SetReadyForOmciConfig(bool)
90 IsReadyForOmciConfig() bool
91
92 StorePersistentData(context.Context) error
93 StorePersUniFlowConfig(context.Context, uint8, *[]UniVlanFlowParams, bool) error
94
95 StartReconciling(context.Context, bool)
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +000096 IsReconciling() bool
97 IsSkipOnuConfigReconciling() bool
Holger Hildebrandt9afc1582021-11-30 16:10:19 +000098 SetReconcilingReasonUpdate(bool)
99 IsReconcilingReasonUpdate() bool
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000100 PrepareReconcilingWithActiveAdapter(context.Context)
Holger Hildebrandtb314f442021-11-24 12:03:10 +0000101 ReconcileDeviceTechProf(context.Context) bool
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000102 ReconcileDeviceFlowConfig(context.Context)
mpagenko101ac942021-11-16 15:01:29 +0000103 GetReconcileExpiryVlanConfigAbort() time.Duration
104 SendChUniVlanConfigFinished(value uint16)
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000105
106 VerifyUniVlanConfigRequest(context.Context, *OnuUniPort, uint8)
107 VerifyVlanConfigRequest(context.Context, uint8, uint8)
108 AddAllUniPorts(context.Context)
109 RemoveVlanFilterFsm(context.Context, *OnuUniPort)
110
111 EnableUniPortStateUpdate(context.Context)
112 DisableUniPortStateUpdate(context.Context)
113
114 SetBackend(context.Context, string) *db.Backend
115 GetBackendPathPrefix() string
116
117 RLockMutexDeletionInProgressFlag()
118 RUnlockMutexDeletionInProgressFlag()
119 GetDeletionInProgress() bool
120
khenaidoo42dcdfd2021-10-19 17:34:12 -0400121 SendOMCIRequest(context.Context, string, *ia.OmciMessage) error
kesavand011d5162021-11-25 19:21:06 +0530122 SendOnuSwSectionsOfWindow(context.Context, string, *ia.OmciMessages) error
123
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000124 CreatePortInCore(context.Context, *voltha.Port) error
Girish Gowdrae95687a2021-09-08 16:30:58 -0700125
126 PerOnuFlowHandlerRoutine(uniID uint8)
Holger Hildebrandt68854a82022-09-05 07:00:21 +0000127
128 UpdateInterface(context.Context) error
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000129}
130
131// IonuDeviceEntry interface to onuDeviceEntry
132type IonuDeviceEntry interface {
133 GetDevOmciCC() *OmciCC
134 GetOnuDB() *devdb.OnuDeviceDB
135 GetPersSerialNumber() string
136 GetPersVendorID() string
Holger Hildebrandt6a001d02022-06-15 08:32:48 +0000137 GetPersVersion() string
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000138 GetPersEquipmentID() string
Holger Hildebrandt0edf5b02022-05-04 14:19:43 +0000139 GetPersIsExtOmciSupported() bool
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000140
141 GetMibUploadFsmCommChan() chan Message
142 GetMibDownloadFsmCommChan() chan Message
143
144 GetOmciRebootMsgRevChan() chan Message
145 WaitForRebootResponse(context.Context, chan Message) error
146
147 IncrementMibDataSync(context.Context)
148
149 GetActiveImageMeID(context.Context) (uint16, error)
Holger Hildebrandtfdb4bba2022-03-10 12:12:59 +0000150 HandleSwImageIndications(context.Context, uint16, me.AttributeValueMap) bool
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000151 GetPersActiveSwVersion() string
152 SetPersActiveSwVersion(string)
153 GetActiveImageVersion(context.Context) string
154 ModifySwImageInactiveVersion(context.Context, string)
155 ModifySwImageActiveCommit(context.Context, uint8)
156
157 AllocateFreeTcont(context.Context, uint16) (uint16, bool, error)
158 FreeTcont(context.Context, uint16)
Holger Hildebrandtc56febd2022-02-09 13:23:30 +0000159
160 SendOnuDeviceEvent(context.Context, string, string)
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000161}
162
163// IonuMetricsManager interface to onuMetricsManager
164type IonuMetricsManager interface {
165 AddGemPortForPerfMonitoring(context.Context, uint16)
166 RemoveGemPortForPerfMonitoring(context.Context, uint16)
167}
168
169// IonuAlarmManager interface to onuAlarmManager
170type IonuAlarmManager interface {
171 HandleOmciAlarmNotificationMessage(context.Context, OmciMessage)
172 ResetAlarmUploadCounters()
173 GetAlarmMgrEventChannel() chan Message
174 GetAlarmUploadSeqNo() uint16
175 IncrementAlarmUploadSeqNo()
176}
177
178// IonuUniTechProf interface to onuUniTechProf
179type IonuUniTechProf interface {
180 GetAllBidirectionalGemPortIDsForOnu() []uint16
181 SetProfileToDelete(uint8, uint8, bool)
182}
183
184// IuniVlanConfigFsm interface to uniVlanConfigFsm
185type IuniVlanConfigFsm interface {
Holger Hildebrandtc192bc42021-10-28 14:38:31 +0000186 IsFlowRemovePending(context.Context, chan<- bool) bool
Holger Hildebrandt4b5e73f2021-08-19 06:51:21 +0000187}