转自:https://www.cnblogs.com/zxl0715/articles/5365989.html
1、具体思路 把一个文件分成N份,分别用N个线程copy, 每个线程只读取指定长度字节大小的内容 最后一个线程的源文件所指定的结束位置是文件的实际大小 每个线程读取指定源文件部分的起始位置和结束位置的内容到缓冲区 每个线程将缓存中的内容写入目的文件的指定开始位置和结束位置 主线程必须等到所有线程copy完成后才能退出 2.有关文件操作的函数 2.1. 文件的打开和关闭 2.1.1 open()函数 open()函数的作用是打开文件, 其调用格式为: int open(char *filename, int access); 该函数表示按access的要求打开名为filename的文件, 返回值为文件描述字 open()函数打开成功, 返回值就是文件描述字的值(非负值), 否则返回-1。 2.1.2 close()函数 close()函数的作用是关闭由open()函数打开的文件, 其调用格式为: int close(int handle); 该函数关闭文件描述字handle相连的文件。 2.2.读写函数 2.2.1 read()函数 read()函数的调用格式为: int read(int handle, void *buf, int count); read()函数从handle(文件描述字)相连的文件中, 读取count个字节放到buf所指的缓冲区中, 返回值为实际所读字节数, 返回-1表示出错。返回0 表示文件结束。 2.2.2 write()函数 write()函数的调用格式为: int write(int handle, void *buf, int count); write()函数把count个字节从buf指向的缓冲区写入与handle相连的文件中, 返回值为实际写入的字节数 2.3.随机定位函数 lseek()函数 lseek()函数的调用格式为: int lseek(int handle, long offset, int fromwhere); 该函数对与handle相连的文件位置指针进行定位, 功能和用法与fseek() 函数相同。 3.源文件(copyfn.c) 源文件在ubuntu10.04下编译通过 #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <pthread.h> #include <dirent.h> #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/time.h> #define THREADS_COUNT 3 #define THREADS_BUFF_SIZE 1*1024 struct thread_block { int infd; ///源文件句柄 int outfd;//目的文件句柄 size_t start;///文件的写入起始位置 size_t end; ///文件写入的终止位置 }; void usage() { printf("copy %%src %%dst\n"); } ///获取文件大小 size_t get_filesize(int fd) { struct stat st; fstat(fd,&st); return st.st_size; } void *thread_copy_fn(void *arg); int main(int argc,char *argv[]) { if(argc < 3) { usage(); return -1; } ///打开文件 int infd = open(argv[1],O_RDONLY); int outfd = open(argv[2],O_CREAT|O_WRONLY,0644); // 0644也就是-文件所有者有读写权限,组有读权限,其他用户有读权限 if(infd == -1|| -1 ==outfd) { printf("error while open file \n"); return -1; } size_t file_size = get_filesize(infd); size_t thread_size = THREADS_COUNT; struct thread_block *blocks = (struct thread_block *) malloc(sizeof(struct thread_block )* thread_size); size_t percent = file_size / thread_size; printf("filesize = %d\t percent_blocks = %d\n", file_size,percent); int i = 0; //init-thread-block for(; i < thread_size;++i) { blocks[i].infd = infd; blocks[i].outfd = outfd; blocks[i].start = i * percent; blocks[i].end = blocks[i].start + percent; } //the last thread blocks[i].end = file_size; pthread_t ptid[thread_size]; ///创建线程 for(i = 0 ; i < thread_size; ++i) { pthread_create(&ptid[i],NULL,thread_copy_fn,&(blocks[i])); } ///线程Join for(i = 0 ; i < thread_size; ++i) { pthread_join(ptid[i],NULL); } ///释放资源 free(blocks); close(infd); close(outfd); printf("Copy Successfully \n"); return 0; } void *thread_copy_fn(void *arg) { struct thread_block *block = (struct thread_block *)arg; char buf[THREADS_BUFF_SIZE]; int ret; size_t count = block->start; printf("In Thread\t%ld\nstart = %ld\t end = %ld\n", pthread_self(),block->start,block->end); ///lseek到同样的位置 ret = lseek(block->infd,block->start,SEEK_SET); ret = lseek(block->outfd,block->start,SEEK_SET); int bytes_read; int bytes_write; while(count < block->end) { bytes_read = read(block->infd,buf,sizeof(buf)); if(bytes_read >0) { printf("thread = %ld\t read = %ld\t count %d\n", pthread_self(),bytes_read,count); count += bytes_read; //read()返回-1,同时errno为EINTR,表示读的过程中遇到了中断 if((bytes_read == -1)&&(errno !=EINTR)) break; char *ptr_write = buf; while((bytes_write = write(block->outfd,ptr_write,bytes_read))!=0) { //write()会返回-1,同时errno为EINTR,表示在写的过程中遇到了中断 if((bytes_write == -1)&&(errno!=EINTR)) break; if(bytes_write == bytes_read) break; else if(bytes_write > 0) { ptr_write += bytes_write; bytes_read -= bytes_write; } printf("thread = %ld\t write = %ld\t read %d\n", pthread_self(),bytes_write,bytes_read); }//end-write; ///error while write if(bytes_write == -1) break; } } printf("#####Thread exit %ld#####\n",pthread_self()); pthread_exit(NULL); } 本文欢迎转载,转载请注明作者与出处
原文地址:https://www.cnblogs.com/sky-heaven/p/11022839.html
时间: 2024-10-29 11:09:31