1

我正在尝试为一个程序包装 libpq,并且我正在使用的 FFI 工具的一部分尝试获取sizeof()任何正在使用的结构。在这种情况下,问题在于尝试sizeof(PGconn)从 GCC 获取一系列错误,因为它是不完整的类型。有没有办法获得相同的数据,或者我是否需要训练这个 FFI 工具来忽略不透明的类型?此处参考生成的 C 代码和编译器错误:

/* Define on Darwin to activate all library features */
#define _DARWIN_C_SOURCE 1
/* This must be set to 64 on some systems to enable large file support. */
#define _FILE_OFFSET_BITS 64
/* Define on Linux to activate all library features */
#define _GNU_SOURCE 1
/* This must be defined on some systems to enable large file support. */
#define _LARGEFILE_SOURCE 1
/* Define on NetBSD to activate all library features */
#define _NETBSD_SOURCE 1
/* Define to activate features from IEEE Stds 1003.1-2001 */
#define _POSIX_C_SOURCE 200112L
/* Define on FreeBSD to activate all library features */
#define __BSD_VISIBLE 1
#define __XSI_VISIBLE 700
/* Windows: winsock/winsock2 mess */
#define WIN32_LEAN_AND_MEAN

#include <libpq-fe.h>

#include <stdio.h>
#include <stddef.h>   /* for offsetof() */

void dump(char* key, int value) {
    printf("%s: %d\n", key, value);
}


void dump_section_PGconn(void) {
    typedef PGconn platcheck_t;
    typedef struct {
        char c;
        platcheck_t s;
    } platcheck2_t;

    platcheck_t s;
    dump("align", offsetof(platcheck2_t, s));
    dump("size",  sizeof(platcheck_t));
}

int main(int argc, char *argv[]) {
    printf("-+- PGconn\n");
    dump_section_PGconn();
    printf("---\n");
    return 0;
}

和错误:

[platform:execute] gcc -c -O3 -pthread -fomit-frame-pointer -Wall -Wno-unused -I/usr/include/postgresql/ /tmp/usession-default-52/platcheck_10.c -o /tmp/usession-default-52/platcheck_10.o
[platform:Error] /tmp/usession-default-52/platcheck_10.c: In function ‘dump_section_PGconn’:
[platform:Error] /tmp/usession-default-52/platcheck_10.c:34: error: field ‘s’ has incomplete type
[platform:Error] /tmp/usession-default-52/platcheck_10.c:37: error: storage size of ‘s’ isn’t known
[platform:Error] /tmp/usession-default-52/platcheck_10.c:39: error: invalid application of ‘sizeof’ to incomplete type ‘platcheck_t’
4

2 回答 2

3

PGConn在设计上是不透明的。如果您需要查看它,请包含libpq-int.h(对于“内部”)。但请考虑重新考虑您的要求。

于 2010-12-26T05:19:30.120 回答
2

当我PGConn在 Google 上搜索时,我看到的所有内容都是您处理的,PGConn*而不是PGConn. 我的猜测是,您打算通过指针将这些作为不透明类型来处理。

但我确实发现这个引用了源代码。也许这对你有帮助。

于 2010-12-26T00:02:27.567 回答