X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/76c21947140b90edaa5591c63b10ca00f939ad9b..ac1d2d338450eb005abf03002f5784097caf7e19:/fileio.c diff --git a/fileio.c b/fileio.c index bc244286..925e74b6 100644 --- a/fileio.c +++ b/fileio.c @@ -1,24 +1,24 @@ -/* +/* Copyright (C) Andrew Tridgell 1998 Copyright (C) 2002 by Martin Pool - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* - File IO utilities used in rsync + File IO utilities used in rsync */ #include "rsync.h" @@ -42,8 +42,8 @@ static int write_sparse(int f,char *buf,size_t len) size_t l1=0, l2=0; int ret; - for (l1=0;l1 0) { - do_lseek(f,l1,SEEK_CUR); + do_lseek(f,l1,SEEK_CUR); } - if (l1 == len) + if (l1 == len) return len; ret = write(f, buf + l1, len - (l1+l2)); if (ret == -1 || ret == 0) return ret; - else if (ret != (int) (len - (l1+l2))) + else if (ret != (int) (len - (l1+l2))) return (l1+ret); if (l2 > 0) do_lseek(f,l2,SEEK_CUR); - + return len; } @@ -76,11 +76,18 @@ static size_t wf_writeBufCnt; int flush_write_file(int f) { - int ret = write(f, wf_writeBuf, wf_writeBufCnt); - if (ret < 0) - return ret; - /* if (ret < wf_writeBufCnt) ??? */ - wf_writeBufCnt = 0; + int ret = 0; + char *bp = wf_writeBuf; + + while (wf_writeBufCnt > 0) { + if ((ret = write(f, bp, wf_writeBufCnt)) < 0) { + if (errno == EINTR) + continue; + return ret; + } + wf_writeBufCnt -= ret; + bp += ret; + } return ret; } @@ -92,7 +99,7 @@ int write_file(int f,char *buf,size_t len) { int ret = 0; - while (len>0) { + while (len > 0) { int r1; if (sparse_files) { int len1 = MIN(len, SPARSE_WRITE_SIZE); @@ -102,7 +109,8 @@ int write_file(int f,char *buf,size_t len) wf_writeBufSize = MAX_MAP_SIZE; wf_writeBufCnt = 0; wf_writeBuf = new_array(char, MAX_MAP_SIZE); - if (!wf_writeBuf) out_of_memory("write_file"); + if (!wf_writeBuf) + out_of_memory("write_file"); } r1 = MIN(len, wf_writeBufSize - wf_writeBufCnt); if (r1) { @@ -110,7 +118,8 @@ int write_file(int f,char *buf,size_t len) wf_writeBufCnt += r1; } if (wf_writeBufCnt == wf_writeBufSize) { - if (flush_write_file(f) < 0) return -1; + if (flush_write_file(f) < 0) + return -1; if (!r1 && len) continue; } @@ -167,7 +176,7 @@ char *map_ptr(struct map_struct *map,OFF_T offset,int len) } /* in most cases the region will already be available */ - if (offset >= map->p_offset && + if (offset >= map->p_offset && offset+len <= map->p_offset+map->p_len) { return (map->p + (offset - map->p_offset)); } @@ -236,8 +245,8 @@ char *map_ptr(struct map_struct *map,OFF_T offset,int len) map->p_offset = window_start; map->p_len = window_size; - - return map->p + (offset - map->p_offset); + + return map->p + (offset - map->p_offset); }