Add header missing license header
[ric-plt/resource-status-manager.git] / RSM / rsmdb / rsm_writer.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 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 //  platform project (RICP).
19
20 package rsmdb
21
22 import (
23         "encoding/json"
24         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/common"
25         "rsm/models"
26 )
27
28 type rsmWriterInstance struct {
29         sdl common.ISdlInstance
30 }
31
32 // RsmWriter interface allows inserting/updating data to/in redis BD with various keys
33 type RsmWriter interface {
34         SaveRsmRanInfo(rsmRanInfo *models.RsmRanInfo) error
35         SaveRsmGeneralConfiguration(cfg *models.RsmGeneralConfiguration) error
36 }
37
38 // GetRsmWriter returns reference to RsmWriter
39 func GetRsmWriter(sdl common.ISdlInstance) RsmWriter {
40         return &rsmWriterInstance{sdl: sdl}
41 }
42
43 // SaveRsmRanInfo saves the ran related rsm data with key RanName
44 func (r *rsmWriterInstance) SaveRsmRanInfo(rsmRanInfo *models.RsmRanInfo) error {
45
46         nodebNameKey, err := common.ValidateAndBuildNodeBNameKey(rsmRanInfo.RanName)
47
48         if err != nil {
49                 return err
50         }
51
52         return r.SaveWithKeyAndMarshal(nodebNameKey, rsmRanInfo)
53 }
54
55 // SaveRsmGeneralConfiguration saves the resource status request related configuration
56 func (r *rsmWriterInstance) SaveRsmGeneralConfiguration(cfg *models.RsmGeneralConfiguration) error {
57
58         return r.SaveWithKeyAndMarshal(buildRsmGeneralConfigurationKey(), cfg)
59 }
60
61
62 // SaveWithKeyAndMarshal marshals the Go structure to json and saves it to the DB with key 'key'
63 func (r *rsmWriterInstance) SaveWithKeyAndMarshal(key string, entity interface{}) error {
64
65         data, err := json.Marshal(entity)
66
67         if err != nil {
68                 return common.NewInternalError(err)
69         }
70
71         var pairs []interface{}
72         pairs = append(pairs, key, data)
73
74         err = r.sdl.Set(pairs)
75
76         if err != nil {
77                 return common.NewInternalError(err)
78         }
79
80         return nil
81 }