// // Copyright 2019 AT&T Intellectual Property // Copyright 2019 Nokia // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package common import ( "errors" "fmt" ) /* ValidateAndBuildCellIdKey builds key according to the specified format returns the resulting string */ func ValidateAndBuildCellIdKey(cellId string) (string, IRNibError) { if cellId == "" { e := errors.New("#utils.ValidateAndBuildCellIdKey - an empty cell id received") return "", NewValidationError(e) } return fmt.Sprintf("CELL:%s", cellId), nil } /* ValidateAndBuildNrCellIdKey builds key according to the specified format returns the resulting string */ func ValidateAndBuildNrCellIdKey(cellId string) (string, IRNibError) { if cellId == "" { e := errors.New("#utils.ValidateAndBuildNrCellIdKey - an empty cell id received") return "", NewValidationError(e) } return fmt.Sprintf("NRCELL:%s", cellId), nil } /* ValidateAndBuildNodeBNameKey builds key according to the specified format returns the resulting string */ func ValidateAndBuildNodeBNameKey(inventoryName string) (string, IRNibError) { if inventoryName == "" { e := errors.New("#utils.ValidateAndBuildNodeBNameKey - an empty inventory name received") return "", NewValidationError(e) } return fmt.Sprintf("RAN:%s", inventoryName), nil } /* ValidateAndBuildNodeBIdKey builds key according to the specified format returns the resulting string */ func ValidateAndBuildNodeBIdKey(nodeType string, plmnId string, nbId string) (string, IRNibError) { if nodeType == "" { e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty node type received") return "", NewValidationError(e) } if plmnId == "" { e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty plmnId received") return "", NewValidationError(e) } if nbId == "" { e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty nbId received") return "", NewValidationError(e) } return fmt.Sprintf("%s:%s:%s", nodeType, plmnId, nbId), nil } /* ValidateAndBuildCellNamePciKey builds key according to the specified format returns the resulting string */ func ValidateAndBuildCellNamePciKey(inventoryName string, pci uint32) (string, IRNibError) { if inventoryName == "" { e := errors.New("#utils.ValidateAndBuildCellNamePciKey - an empty inventory name received") return "", NewValidationError(e) } return fmt.Sprintf("PCI:%s:%02x", inventoryName, pci), nil } func ValidateAndBuildRanLoadInformationKey(inventoryName string) (string, IRNibError) { if inventoryName == "" { e := errors.New("#utils.ValidateAndBuildRanLoadInformationKey - an empty inventory name received") return "", NewValidationError(e) } return fmt.Sprintf("LOAD:%s", inventoryName), nil }