1 // This source code is part of the near-RT RIC (RAN Intelligent Controller)
2 // platform project (RICP).
4 // Copyright 2019 Nokia
6 // Licensed under the Apache License, Version 2.0 (the "License");
7 // you may not use this file except in compliance with the License.
8 // You may obtain a copy of the License at
10 // http://www.apache.org/licenses/LICENSE-2.0
12 // Unless required by applicable law or agreed to in writing, software
13 // distributed under the License is distributed on an "AS IS" BASIS,
14 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 // See the License for the specific language governing permissions and
16 // limitations under the License.
19 // This source code is part of the near-RT RIC (RAN Intelligent Controller)
20 // platform project (RICP).
26 "github.com/pkg/errors"
41 type JsonSender struct {
45 func NewJsonSender(logger *logger.Logger) *JsonSender {
51 func (s *JsonSender) SendJsonRmrMessage(command models.JsonCommand /*the copy is modified locally*/, xAction *[]byte, r *rmr.Service) error {
53 _, err := fmt.Sscanf(command.PackedPayload, "%x", &payload)
55 return errors.New(fmt.Sprintf("convert inputPayloadAsStr to payloadAsByte. Error: %v\n", err))
57 command.PackedPayload = string(payload)
58 command.TransactionId = expandTransactionId(command.TransactionId)
59 if len(command.TransactionId) == 0 {
60 command.TransactionId = string(*xAction)
62 command.PayloadHeader = s.expandPayloadHeader(command.PayloadHeader, &command)
63 s.logger.Infof("#JsonSender.SendJsonRmrMessage - command payload header: %s", command.PayloadHeader)
64 rmrMsgId, err := rmr.MessageIdToUint(command.RmrMessageType)
66 return errors.New(fmt.Sprintf("invalid rmr message id: %s", command.RmrMessageType))
69 msg := append([]byte(command.PayloadHeader), payload...)
70 messageInfo := models.NewMessageInfo(int(rmrMsgId), command.RanName, msg, []byte(command.TransactionId))
71 s.logger.Infof("#JsonSender.SendJsonRmrMessage - going to send message: %s", messageInfo)
73 _, err = r.SendMessage(int(rmrMsgId), command.RanName, msg, []byte(command.TransactionId))
78 * transactionId (xAction): The value may have a fixed value or $ or <prefix>$.
79 * $ is replaced by a value generated at runtime (possibly unique per message sent).
80 * If the tag does not exist, then the mock shall use the value taken from the incoming message.
82 func expandTransactionId(id string) string {
83 if len(id) == 1 && id[0] == '$' {
84 return fmt.Sprintf("%d", incAndGetCounter())
86 if len(id) > 1 && id[len(id)-1] == '$' {
87 return fmt.Sprintf("%s%d", id[:len(id)-1], incAndGetCounter())
93 * payloadHeader: A prefix to combine with the payload that will be the message’s payload. The value may include variables of the format $<name> or #<name> where:
94 * $<name> expands to the value of <name> if it exists or the empty string if not.
95 * #<name> expands to the length of the value of <name> if it exists or omitted if not.
96 * The intention is to allow the Mock to construct the payload header required by the setup messages (ranIp|ranPort|ranName|payload len|<payload>).
97 * Example: “payloadHeader”: “$ranIp|$ranPort|$ranName|#packedPayload|”
100 func (s *JsonSender) expandPayloadHeader(header string, command *models.JsonCommand) string {
101 var name strings.Builder
102 var expandedHeader strings.Builder
104 r := strings.NewReader(header)
105 ch, err := r.ReadByte()
114 ch, err = r.ReadByte() //on error ch == 0
115 if unicode.IsDigit(rune(ch)) || unicode.IsLetter(rune(ch)) {
117 name.WriteByte(byte(unicode.ToUpper(rune(ch))))
122 if fieldValue := reflect.Indirect(reflect.ValueOf(command)).FieldByName(name.String()); fieldValue.IsValid() {
123 switch fieldValue.Kind() {
125 expandedHeader.WriteString(fieldValue.String())
126 case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
127 expandedHeader.WriteString(strconv.FormatInt(fieldValue.Int(), 10))
129 expandedHeader.WriteString(strconv.FormatBool(fieldValue.Bool()))
130 case reflect.Float64, reflect.Float32:
131 expandedHeader.WriteString(fmt.Sprintf("%g", fieldValue.Float()))
133 s.logger.Errorf("#JsonSender.expandPayloadHeader - invalid type for $%s, value must be a string, an int, a bool or a float", name.String())
143 ch, err = r.ReadByte() //on error ch == 0
144 if unicode.IsDigit(rune(ch)) || unicode.IsLetter(rune(ch)) {
146 name.WriteByte(byte(unicode.ToUpper(rune(ch))))
151 if fieldValue := reflect.Indirect(reflect.ValueOf(command)).FieldByName(name.String()); fieldValue.IsValid() {
152 if fieldValue.Kind() == reflect.String {
153 expandedHeader.WriteString(strconv.FormatInt(int64(len(fieldValue.String())), 10))
155 s.logger.Errorf("#JsonSender.expandPayloadHeader - invalid type for #%s, value must be a string", name.String())
164 if unicode.IsPrint(rune(ch)) {
165 expandedHeader.WriteByte(ch)
167 ch, err = r.ReadByte()
170 return expandedHeader.String()
173 func incAndGetCounter() uint64 {
174 return atomic.AddUint64(&counter, 1)
178 counter = uint64(time.Now().Unix() - 1572000000)