gpt4 book ai didi

c - 将二进制文件加载到未知的结构类型

转载 作者:行者123 更新时间:2023-11-30 14:47:35 25 4
gpt4 key购买 nike

我在读取二进制文件并将其转换为未知类型的结构时遇到问题...

  • 我真的应该避免在我的应用程序中使用保存/加载功能吗?链表代码?
  • 是因为我使用的 GCC 编译器是堆栈吗具有更多数据的结构可以方便地存储在内存中,并且因为加载函数时不知道这个“偏移量”?

我正在用 C 语言编写一个通用链表,它旨在作为一个头文件,因此我可以在任何地方使用它。由于它将是一个通用类型列表,因此 header 将不知道列表中数据的类型(我正在查看混合类型,因此是结构)。为了保存数据,我只传递从 sizeof(struct) 中提取的数据地址及其长度。读取是同样的概念,使用fread(container, sizeof(struct), 1, FILE),它是由调用程序传递的,再次使用sizeof(struct)提取se大小。但实际上,它不起作用......

#ifndef LINKEDLIST_H_INCLUDED
#define LINKEDLIST_H_INCLUDED
#include <string.h>

typedef struct tagNode{
void *data;
struct tagNode *next_Node;
} Node;

typedef struct tagLinkedList{
Node *Head;
int Size;
} LinkedList;

int LinkedList_New(LinkedList *llist){
llist->Head = NULL;
llist->Size = 0;
return 1;
}

int LinkedList_Insert(LinkedList *llist, int index, void *Data, size_t s_Data){
int cur_index = 0;
if(index > llist->Size || index < 0)
index = 0;

Node *newNode = malloc(sizeof(Node));
newNode->data = malloc(s_Data);
if(newNode == NULL){return 0;}
if(newNode->data == NULL){return 0;}
newNode->data = Data;

Node *currentNode = llist->Head;
Node *lastNode = llist->Head;

if(index == 0){
newNode->next_Node = llist->Head;
llist->Head = newNode;
}else{
while(llist->Head->next_Node != NULL && cur_index != index){
if(cur_index == index){
newNode->next_Node = currentNode;
lastNode->next_Node = newNode;
}else{
lastNode = currentNode;
currentNode = currentNode->next_Node;
cur_index++;
}
}
}
llist->Size += 1;
}

int LinkedList_Save(char *Path, LinkedList *llist, size_t sData){
FILE *fp;
fp = fopen(Path, "w");
if(fp == NULL){return -1;}

Node *currentNode;
currentNode = llist->Head;

while(currentNode != NULL){
fwrite(currentNode->data, sData, 1, fp);
currentNode = currentNode->next_Node;
}
fclose(fp);
return 1;
}

int LinkedList_Load(char *Path, LinkedList *llist, size_t sData){
FILE *fp;
fp = fopen(Path, "r");
if(fp == NULL){fclose(fp);return -1;}

while(!feof(fp)){
void *Data = malloc(sData);
if(Data == NULL){fclose(fp);return -1;}
fread(Data, sData, 1, fp);
LinkedList_Insert(llist, 0, Data, sData);
}
fclose(fp);
return 1;
}
#endif // LINKEDLIST_H_INCLUDED

以及我当前测试的主题:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../LinkedList.h"
typedef struct{
int a;
char b[5];
} tempo;

int main(){
tempo teste = {5, "oito"};

LinkedList lista;
LinkedList_New(&lista);
LinkedList_Insert(&lista, 0, &teste, sizeof(tempo));
LinkedList_Save("data.txt", &lista, sizeof(tempo));
printf("%s", ((tempo*)lista.Head->data)->b);
LinkedList ls2;
LinkedList_New(&ls2);
LinkedList_Load("data.txt", &ls2, sizeof(tempo));

printf("%s", ((tempo*)ls2.Head->data)->b);

return 1;
}

第一个 printf 向我显示了结构中的 b 变量,这意味着列表按照预期工作。

但是第二个 printf,如果用于显示 a 变量(int),我会得到一个随机数(类似于 8712382),如果用于显示 b 变量,我只会得到“L”

最佳答案

您的 LinkedList_load 函数有问题。将其更新为以下内容

int LinkedList_Load(char *Path, LinkedList *llist, size_t sData){
FILE *fp;
fp = fopen(Path, "rb");
if(fp == NULL){fclose(fp);return -1;}
fseek(fp,0L,SEEK_SET);
while(!feof(fp)){
void *Data = malloc(sData);
if(Data == NULL){fclose(fp);return -1;}
int readed=fread(Data, sData, 1, fp);
if(readed==0){return -1;}
/*you were displaying the last reading that contains
*nothing, the previous check solves the problem.
*/
printf("readed %d items: \n",readed);
LinkedList_Insert(llist, 0, Data, sData);
}
fclose(fp);

}

关于c - 将二进制文件加载到未知的结构类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51104646/

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