- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试从 C# 应用程序 P/Invoke 到 C 库,发送一个包含字符串数组的结构。我确实可以控制 C 库,并且可以根据需要进行更改。
这是一条单向路:从 C# 到 C,我不需要观察 C 端对结构所做的修改(我也按值而不是按引用传递它,尽管我可能会更改稍后 - 首先尝试解决眼前的问题)。
我的 C 结构目前看起来像这样:
// C
struct MyArgs {
int32_t someArg;
char** filesToProcess;
int32_t filesToProcessLength;
};
在 C# 中,我复制了这样的结构:
// C#
public struct MyArgs
{
public int someArg;
[MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.LPStr)]
public string[] filesToProcess;
public int filesToProcessLength;
}
然后传递给库:
// C#
[DllImport("myLib.so", EntryPoint = "myFunction", CallingConvention = CallingConvention.Cdecl)]
internal static extern bool myFunction(MyArgs args);
var myArgs = new MyArgs {
someArg = 10,
filesToProcess = new string[] { "one", "two", "three" }
};
myArgs.filesToProcessLength = myArgs.filesToProcess.Length;
Console.WriteLine(myFunction(myArgs));
我尝试使用它的地方:
// C
bool myFunction(struct MyArgs args) {
printf("Files to Process: %i\n", args.filesToProcessLength);
for (int i = 0; i < args.filesToProcessLength; i++) {
char* str = args.filesToProcess[i];
printf("\t%i. %s\n", i, str);
}
return true;
}
这基本上会使应用程序崩溃。我得到一个输出,上面写着 Files to Process: 3
但随后应用程序就停止了。如果我将 for 循环更改为不尝试访问该字符串,它会在循环中计数 - 所以我似乎遇到了某种访问冲突。
如果我更改我的代码以接受数组作为函数参数的一部分,它会起作用:
// C
bool myFunction(struct MyArgs args, char** filesToProcess, int32_t filesToProcesLength) {
printf("Files to Process: %i\n", filesToProcessLength);
for (int i = 0; i < filesToProcessLength; i++) {
char* str = filesToProcess[i];
printf("\t%i. %s\n", i, str);
}
return true;
}
// C#
[DllImport("myLib.so", EntryPoint = "myFunction", CallingConvention = CallingConvention.Cdecl)]
internal static extern bool myFunction(MyArgs args, [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPStr)] filesToProcess, int filesToProcessLength);
我最初的想法是,因为在一个结构中,我使用了 ByValArray,它可能是一个指向字符串数组的指针(所以本质上是一个 char***?),但即使我将类型更改为 char* **
在结构中执行 char** strArray = *args.filesToProcess
,我得到相同的结果/非工作崩溃。
由于我主要是一名具有一些 C 知识的 C# 开发人员,所以我在这里有点不知所措。将字符串集合 P/Invoke 到结构内的 C 库中的最佳方法是什么?如前所述,我可以随心所欲地更改 C 库,只是更喜欢将其保留在结构中而不是添加函数参数。
如果重要的话,这是在 Linux 上,使用 gcc 9.3.0,这只是普通的 C,而不是 C++。
更新:
更新 2:查看使用 this code 获取的内存转储,似乎 C# 端没有以我想要的方式发送数组,我认为 ByValArray 是这里的问题。
0000 6f 6e 65 00 00 00 00 00 00 00 00 00 00 00 00 00 one.............
0010 50 44 fc 00 00 00 00 00 61 00 00 00 00 00 00 00 PD......a.......
0020 53 00 79 00 73 00 74 00 65 00 6d 00 2e 00 53 00 S.y.s.t.e.m...S.
0030 65 00 63 00 75 00 72 00 69 00 74 00 79 00 2e 00 e.c.u.r.i.t.y...
0040 43 00 72 00 79 00 70 00 74 00 6f 00 67 00 72 00 C.r.y.p.t.o.g.r.
0050 61 00 70 00 68 00 79 00 2e 00 4f 00 70 00 65 00 a.p.h.y...O.p.e.
0060 6e 00 53 00 73 00 6c 00 00 00 98 1f dc 7f 00 00 n.S.s.l.........
所以我得到了第一个数组元素,但之后它只是随机垃圾(每次运行都会改变)- 所以 C 端暂时没问题,但 C# 端不是。
更新 3:我进行了更多实验,并将 C# 端从字符串数组更改为 IntPtr 和 Marshal.UnsafeAddrOfPinnedArrayElement(filesToProcess, 0)
。在 C 端,我现在得到了 C# 数组,当然,它带有 C# 内容和错误的编码,但至少它表明它确实是 C# 端的编码(marshal)处理问题。
0000 90 0f 53 f7 27 7f 00 00 03 00 00 00 6f 00 6e 00 ..S.'.......o.n.
0010 65 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 e...............
0020 90 0f 53 f7 27 7f 00 00 03 00 00 00 74 00 77 00 ..S.'.......t.w.
0030 6f 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 o...............
0040 90 0f 53 f7 27 7f 00 00 05 00 00 00 74 00 68 00 ..S.'.......t.h.
0050 72 00 65 00 65 00 00 00 00 00 00 00 00 00 00 00 r.e.e...........
0060 90 0f 53 f7 27 7f 00 00 27 00 00 00 20 00 4d 00 ..S.'...'... .M.
我遇到了关键问题:如果我想按值传递数组,结构大小在每次调用时都是动态的,这可能是个问题。但是传递 ByValArray 似乎也不正确。可能需要使用固定大小的数组、数组的 IntPtr,或者放弃结构并将其作为函数参数传递。
但一如既往,如果有人有更好的计划,我会洗耳恭听:)
最佳答案
您不能在结构中使用可变大小数组,您必须手动编码整个数组,或者使用更容易的参数,尤其是在(C# 到 C)-only 方式中。
如果出于某种原因你想使用一个结构体,那么你可以这样做:
C端(我用的是Windows,你可能要适配):
struct MyArgs {
int32_t someArg;
char** filesToProcess;
int32_t filesToProcessLength;
};
// I pass struct as reference, not value, but this is not relevant
// I also use __stdcall which is quite standard on Windows
extern "C" {
__declspec(dllexport) bool __stdcall myFunction(struct MyArgs* pargs) {
printf("Files to Process: %i\n", pargs->filesToProcessLength);
for (int i = 0; i < pargs->filesToProcessLength; i++) {
char* str = pargs->filesToProcess[i];
printf("\t%i. %s\n", i, str);
}
return true;
}
}
C# 端:
static void Main(string[] args)
{
var files = new List<string>();
files.Add("hello");
files.Add("world!");
var elementSize = IntPtr.Size;
var my = new MyArgs();
my.filesToProcessLength = files.Count;
// allocate the array
my.filesToProcess = Marshal.AllocCoTaskMem(files.Count * elementSize);
try
{
for (var i = 0; i < files.Count; i++)
{
// allocate each file
// I use Ansi as you do although Unicode would be better (at least on Windows)
var filePtr = Marshal.StringToCoTaskMemAnsi(files[i]);
// write the file pointer to the array
Marshal.WriteIntPtr(my.filesToProcess + elementSize * i, filePtr);
}
myFunction(ref my);
}
finally
{
// free each file pointer
for (var i = 0; i < files.Count; i++)
{
var filePtr = Marshal.ReadIntPtr(my.filesToProcess + elementSize * i);
Marshal.FreeCoTaskMem(filePtr);
}
// free the array
Marshal.FreeCoTaskMem(my.filesToProcess);
}
}
[StructLayout(LayoutKind.Sequential)]
struct MyArgs
{
public int someArg;
public IntPtr filesToProcess;
public int filesToProcessLength;
};
// stdcall is the default calling convention
[DllImport("MyProject.dll")]
static extern bool myFunction(ref MyArgs args);
关于c# - 我应该如何使用 P/Invoke 将字符串数组传递给 C 库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63077017/
我在网上搜索但没有找到任何合适的文章解释如何使用 javascript 使用 WCF 服务,尤其是 WebScriptEndpoint。 任何人都可以对此给出任何指导吗? 谢谢 最佳答案 这是一篇关于
我正在编写一个将运行 Linux 命令的 C 程序,例如: cat/etc/passwd | grep 列表 |剪切-c 1-5 我没有任何结果 *这里 parent 等待第一个 child (chi
所以我正在尝试处理文件上传,然后将该文件作为二进制文件存储到数据库中。在我存储它之后,我尝试在给定的 URL 上提供文件。我似乎找不到适合这里的方法。我需要使用数据库,因为我使用 Google 应用引
我正在尝试制作一个宏,将下面的公式添加到单元格中,然后将其拖到整个列中并在 H 列中复制相同的公式 我想在 F 和 H 列中输入公式的数据 Range("F1").formula = "=IF(ISE
问题类似于this one ,但我想使用 OperatorPrecedenceParser 解析带有函数应用程序的表达式在 FParsec . 这是我的 AST: type Expression =
我想通过使用 sequelize 和 node.js 将这个查询更改为代码取决于在哪里 select COUNT(gender) as genderCount from customers where
我正在使用GNU bash,版本5.0.3(1)-发行版(x86_64-pc-linux-gnu),我想知道为什么简单的赋值语句会出现语法错误: #/bin/bash var1=/tmp
这里,为什么我的代码在 IE 中不起作用。我的代码适用于所有浏览器。没有问题。但是当我在 IE 上运行我的项目时,它发现错误。 而且我的 jquery 类和 insertadjacentHTMl 也不
我正在尝试更改标签的innerHTML。我无权访问该表单,因此无法编辑 HTML。标签具有的唯一标识符是“for”属性。 这是输入和标签的结构:
我有一个页面,我可以在其中返回用户帖子,可以使用一些 jquery 代码对这些帖子进行即时评论,在发布新评论后,我在帖子下插入新评论以及删除 按钮。问题是 Delete 按钮在新插入的元素上不起作用,
我有一个大约有 20 列的“管道分隔”文件。我只想使用 sha1sum 散列第一列,它是一个数字,如帐号,并按原样返回其余列。 使用 awk 或 sed 执行此操作的最佳方法是什么? Accounti
我需要将以下内容插入到我的表中...我的用户表有五列 id、用户名、密码、名称、条目。 (我还没有提交任何东西到条目中,我稍后会使用 php 来做)但由于某种原因我不断收到这个错误:#1054 - U
所以我试图有一个输入字段,我可以在其中输入任何字符,但然后将输入的值小写,删除任何非字母数字字符,留下“。”而不是空格。 例如,如果我输入: 地球的 70% 是水,-!*#$^^ & 30% 土地 输
我正在尝试做一些我认为非常简单的事情,但出于某种原因我没有得到想要的结果?我是 javascript 的新手,但对 java 有经验,所以我相信我没有使用某种正确的规则。 这是一个获取输入值、检查选择
我想使用 angularjs 从 mysql 数据库加载数据。 这就是应用程序的工作原理;用户登录,他们的用户名存储在 cookie 中。该用户名显示在主页上 我想获取这个值并通过 angularjs
我正在使用 autoLayout,我想在 UITableViewCell 上放置一个 UIlabel,它应该始终位于单元格的右侧和右侧的中心。 这就是我想要实现的目标 所以在这里你可以看到我正在谈论的
我需要与 MySql 等效的 elasticsearch 查询。我的 sql 查询: SELECT DISTINCT t.product_id AS id FROM tbl_sup_price t
我正在实现代码以使用 JSON。 func setup() { if let flickrURL = NSURL(string: "https://api.flickr.com/
我尝试使用for循环声明变量,然后测试cols和rols是否相同。如果是,它将运行递归函数。但是,我在 javascript 中执行 do 时遇到问题。有人可以帮忙吗? 现在,在比较 col.1 和
我举了一个我正在处理的问题的简短示例。 HTML代码: 1 2 3 CSS 代码: .BB a:hover{ color: #000; } .BB > li:after {
我是一名优秀的程序员,十分优秀!