X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=common%2Futils.go;h=baf5d233636def00d99c218cfc34500755f538ac;hb=70a03728e0fb0826efb6036997dbdde1d1feef54;hp=7b7b4e2d3aed04cb3e877362a7fc232ba59aaf6d;hpb=3519d193f64372d84b638179e2d050ba3f9dc3ca;p=ric-plt%2Fnodeb-rnib.git diff --git a/common/utils.go b/common/utils.go index 7b7b4e2..baf5d23 100644 --- a/common/utils.go +++ b/common/utils.go @@ -17,17 +17,15 @@ package common import ( - "errors" "fmt" ) /* ValidateAndBuildCellIdKey builds key according to the specified format returns the resulting string */ -func ValidateAndBuildCellIdKey(cellId string) (string, IRNibError) { +func ValidateAndBuildCellIdKey(cellId string) (string, error) { if cellId == "" { - e := errors.New("#utils.ValidateAndBuildCellIdKey - an empty cell id received") - return "", NewValidationError(e) + return "", NewValidationError("#utils.ValidateAndBuildCellIdKey - an empty cell id received") } return fmt.Sprintf("CELL:%s", cellId), nil } @@ -35,10 +33,9 @@ func ValidateAndBuildCellIdKey(cellId string) (string, IRNibError) { /* ValidateAndBuildNrCellIdKey builds key according to the specified format returns the resulting string */ -func ValidateAndBuildNrCellIdKey(cellId string) (string, IRNibError) { +func ValidateAndBuildNrCellIdKey(cellId string) (string, error) { if cellId == "" { - e := errors.New("#utils.ValidateAndBuildNrCellIdKey - an empty cell id received") - return "", NewValidationError(e) + return "", NewValidationError("#utils.ValidateAndBuildNrCellIdKey - an empty cell id received") } return fmt.Sprintf("NRCELL:%s", cellId), nil } @@ -46,10 +43,9 @@ func ValidateAndBuildNrCellIdKey(cellId string) (string, IRNibError) { /* ValidateAndBuildNodeBNameKey builds key according to the specified format returns the resulting string */ -func ValidateAndBuildNodeBNameKey(inventoryName string) (string, IRNibError) { +func ValidateAndBuildNodeBNameKey(inventoryName string) (string, error) { if inventoryName == "" { - e := errors.New("#utils.ValidateAndBuildNodeBNameKey - an empty inventory name received") - return "", NewValidationError(e) + return "", NewValidationError("#utils.ValidateAndBuildNodeBNameKey - an empty inventory name received") } return fmt.Sprintf("RAN:%s", inventoryName), nil } @@ -57,18 +53,15 @@ func ValidateAndBuildNodeBNameKey(inventoryName string) (string, IRNibError) { /* ValidateAndBuildNodeBIdKey builds key according to the specified format returns the resulting string */ -func ValidateAndBuildNodeBIdKey(nodeType string, plmnId string, nbId string) (string, IRNibError) { +func ValidateAndBuildNodeBIdKey(nodeType string, plmnId string, nbId string) (string, error) { if nodeType == "" { - e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty node type received") - return "", NewValidationError(e) + return "", NewValidationError("#utils.ValidateAndBuildNodeBIdKey - an empty node type received") } if plmnId == "" { - e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty plmnId received") - return "", NewValidationError(e) + return "", NewValidationError("#utils.ValidateAndBuildNodeBIdKey - an empty plmnId received") } if nbId == "" { - e := errors.New("#utils.ValidateAndBuildNodeBIdKey - an empty nbId received") - return "", NewValidationError(e) + return "", NewValidationError("#utils.ValidateAndBuildNodeBIdKey - an empty nbId received") } return fmt.Sprintf("%s:%s:%s", nodeType, plmnId, nbId), nil } @@ -76,19 +69,17 @@ func ValidateAndBuildNodeBIdKey(nodeType string, plmnId string, nbId string) (st /* ValidateAndBuildCellNamePciKey builds key according to the specified format returns the resulting string */ -func ValidateAndBuildCellNamePciKey(inventoryName string, pci uint32) (string, IRNibError) { +func ValidateAndBuildCellNamePciKey(inventoryName string, pci uint32) (string, error) { if inventoryName == "" { - e := errors.New("#utils.ValidateAndBuildCellNamePciKey - an empty inventory name received") - return "", NewValidationError(e) + return "", NewValidationError("#utils.ValidateAndBuildCellNamePciKey - an empty inventory name received") } return fmt.Sprintf("PCI:%s:%02x", inventoryName, pci), nil } -func ValidateAndBuildRanLoadInformationKey(inventoryName string) (string, IRNibError) { +func ValidateAndBuildRanLoadInformationKey(inventoryName string) (string, error) { if inventoryName == "" { - e := errors.New("#utils.ValidateAndBuildRanLoadInformationKey - an empty inventory name received") - return "", NewValidationError(e) + return "", NewValidationError("#utils.ValidateAndBuildRanLoadInformationKey - an empty inventory name received") } return fmt.Sprintf("LOAD:%s", inventoryName), nil