2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
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
9 // http://www.apache.org/licenses/LICENSE-2.0
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.
25 ValidateAndBuildCellIdKey builds key according to the specified format returns the resulting string
27 func ValidateAndBuildCellIdKey(cellId string) (string, IRNibError) {
29 e := errors.New("#utils.ValidateAndBuildCellIdKey - an empty cell id received")
30 return "", NewValidationError(e)
32 return fmt.Sprintf("CELL:%s", cellId), nil
36 ValidateAndBuildNrCellIdKey builds key according to the specified format returns the resulting string
38 func ValidateAndBuildNrCellIdKey(cellId string) (string, IRNibError) {
40 e := errors.New("#utils.ValidateAndBuildNrCellIdKey - an empty cell id received")
41 return "", NewValidationError(e)
43 return fmt.Sprintf("NRCELL:%s", cellId), nil
47 ValidateAndBuildNodeBNameKey builds key according to the specified format returns the resulting string
49 func ValidateAndBuildNodeBNameKey(inventoryName string) (string, IRNibError) {
50 if inventoryName == "" {
51 e := errors.New("#utils.ValidateAndBuildNodeBNameKey - an empty inventory name received")
52 return "", NewValidationError(e)
54 return fmt.Sprintf("RAN:%s", inventoryName), nil
58 ValidateAndBuildNodeBIdKey builds key according to the specified format returns the resulting string
60 func ValidateAndBuildNodeBIdKey(nodeType string, plmnId string, nbId string) (string, IRNibError) {
62 e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty node type received")
63 return "", NewValidationError(e)
66 e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty plmnId received")
67 return "", NewValidationError(e)
70 e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty nbId received")
71 return "", NewValidationError(e)
73 return fmt.Sprintf("%s:%s:%s", nodeType, plmnId, nbId), nil
77 ValidateAndBuildCellNamePciKey builds key according to the specified format returns the resulting string
79 func ValidateAndBuildCellNamePciKey(inventoryName string, pci uint32) (string, IRNibError) {
80 if inventoryName == "" {
81 e := errors.New("#utils.ValidateAndBuildCellNamePciKey - an empty inventory name received")
82 return "", NewValidationError(e)
84 return fmt.Sprintf("PCI:%s:%02x", inventoryName, pci), nil
87 func ValidateAndBuildRanLoadInformationKey(inventoryName string) (string, IRNibError) {
89 if inventoryName == "" {
90 e := errors.New("#utils.ValidateAndBuildRanLoadInformationKey - an empty inventory name received")
91 return "", NewValidationError(e)
94 return fmt.Sprintf("LOAD:%s", inventoryName), nil