所以我使用mmap然后写入另一个文件。但奇怪的是,当我的代码点击mmap时,它所做的就是清除文件。所以我有一个文件,里面填充了随机字符(AB,HAA,JAK等等)。它应该做的是基本上使用mmap作为读取,然后将该文件写入新文件。因此,首先if(argc == 3)是正常的读写,第二个if(argc == 4)应该使用mmap。有没有人知道为什么地球上会发生这种情况?
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/io.h>
#include <sys/mman.h>
#include <sys/time.h>
#include <sys/resource.h>
int main(int argc, char const *argv[])
{
int nbyte = 512;
char buffer[nbyte];
unsigned char *f;
int bytesRead = 0;
int size;
int totalBuffer;
struct stat s;
const char * file_name = argv[1];
int fd = open (argv[1], O_RDONLY);
int i = 0;
char c;
int fileInput = open(argv[1], O_RDONLY);
int fileOutPut = open(argv[2], O_WRONLY | O_TRUNC | O_CREAT, S_IRUSR | S_IWUSR);
fstat(fileInput, &s);
size = s.st_size;
printf("%d\n", size);
if (argc == 3)
{
printf("size: %d\n", size);
printf("nbyte: %d\n", nbyte);
while (size - bytesRead >= nbyte)
{
read(fileInput, buffer, nbyte);
bytesRead += nbyte;
write(fileOutPut, buffer, nbyte);
}
read(fileInput, buffer, size - bytesRead);
write(fileOutPut, buffer, size - bytesRead);
}
else if (argc == 4)
{
int i = 0;
printf("4 arg\n");
f = (char *) mmap (0, size, PROT_READ, MAP_PRIVATE, fileInput, 0);
/* This is where it is being wipped */
}
close(fileInput);
close(fileOutPut);
int who = RUSAGE_SELF;
struct rusage usage;
int ret;
/* Get the status of the file and print some. Easy to do what "ls" does with fstat system call... */
int status = fstat (fd, & s);
printf("File Size: %d bytes\n",s.st_size);
printf("Number of Links: %d\n",s.st_nlink);
return 0;
}
编辑:我想提一下,第一次读写操作非常完美,只有当你尝试通过mmap完成时才会这样做。
答案 0 :(得分:0)
如果您的意思是清除目标文件,那么是的,这正是您的代码所做的。
它会通过截断打开目标,然后在argc==4
部分中映射输入文件,但绝对不会将数据传输到输出文件。
您需要一个while
循环的某些描述,类似于argc==3
情况下的循环,但它将映射内存中的字节写入fileOutput
描述符。