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