linux多进程拷贝文件

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

/*多进程拷贝文件*/
void sys_err(char* str)
{
	perror(str);
	exit(-1);
}

int main()
{
	pid_t pid;
	/*创建一个文件映射区*/
	//1.打开一个文件
	int fd;
	fd = open("bigdata.txt",O_RDWR|O_CREAT, 0644);
	if (fd == -1)
	{
		sys_err("open error\n");
	}
	//2.文件大小
	struct stat statbuf;
	stat("bigdata.txt", &statbuf);
	int size = statbuf.st_size;
	//3.mmap
	int* p;
	p = (int*)mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
	if(p==MAP_FAILED)
		sys_err("mmap error\n");
	//5个进程负责拷贝的大小
	int unit_size = size / 5;
	int copy_size[5];
	for (int i = 0; i < 5; i++)
		copy_size[i] = unit_size;
	copy_size[4] = size - unit_size * 4;

	/*循环创建5个进程*/
	int* p_save = p;
	for (int j = 0; j < 5; j++)
	{
		pid = fork();
		if (pid > 0)
		{			
			fd = open("bigdata_copy.txt", O_CREAT|O_RDWR|O_APPEND, 0644);	
			write(fd, p, copy_size[j]);
			p_save += copy_size[j];
			p = p_save;
		}
		else if(pid==0)
			break;
		else if (pid < 0)
			sys_err("fork error\n");
	}
	printf("size:%d\n", size);
	munmap(p, size);
	return 0;
}
/*多进程拷贝文件*/

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Linux 中,可以使用多进程来实现文件拷贝。下面是一个简单的示例代码,展示了如何使用多进程进行文件拷贝: ```c #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <fcntl.h> #define BUF_SIZE 4096 void copy_file(const char* source, const char* destination) { int source_fd, dest_fd; ssize_t bytes_read, bytes_written; char buffer[BUF_SIZE]; // 打开源文件 source_fd = open(source, O_RDONLY); if (source_fd == -1) { perror("open"); exit(EXIT_FAILURE); } // 创建并打开目标文件 dest_fd = open(destination, O_WRONLY | O_CREAT | O_TRUNC, 0644); if (dest_fd == -1) { perror("open"); exit(EXIT_FAILURE); } // 创建子进程 pid_t pid = fork(); if (pid == -1) { perror("fork"); exit(EXIT_FAILURE); } if (pid == 0) { // 子进程负责拷贝数据 while ((bytes_read = read(source_fd, buffer, BUF_SIZE)) > 0) { bytes_written = write(dest_fd, buffer, bytes_read); if (bytes_written != bytes_read) { perror("write"); exit(EXIT_FAILURE); } } if (bytes_read == -1) { perror("read"); exit(EXIT_FAILURE); } // 关闭文件描述符 close(source_fd); close(dest_fd); exit(EXIT_SUCCESS); } else { // 父进程等待子进程结束 wait(NULL); } } int main() { const char* source = "source.txt"; const char* destination = "destination.txt"; copy_file(source, destination); printf("文件拷贝完成!\n"); return 0; } ``` 在这个示例代码中,我们使用了`open()`函数打开源文件和目标文件,然后使用`fork()`创建了一个子进程。子进程负责从源文件中读取数据,并将数据写入目标文件中,而父进程则等待子进程结束。 需要注意的是,这只是一个简单的示例,可能有一些边界情况没有处理。如果需要在实际环境中使用,请根据实际需求进行适当的修改和完善。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值