Merge "Prepare Swagger for the 3 APIs"
[ric-plt/e2mgr.git] / E2Manager / rmrCgo / rmrCgoTypes.go
index d7dcbef..d3886b4 100644 (file)
@@ -1,6 +1,7 @@
 //
 // Copyright 2019 AT&T Intellectual Property
 // Copyright 2019 Nokia
+// Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved.
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -31,13 +32,14 @@ import (
        "unsafe"
 )
 
-func NewMBuf(mType int, len int, meid string, payload *[]byte, xAction *[]byte) *MBuf {
+func NewMBuf(mType int, len int, meid string, payload *[]byte, xAction *[]byte, msgSrc unsafe.Pointer) *MBuf {
        return &MBuf{
-               MType:   mType,
-               Len:     len,
-               Meid:    meid,
-               Payload: payload,
-               XAction: xAction,
+               mType,
+               len,
+               meid,
+               payload,
+               xAction,
+               msgSrc,
        }
 }
 
@@ -79,11 +81,16 @@ const (
        RIC_E2_SETUP_REQ                                         = C.RIC_E2_SETUP_REQ
        RIC_E2_SETUP_RESP                    = C.RIC_E2_SETUP_RESP
        RIC_E2_SETUP_FAILURE                 = C.RIC_E2_SETUP_FAILURE
+       RIC_SERVICE_QUERY                    = C.RIC_SERVICE_QUERY
+       RIC_SERVICE_UPDATE                   = C.RIC_SERVICE_UPDATE
+       RIC_SERVICE_UPDATE_ACK               = C.RIC_SERVICE_UPDATE_ACK
+       RIC_SERVICE_UPDATE_FAILURE           = C.RIC_SERVICE_UPDATE_FAILURE
 )
 
 const (
        RMR_MAX_XACTION_LEN = int(C.RMR_MAX_XID)
        RMR_MAX_MEID_LEN    = int(C.RMR_MAX_MEID)
+       RMR_MAX_SRC_LEN                 = int(C.RMR_MAX_SRC)
 
        //states
        RMR_OK             = C.RMR_OK
@@ -129,12 +136,17 @@ type MBuf struct {
        Meid    string //Managed entity id (RAN name)
        Payload *[]byte
        XAction *[]byte
+       msgSrc  unsafe.Pointer
 }
 
 func (m MBuf) String() string {
        return fmt.Sprintf("{ MType: %d, Len: %d, Meid: %q, Xaction: %q, Payload: [%x] }", m.MType, m.Len, m.Meid, m.XAction, m.Payload)
 }
 
+func (m MBuf) GetMsgSrc() unsafe.Pointer {
+       return m.msgSrc
+}
+
 type Context struct {
        MaxMsgSize int
        Flags      int
@@ -145,6 +157,7 @@ type Context struct {
 type RmrMessenger interface {
        Init(port string, maxMsgSize int, flags int, logger *logger.Logger) RmrMessenger
        SendMsg(msg *MBuf, printLogs bool) (*MBuf, error)
+       WhSendMsg(msg *MBuf, printLogs bool) (*MBuf, error)
        RecvMsg() (*MBuf, error)
        IsReady() bool
        Close()