【问题标题】:How to send uint8_t array from C to GO如何将 uint8_t 数组从 C 发送到 GO
【发布时间】:2020-02-28 14:55:26
【问题描述】:

我想将 uint8_t 数组从 C 发送到 GO,但是当我发送像指针一样的数组时,我不知道如何读取它并将其保存在像 byte[] 数组一样的 GO 中:

package main
/*
#include <stdint.h>

uint8_t Plaintext[16] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f};

uint8_t * send_data( )
   {
     return  Plaintext;
   }

*/
import "C"
import "unsafe"
import "fmt"

func main() {

    data := [16]byte{}
    p := C.send_data()
    //already try  data = C.send_data()
    fmt.Println(p)
    data = p // don't know how do this ?

}

目标是在go中有数据字节数组:

data[16] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}

我尝试了很多解决方案,但每次我有日志说“不能使用 (func literal)() (type *_Ctype_uchar) 作为类型“uint8”或“byte”...

感谢大家的帮助!

【问题讨论】:

    标签: c arrays go cgo


    【解决方案1】:

    我想将 uint8_t 数组从 C 发送到 Go [并作为数组或切片]


    以你的为例,

    package main
    
    /*
    #include <stdint.h>
    
    uint8_t Plaintext[16] = {0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f};
    
    uint8_t *send_data( ) {
        return  Plaintext;
    }
    */
    import "C"
    
    import (
        "fmt"
        "math"
        "unsafe"
    )
    
    func main() {
        // your example
        data := (*[16]byte)(unsafe.Pointer(C.send_data()))
        fmt.Printf("\n%T:\n%d %d : %v\n", data, len(data), cap(data), *data)
    
        // array example
        const c = 16 // array length is constant
        a := (*[c]byte)(unsafe.Pointer(C.send_data()))
        fmt.Printf("\n%T:\n%d %d : %v\n", a, len(a), cap(a), *a)
    
        // slice example
        var v = 16 // slice length is variable
        var s []byte
        const vmax = math.MaxInt32 / unsafe.Sizeof(s[0])
        s = (*[vmax]byte)(unsafe.Pointer(C.send_data()))[:v:v]
        fmt.Printf("\n%T:\n%d %d : %v\n", s, len(s), cap(s), s)
    }
    

    输出:

    [0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15]
    
    *[16]uint8:
    16 16 : [0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15]
    
    []uint8:
    16 16 : [0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15]
    

    【讨论】:

      猜你喜欢
      • 2020-02-28
      • 1970-01-01
      • 2012-02-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-04-24
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多