Как освободить память, выделенную C.CString?

Вот мой код:

helloworld.go:

package main

import "C"
import "unsafe"

//export HelloWorld
func HelloWorld() *C.char {
    cs := C.CString("Hello World!")
    C.free(unsafe.Pointer(cs))
    return cs
}

func main() {}

Одна из ошибок, которые я получил:

src/helloworld.go:9:2: could not determine kind of name for C.free

На основе этой статьи: https://blog.golang.org/c-go-cgo

Я также узнал, что мне нужно добавить #include <stdlib.h> в начало моего файла C.

helloworld.h:

#include <stdlib.h>
/* Created by "go tool cgo" - DO NOT EDIT. */

/* package command-line-arguments */

/* Start of preamble from import "C" comments.  */




/* End of preamble from import "C" comments.  */


/* Start of boilerplate cgo prologue.  */
#line 1 "cgo-gcc-export-header-prolog"

#ifndef GO_CGO_PROLOGUE_H
#define GO_CGO_PROLOGUE_H

typedef signed char GoInt8;
typedef unsigned char GoUint8;
typedef short GoInt16;
typedef unsigned short GoUint16;
typedef int GoInt32;
typedef unsigned int GoUint32;
typedef long long GoInt64;
typedef unsigned long long GoUint64;
typedef GoInt64 GoInt;
typedef GoUint64 GoUint;
typedef __SIZE_TYPE__ GoUintptr;
typedef float GoFloat32;
typedef double GoFloat64;
typedef float _Complex GoComplex64;
typedef double _Complex GoComplex128;

/*
  static assertion to make sure the file is being used on architecture
  at least with matching size of GoInt.
*/
typedef char _check_for_64_bit_pointer_matching_GoInt[sizeof(void*)==64/8 ? 1:-1];

typedef struct { const char *p; GoInt n; } GoString;
typedef void *GoMap;
typedef void *GoChan;
typedef struct { void *t; void *v; } GoInterface;
typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;

#endif

/* End of boilerplate cgo prologue.  */

#ifdef __cplusplus
extern "C" {
#endif


extern char* HelloWorld();

#ifdef __cplusplus
}
#endif

Я пробовал безуспешно.

Мне нужно освободить память.

Как мне это сделать? Потому что в этом примере он выводит строку. Я хочу вернуть его. Без C.free. Я могу это сделать. Я просто беспокоюсь о том, чтобы вызвать утечку памяти или какую-то другую проблему.


person jnbdz    schedule 09.11.2017    source источник


Ответы (1)


Команда cgo

// Go string to C string
// The C string is allocated in the C heap using malloc.
// It is the caller's responsibility to arrange for it to be
// freed, such as by calling C.free (be sure to include stdlib.h
// if C.free is needed).
func C.CString(string) *C.char

Если импорту "C" непосредственно предшествует комментарий, этот комментарий, называемый преамбулой, используется в качестве заголовка при компиляции частей пакета C.

Например,

package main

/*
#include <stdlib.h>
*/
import "C"

import "unsafe"

//export HelloWorld
func HelloWorld() *C.char {
    cs := C.CString("Hello World!")
    C.free(unsafe.Pointer(cs))
    return cs
}

func main() {}
person peterSO    schedule 09.11.2017
comment
Но теперь я получаю случайные строки. stackoverflow.com/questions/47194827/ Кстати, спасибо за помощь. - person jnbdz; 09.11.2017
comment
Вы не должны освобождать строку непосредственно перед ее возвратом. Если вы это сделаете, вы закончите с мусором. - person rhody; 03.07.2020