gpt4 book ai didi

c - 使用 unistd.h 读写结构读写

转载 作者:太空宇宙 更新时间:2023-11-04 01:41:59 25 4
gpt4 key购买 nike

我正在学习 UNIX 编程并尝试读/写系统调用。我有一个包含一对整数的文件:

4 5

我写了这段代码来读取数字:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>

typedef struct prova {
int first;
int second;
} prova_t;

int main(void) {
int fd;
prova_t origin;
prova_t result;
ssize_t bytes_read;
size_t nbytes;

fd = open("file.bin", O_WRONLY | O_CREAT);
origin.first = 24;
origin.second = 3;
write(fd, &origin, sizeof(prova_t));
close(fd);


fd = open("file.bin", O_RDONLY);
nbytes = sizeof(prova_t);
/* 1.BAD */
bytes_read = read(fd, &result, nbytes);
write(STDOUT_FILENO, &(result.first), sizeof(int));
write(STDOUT_FILENO, &(result.second), sizeof(int));
close(fd);

/* 2.GOOD */
nbytes = sizeof(int);
bytes_read = read(fd, &(result.first), nbytes);
write(STDOUT_FILENO, &(result.first), bytes_read);
bytes_read = read(fd, &(result.second), nbytes);
write(STDOUT_FILENO, &(result.second), bytes_read);

return 0;
}

在我的第一次尝试中,我试图从文件中读取整个结构并将其成员写入标准输出。这样,随着数字,我得到了一些奇怪的字符

4 5
E�^�

在第二次尝试中,我一个一个地读取数字,输出没有问题。

有没有办法使用第一种方法读写结构体?

编辑:我更新了代码以反射(reflect)其他用户的建议,但仍然得到奇怪的字符而不是数字

最佳答案

首先,让我们进行十六进制转储以查看文件中实际存储的内容。

hexdump -C b.txtod -t x2 -t c b.txt 是两个示例(od 用于八进制转储,更常见,不太漂亮的输出我的意见)

00000000  34 20 35 0a                                       |4 5.|
00000004

这就是文件创建为 ASCII 文本文件时的样子(例如使用像 vi 这样的文本编辑器)。您可以使用 man ascii 来仔细检查十六进制值。

现在,如果您有一个只包含两个 8 位字节的二进制文件,按照系统的 native 字节顺序(例如 x86 的小端字节序,MIPS、PA-RISC、680x0 的大端字节序),那么 hexdump 看起来像:

00000000  04  05                                            |..|
00000004

这是创建(打开和写入)二进制文件并读回它的代码。

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h> /* uint32_t */
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>

/* User has read & write perms, group and others have read permission */
const mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;

typedef struct prova {
uint32_t first;
uint32_t second;
} prova_t;

#define FILENAME "file.b"

/* 'Safe' write */
int safewrite( int fd, const void *p, size_t want) {
int ret;

errno = 0;
while (want) {
ret = write(fd, (uint8_t *)p, want);
if (ret <= 0) {
if (errno != EINTR && errno != EAGAIN) {
return -1;
}
errno = 0;
continue;
}
want -= ret;
p = (uint8_t*) p + ret;
}
return 0;
}

int saferead(int fd, const void *p, size_t want) {
int ret;

errno = 0;
while (want) {
ret = read(fd, (uint8_t*)p, want);
if( ret == 0 )
return -1; /* EOF */
if (ret <= 0) {
if( errno != EINTR && errno != EAGAIN ) {
return -1;
}
errno = 0;
continue;
}
want -= ret;
p = (uint8_t*) p + ret;
}
return 0;
}


int main(int argc, char **argv) {
int fd;
prova_t result;
size_t nbytes;

/* Create file */
fd = creat(FILENAME, mode);
if (fd < 0) {
fprintf(stderr, "Unable to open " FILENAME ": %s\n",
strerror(errno));
exit(EXIT_FAILURE);
}
nbytes = sizeof(prova_t);

result.first = 4;
result.second = 5;

if (0 != safewrite(fd, &result, nbytes)) {
fprintf(stderr, "Unable to write to " FILENAME ": %s\n",
strerror(errno));
exit(EXIT_FAILURE);
}

close(fd);
fd = -1;

/* Reopen and read from binary file */
fd = open(FILENAME, O_RDONLY);
nbytes = sizeof(prova_t);

if (0 != saferead(fd, &result, nbytes)) {
fprintf(stderr, "Unable to read file \"" FILENAME "\": %s\n",
strerror(errno));
exit(EXIT_FAILURE);
}
close(fd);

printf( "Read: %d %d (%#.02x%.02x)\n",
result.first, result.second,
result.first, result.second);

return EXIT_SUCCESS;
}

现在数据文件内容如下:

00000000  04 00 00 00 05 00 00 00                           |........|
00000008

因为整数被指定为 32 位整数(32 位/每字节 8 位 = 4 字节)。我使用的是 64 位系统(little endian,x86),所以我想明确说明,这样你的结果应该匹配,假设是 little-endian。

关于c - 使用 unistd.h 读写结构读写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4146897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com