创建一个文件,移动到位置 128 并写入数据,但是,在读取时我需要从偏移量 0 而不是 128 读取它,尽管我在 128 中写入。有人可以指出我哪里出错了。
写入后,打印文件的十六进制。当我写入该页面时,数据应打印在转储 1(位置 128)中。但它显示在转储 0(位置 0)中。
来自外部的文件的十六进制转储显示数据是我写入的位置(128)。
它与模式或文件权限有关吗?我正在研究 linux 操作系统。
void readyCache() {
fd = open("database.dat",O_RDWR|O_TRUNC|O_CREAT , S_IRUSR|S_IWUSR);
}
char* getPage(long pageNumber, int fd) {
long offset;
char* buffer = (char *)malloc(pageSize);
offset = (pageNumber)*pageSize;
lseek(fd, offset+pageSize, SEEK_SET);
lseek(fd, offset, SEEK_SET);
read(fd, buffer, pageSize);
return buffer;
}
void setPage(long pageNumber,char* pageData, int fd) {
long offset;
offset = (pageNumber)*pageSize;
lseek(fd, offset, SEEK_SET);
write(fd, pageData, pageSize);
}
void hexdump(int fileDescriptor1, long pageNumber) {
cout << endl;
unsigned char readChar;
int iterator = 0, j = 0;
char * tempBuffer = (char *)malloc(pageSize);
tempBuffer = getPage(pageNumber, fileDescriptor1);
for(int i=0;i<pageSize;i++) {
readChar = tempBuffer[i];
iterator++;
j++;
printf("%02x ", readChar);//%02x
if (iterator == 16) {
iterator = 0;
cout<<endl;
}
}
}
int main() {
readyCache();
char * tempBuffer = getPage(1, fd);
int a = 1000;
memcpy(tempBuffer, &a, sizeof(int));
setPage(1,tempBuffer, fd);
cout<<"\nDump 0\n";
hexdump(fd, 0);
cout<<"\nDump 1\n";
hexdump(fd, 1);
close(fd);
return 0;
}