0

我正在linux(xubuntu 13.10)上的二进制文件中写入和读取结构。首先:我打开它:

dtbFile = fopen(dtbLocation,"ab+");

下一步:我将多次编写以下结构 (9)

typedef struct{
char flagRemoved; //This flag indicates if the struct is still used. If its not 0 (as in 00000000 or \0), the thing is removed
int value;
time_t timeStamp;
}__attribute__( ( packed ) ) DTBItem_HDD; //Prevent padding to save RAM and HDD

然后打印所有内容以证明一切正常:

flagRemoved = 0 项目值:1 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:46:23 flagRemoved = 0 项目值:2 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:46:23 flagRemoved = 0 项目值:3 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:46:23 flagRemoved = 0 项目值:4 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:46:23 flagRemoved = 0 项目值:5 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:46:23 flagRemoved = 0 项目值:6 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:46:23 flagRemoved = 0 项目值: 7 项目时间戳(表示为本地时间):Mon Oct 21 11:46:23 2013 flagRemoved = 0 项目值:8 项目时间戳(表示为本地时间):Mon Oct 21 11:46:23 2013 flagRemoved = 0 项目值:9 项目时间戳(以本地时间表示):Mon Oct 21 11:46:23 2013

打印的功能:

int printHDDContent(void){
//First: we are always at EOF so rewind.
rewind(dtbFile);
DTBItem_HDD hddItem;
DTBItem item; //Used to print the contents of the DTBItem_HDD
int iAmountRead; //Used to find eof
while (1){ //Cant put anything usefull here, since EOF is detected elswhere
    iAmountRead = fread(&hddItem,sizeof(hddItem),1,dtbFile);
    if (iAmountRead != 1){
        if (!feof(dtbFile)){ //Check if EOF, and if not its error time!
            return 11;
        }
        break; //EOF, break out of the while loop
    }
    //Convert it to a DTBItem and print it, but only if flagRemoved is still 0
    printf("flagRemoved = %d\n",hddItem.flagRemoved);
    if (!hddItem.flagRemoved){ //Check the flagRemoved
        item.value = hddItem.value;
        item.timeStamp = hddItem.timeStamp;
        printDTBItem(&item);
    }
}
return 0;
}

所以,这就是我提出问题的地方。我要做的下一件事是通过将 flagRemoved 属性设置为不为 0 的值,将它们标记为已删除,从而从文件中删除项目。为此,我编写了以下代码:

if (shouldBeRemoved){
            int itemSeek = -1 * (int)sizeof(hddItem);
            printf("Removing..(%d, %zu)\n",hddItem.value, hddItem.timeStamp);
            iErr = fseek(dtbFile,itemSeek,SEEK_CUR); 
            if (iErr) return 11; //Error while seeking (unknown file error)
            hddItem.flagRemoved = 1; //Set the removedFlag
            iErr = fwrite(&hddItem,sizeof(DTBItem_HDD),1,dtbFile); //Write the item back to the file
            if (iErr != 1) return 11; //Should be one, bacuse one item is written. If not: unknown error with file
        }

这就是它出错的地方:每当我在这里使用 fwrite 时,它​​总是寻找到文件的末尾,然后写入这个新对象,而不是从光标的开头开始,它会覆盖它的旧对应对象。为什么会这样?根据我在这里读到的内容:在 CPP 参考上,它应该写入流中的当前位置,但这是尝试删除所有项目后的打印:

flagRemoved = 0 项目值:1 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:56:08 flagRemoved = 0 项目值:2 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:56:08 flagRemoved = 0 项目值:3 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:56:08 flagRemoved = 0 项目值:4 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:56:08 flagRemoved = 0 项目值:5 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:56:08 flagRemoved = 0 项目值:6 项目时间戳(以本地时间表示):2013 年 10 月 21 日星期一 11:56:08 flagRemoved = 0 项目值: 7 项目时间戳(表示为本地时间):Mon Oct 21 11:56:08 2013 flagRemoved = 0 项目值:8 项目时间戳(表示为本地时间):Mon Oct 21 11:56:08 2013 flagRemoved = 0 项目值:9 项目时间戳(以本地时间表示):Mon Oct 21 11:56:08 2013 flagRemoved = 1

末尾的附加 1 表示多了一项,已被删除。

4

1 回答 1

2

好吧,整个错误是以读/写/附加模式打开它:无论如何,这种模式总是附加它的写入。因为不能保证文件存在,所以我把文件打开代码改成如下:

int initDatabase(char* dtbLocation){
int iErrCode = 0;
if (dtbFile == NULL){
    dtbFile = fopen(dtbLocation,"ab+"); //Open the file in read/write-append binary mode (do not overwrite current content, create if not exists) at the end of the file
    if (dtbFile == NULL){
        iErrCode = 2; //The file could not be opened
    } else if (fclose(dtbFile) == EOF){ //Close the file to re-open it in the correct way 
        iErrCode = 12;  //Something went wrong while closing file
    } else {
        dtbFile = fopen(dtbLocation,"rb+"); //Open in read/write, file must exist
        if (dtbFile == NULL){
            iErrCode = 2; //The file could not be opened
        }   
    }   
}
} else {
    iErrCode = 1; //The file was already opened
}
return iErrCode;

}

于 2013-10-21T10:35:36.090 回答