gpt4 book ai didi

c# - 使用 SWIG 获取 C 结构来记住 C# 更改?

转载 作者:行者123 更新时间:2023-11-30 15:53:59 27 4
gpt4 key购买 nike

所以我尝试在 Linux(MonoDevelop) 上通过 SWIG 使用 C# 中的 C 库。一切都编译并运行得很好,但是当我调用 MsgBus_UseString 时,控制台输出显示乱码而不是“HappyHappyJoyJoy”。

这是我的 C# 主要内容:

  public static void Main (string[] args)
{
SWIGTYPE_p_msgbus msgBusObj = msgbus_client.MsgBus_Create();

ret = msgbus_client.MsgBus_setString(msgBusObj, "HappyHappyJoyJoy");
Console.WriteLine ("Set setString ret = "+ret);

ret = msgbus_client.MsgBus_UseString(msgBusObj);
Console.WriteLine ("UseString ret = "+ret);
}

这是函数 MsgBus_UseString 在 C 库中的样子:

static int MsgBus_UseString( msgbus_t * pObj )
{
if ( pObj ){
printf("The String = %s", pObj->TheString);
return Connect(pObj->TheString);
}
}

C 库中的 MsgBus_setString 函数:

int MsgBus_setString( msgbus_t * pObj, const char * theStringIn )
{
int status = 2; // invalid msgbus_t pointer

if( pObj ) {
pObj->TheString = (char*)theStringIn;
status = 0;
}

printf(fp, "pObj->TheString = %s \n", pObj->TheString);

return status;
}

这就是我的 SWIG 界面的样子:

/* Creates wrappers so that msgbus_client can be used in C# */
%module msgbus_client
%{
#include "msgbus_client.h"
#include "msgbus_var.h"
%}

%inline %{
typedef signed char int8_t;
typedef short int int16_t;
typedef int int32_t;
typedef long long int int64_t;
typedef unsigned char uint8_t;
typedef unsigned short int uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long int uint64_t;
typedef long int _time_t;
%}

%include "msgbus_client.h"
%include "msgbus_var.h"

这是 msgbus_client.h 文件中的 typedef:

typedef struct msgbus msgbus_t;

我已经为此苦苦挣扎有一段时间了。 MsgBus_setString 函数中的 printf 返回“HappyHappyJoyJoy”,但由于某种原因,在调用 MsgBus_UseString 函数时此数据丢失。正如你所看到的,我依次调用它们,“set”函数返回 0(无错误),而“use”函数返回 -1(错误)。这是有道理的,因为 printf 显示 TheString 是一堆随机/不可读的字符。 msgbus 结构体非常大,所以我想避免包装整个结构,但如果没有其他方法,我会这样做。

不确定是否需要,但以防万一,这里是 C 库中的创建函数:

msgbus_t * MsgBus_Create()
{
struct msgbus * pObj = NULL;

pObj = (struct msgbus*)calloc(1, sizeof(struct msgbus));
if ( pObj ){

pObj->TheString = NULL;

}

return pObj;
}

以防万一,我是一个 SWIG 新手,但根据文档,这应该可行。我显然错过了一些东西,但我似乎无法弄清楚它是什么。非常感谢任何帮助。

编辑:感谢您的快速回复。

这是 msgbus 结构体的定义:

struct msgbus{
int fd;
int run;
pthread_t thread;
//.
//. More Stuff
//.
tlv_buffer_t * pSend;
tlv_buffer_t * pResp;

char * TheString; /*!< The String */
};

msgbus 结构体的定义位于 msgbus_client.c 和 msgbus_client.h 中,具有以下 typedef:

typedef struct msgbus msgbus_t;

上面已经提到了。这是执行 SWIGing 的脚本:

    # Begin Swiggin! #
echo "Starting to SWIG! ... "
swig -csharp -outdir msgbus_swig msgbus_client.i


Switches="-c -I/home/includes "\
"-Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -g -Wall -D__linux__ "\


# Build binaries #
g++ $Switches -o "$msgbusBin/msgbus_client_wrap.o" "msgbus_client_wrap.c"

# Generate Shared Lib #
g++ -isystem /home/include \
-isystem /home/another/include \
-D__packed__= -DIMAGE_APPS_PROC -DFEATURE_Q_SINGLE_LINK -DFEATURE_Q_NO_SELF_QPTR \
-DFEATURE_LINUX -DFEATURE_NATIVELINUX -DFEATURE_DSM_DUP_ITEMS -DTARGET_desktop \
-I/home/more/include -Wall -Wundef \
-Wstrict-prototypes -Wno-trigraphs -g -Wall -D__linux__ -fpic -shared \
-L/home/lib \
-Wl,-soname,libmsgbus_client.so -o "libmsgbus_client.so" \
"$msgbusBin/msgbus_client.o" "$msgbusBin/msgbus_var.o" "$msgbusBin/msgbus_client_wrap.o" -lmificommon -lc -lrt -lpthread

echo "SWIG complete!"

所以我从 make 日志中复制了很多 g++ 调用,因此其中有一些我不完全理解的开关。如果我需要显示其他内容,请告诉我。再次感谢您的帮助。

最佳答案

对于您的 string 问题,问题在于您尝试将 C# 字符串直接编码(marshal)至 char *。但请注意,char * 存储的是指针,而不是string 本身。您需要做的就是复制字符串。为此,您可能还需要分配/保留内存。

关于c# - 使用 SWIG 获取 C 结构来记住 C# 更改?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13391321/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com