微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在cgo中将C.int地址复制到C.char中?

如何解决如何在cgo中将C.int地址复制到C.char中?

使用 cgo 我正在调用 c 函数。我遇到了必须将 C.int 地址复制到 C.char[4] 的情况。我可以这样做吗?

代码片段 C- 结构:

struct data
{
    char    *a_add; 
    unsigned int length;
}

代码

func main() {
     var d[3] C.data
     var filedescriptor C.int
     d[0].a_add = &filedescriptor 
     d[0].length = 4
}

问题是 a_add 是一个字符 *。但我需要传递 int 变量地址。 c 代码是遗留代码,我现在无法修复数据类型。其他 C 模块使用它,它在 C 中工作,但有警告。在 go 中,它是错误的。

有什么方法可以将 int 变量的地址复制到 cgo 中的 char* 数组中。

更新: 我试过 d[0].a_add = (*C.char)(unsafe.Pointer(&filedescriptor)),

出现错误: 恐慌:运行时错误:cgo 参数具有指向 Go 指针的 Go 指针

我错过了什么?

解决方法

您遇到的问题之一是,在调用 C 代码时,您可能无法将指针传递给 Go 指针。变量 filedescriptor 是一个 C.int,但 &filedescriptor 是一个 Go 指针,所以你不能使用它(或者更确切地说,你不能在 a_add 字段中使用它 作为一个值)。

您的 C 代码有很多我不清楚,但您可能可以使用下面的代码。请注意,对于您的特定情况,此代码可能有点矫枉过正。它并不意味着特别高效或好,只是尽可能清晰,同时又非常灵活——例如,它可以读取和写入压缩的 C 结构。

package main

// #include <stdio.h>
// #include <stdlib.h>
// #include <string.h>
//
// struct data {
//     char *a_add;
//     unsigned int length;
// };
//
// void f(struct data *p) {
//    printf("p->a_add = %p,p->length = %u\n",p->a_add,p->length);
//    printf("p->a_add as an int: %d\n",*(int *)p->a_add);
//    *(int *)p->a_add = 0x12345678;
// }
import "C"

import (
        "fmt"
        "unsafe"
)

const cIntSize = C.sizeof_int

// Produce a Go int64 from a C int.  The caller passes the address
// of the C int.
func int64FromCInt(ci unsafe.Pointer) int64 {
        // Get a slice pointing to the bytes of the C int.
        sci := (*[cIntSize]byte)(ci)[:]
        switch {
        case cIntSize == unsafe.Sizeof(int64(0)):
                var gi int64
                sgi := (*[unsafe.Sizeof(gi)]byte)(unsafe.Pointer(&gi))[:]
                copy(sgi,sci)
                return gi
        case cIntSize == unsafe.Sizeof(int32(0)):
                var gi int32
                sgi := (*[unsafe.Sizeof(gi)]byte)(unsafe.Pointer(&gi))[:]
                copy(sgi,sci)
                return int64(gi)
        case cIntSize == unsafe.Sizeof(int(0)):
                var gi int
                sgi := (*[unsafe.Sizeof(gi)]byte)(unsafe.Pointer(&gi))[:]
                copy(sgi,sci)
                return int64(gi)
        default:
                panic("no Go integer size matches C integer size")
        }
}

// Write C int (via an unsafe.Pointer) from Go int.  The caller
// passes the address of the C int.
func writeCIntFromInt(gi int,ci unsafe.Pointer) {
        // Get a slices covering the bytes of the C int.
        sci := (*[cIntSize]byte)(ci)[:]
        switch {
        case cIntSize == unsafe.Sizeof(gi):
                sgi := (*[unsafe.Sizeof(gi)]byte)(unsafe.Pointer(&gi))[:]
                copy(sci,sgi)
        case cIntSize == unsafe.Sizeof(int64(0)):
                // Copy value to int64 for copying purposes.
                // Since int64 holds all int values,this always works.
                gi2 := int64(gi)
                sgi := (*[unsafe.Sizeof(gi)]byte)(unsafe.Pointer(&gi2))[:]
                copy(sci,sgi)
        case cIntSize == unsafe.Sizeof(int32(0)):
                // Copy value to int32 for copying purposes.
                // Panic if we destroy the value via truncation.
                gi2 := int32(gi)
                if int(gi2) != gi {
                        panic(fmt.Sprintf("unable to send Go value %x to C: size of Go int=%d,size of C int=%d",gi,unsafe.Sizeof(gi),cIntSize))
                }
                sgi := (*[unsafe.Sizeof(gi)]byte)(unsafe.Pointer(&gi2))[:]
                copy(sci,sgi)
        default:
                panic("no Go integer size matches C integer size")
        }
}

func main() {
        b := C.malloc(cIntSize)
        defer C.free(b)
        writeCIntFromInt(32767,b)
        d := C.struct_data{a_add: (*C.char)(b),length: cIntSize}
        fmt.Println("calling C.f(d)")
        C.f(&d)
        result := int64FromCInt(unsafe.Pointer(d.a_add))
        fmt.Printf("result = %#x\n",result)
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。