多线程拷贝文件

多线程实现普通文件

程序特点

*默认创建5个线程

  • main函数传参个数等于3(./app src_file des_file [ThreadNum]
    *线程传参封装到CopyInfo信息结构体中,包括线程id,源文件名,目标文件名
主要功能实现

程序主要包括三个部分,主函数,线程函数和函数条函数。

主函数

主函数的工作为:

*创建线程,并每个线程的id申请活动活动id的空间
*为每个线程的信息结构体申请空间
*回收线程函数
*调用赏条功能

线程函数

*对文件进行实际的拷贝工作

在线程函数中,每个线程都进行了文件的映射,另外通过wsite来确定每个实例的实际位置,wsize确定每个线程应该的文件大小,拷贝完wsize或者到达文件尾EOF说明该实例实例工作已经完成,释放资源并退出。

/*利用mmap 函数实现 多线程拷贝文件*/

/*默认创建5个线程*/

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


//全局变量
int fileSize = 0;
int ThreadNum = 5;//默认创建5个线程

typedef struct CopyInfo
{
	int count;
	char *des_file;
	char *src_file;
}CopyInfo;

//线程的拷贝函数
void *Thread_Copy(void *Copy)
{
	CopyInfo *pCopy = (CopyInfo*)Copy;
	int fin = open(pCopy->src_file,O_RDONLY);
	if(fin == -1)
	{
		perror("open src_file error");
		exit(0);
	}
	int fout = open(pCopy->des_file,O_RDWR|O_CREAT,0664);
	if(fout == -1)
	{
		perror("open des_file error");
		exit(0);
	}
	//为每个线程建立文件映射
	char *In_ptr = mmap(NULL,fileSize,PROT_READ,MAP_SHARED,fin,0);
	char *Out_ptr = mmap(NULL,fileSize,PROT_READ|PROT_WRITE,MAP_SHARED,fout,0);
	//拓宽文件
	ftruncate(fout,fileSize);
	//检验映射
	if(In_ptr == MAP_FAILED || Out_ptr == MAP_FAILED)
	{
		perror("call mmap failed");
		close(fin);
		close(fout);
		exit(0);
	}
	/*------------------------线程拷贝------------------------------*/
	//计算每个线程拷贝的大小
	int wsize = 0;
	wsize = fileSize/ThreadNum;
	//如果不能整除,则将wsize+1
	wsize = fileSize%ThreadNum ? wsize+1:wsize;
	//偏移指针位置
	int wsite = pCopy->count*wsize;
	//统计线程拷贝的子数
	int flag = 0;
	while(flag < wsize && In_ptr[wsite+flag] != EOF)
	{
		Out_ptr[wsite+flag] = In_ptr[wsite+flag];
		flag++;
	}

	//线程拷贝完成后释放空间和文件描述符
	close(fin);
	close(fout);

	free(pCopy);
	pCopy = NULL;
	//取消映射
	munmap(In_ptr,fileSize);
	munmap(Out_ptr,fileSize);
}

void Bar(char *arg)
{
	//打印进度条
	while(1)
	{
		if(fileSize == 0)
			continue;
		//退格,回到开头
		printf("\r");
		//打开拷贝的文件
		int rfd = open(arg,O_RDONLY);
		if(rfd == -1)
			continue;
		//计算已经拷贝的字节数
		int copyNum = lseek(rfd,0,SEEK_END);
		//打印进度条
		int na = 0;
		int ns = 0;
		printf("[");
		na = copyNum*1.0/fileSize * 100;
		ns = 100 - na;
		while(na--)
		{
			printf("=");
		}
		while(ns--)
		{
			printf(" ");
		}
		//拷贝百分比
		printf("][%.2f%%]",copyNum*1.0/fileSize * 100);
		if(copyNum >= fileSize)
		{
			printf("\n");
			return;
		}
		close(rfd);
		fflush(NULL);
		usleep(100000);
	}
}
int CreateThread(pthread_t *tid,char **argv,CopyInfo **pCopy)
{
	int err;
	for(int i = 0;i < ThreadNum;i++)
	{
		CopyInfo *pTemp = (CopyInfo*)malloc(sizeof(CopyInfo));

		pTemp->src_file = argv[1];
		pTemp->des_file = argv[2];
		pTemp->count = i;

		pCopy[i] = pTemp;
		//创建线程
		if((err = pthread_create(&tid[i],NULL,Thread_Copy,(void *)pCopy[i])) > 0)
		{

			printf("pthread_create copy error:%s\n",strerror(err));
			exit(0);
		}
	}

	return err;
}
void Thread_join(pthread_t *tid,int err)
{
	//回收线程
	for(int i = 0;i < ThreadNum;i++)
	{
		int err = pthread_join(tid[i],NULL);

		if(err > 0)
			printf("pthread_join error:%s\n" ,strerror(err));
		else
		{
			printf("pthread [%x] join sucess\n",(unsigned int)tid[i]);
		}
	}
}

int main(int argc,char **argv)
{
/*-------------------参数校验-------------------------------------------*/
	if(argc < 3)
	{
		printf("argument defect\n");
		exit(0);
	}


	//检测、更新传入线程数
	if(argc == 4)
	{
		ThreadNum = atoi(argv[3]);
		if(ThreadNum <=0 || ThreadNum > 100)
		{
			printf("ThreadNum Input Error:1~100\n");
			exit(0);
		}
	}
/*-------------------------------------------------------------------------*/
	//计算文件大小
	int fd = open(argv[1],O_RDONLY);
	if(fd == -1)
	{
		perror("call open src_file error");
	}
	fileSize = lseek(fd,0,SEEK_END);
	//记录每个线程的tid
	pthread_t *tid = NULL;
	tid = (pthread_t*)malloc(sizeof(pthread_t)*ThreadNum);
	//创建线程
	//信息结构体
	CopyInfo **pCopy = (CopyInfo**)malloc(sizeof(CopyInfo*)*ThreadNum);
	int err = CreateThread(tid,argv,pCopy);
	//打印进度条
	Bar(argv[2]);
	//回收线程
	Thread_join(tid,err); 
	//-------------------------------释放内存-----------------------------
	free(tid);
	tid = NULL;

	free(pCopy);
	pCopy = NULL;

	return 0;
}
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Bug.Remove()

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值