push code back with legal issues fix
[ric-plt/e2mgr.git] / E2Manager / managers / notification_manager.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //      http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 package managers
19
20 import (
21         "e2mgr/logger"
22         "e2mgr/models"
23         "e2mgr/providers"
24         "e2mgr/rNibWriter"
25         "e2mgr/rmrCgo"
26         "e2mgr/sessions"
27         "fmt"
28         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/reader"
29         "time"
30 )
31
32 type NotificationManager struct{
33         rnibReaderProvider func() reader.RNibReader
34         rnibWriterProvider func() rNibWriter.RNibWriter
35 }
36
37 func NewNotificationManager(rnibReaderProvider func() reader.RNibReader, rnibWriterProvider func() rNibWriter.RNibWriter) *NotificationManager {
38         return &NotificationManager{
39                 rnibReaderProvider: rnibReaderProvider,
40                 rnibWriterProvider: rnibWriterProvider,
41         }
42 }
43 //TODO add NEWHandler with log
44 func (m NotificationManager) HandleMessage(logger *logger.Logger, e2Sessions sessions.E2Sessions, mbuf *rmrCgo.MBuf, responseChannel chan<- *models.NotificationResponse){
45
46         provider := providers.NewNotificationHandlerProvider(m.rnibReaderProvider, m.rnibWriterProvider)
47         notificationHandler, err := provider.GetNotificationHandler(mbuf.MType)
48
49         if err != nil {
50                 logger.Errorf(fmt.Sprintf("%s", err))
51                 return
52         }
53
54         notificationRequest := models.NotificationRequest{RanName: mbuf.Meid, Len: mbuf.Len, Payload: *mbuf.Payload,
55                 StartTime: time.Now(), TransactionId: string(*mbuf.XAction)}
56
57         go notificationHandler.Handle(logger, e2Sessions, &notificationRequest, responseChannel)
58 }