X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/6a7cc46cb279b9dbf12977177330aeebb912aa34..a3a841073e6e3d5a560c072c8bc7bbd770740235:/fileio.c diff --git a/fileio.c b/fileio.c index 088ed639..2e916fa7 100644 --- a/fileio.c +++ b/fileio.c @@ -69,6 +69,28 @@ static int write_sparse(int f,char *buf,size_t len) return len; } + +static char *wf_writeBuf; +static size_t wf_writeBufSize; +static size_t wf_writeBufCnt; + +int flush_write_file(int f) +{ + 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; +} + /* * write_file does not allow incomplete writes. It loops internally * until len bytes are written or errno is set. @@ -77,13 +99,30 @@ 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); r1 = write_sparse(f, buf, len1); } else { - r1 = write(f, buf, len); + if (!wf_writeBuf) { + wf_writeBufSize = MAX_MAP_SIZE; + wf_writeBufCnt = 0; + wf_writeBuf = new_array(char, MAX_MAP_SIZE); + if (!wf_writeBuf) + out_of_memory("write_file"); + } + r1 = MIN(len, wf_writeBufSize - wf_writeBufCnt); + if (r1) { + memcpy(wf_writeBuf + wf_writeBufCnt, buf, r1); + wf_writeBufCnt += r1; + } + if (wf_writeBufCnt == wf_writeBufSize) { + if (flush_write_file(f) < 0) + return -1; + if (!r1 && len) + continue; + } } if (r1 <= 0) { if (ret > 0) return ret; @@ -105,7 +144,7 @@ int write_file(int f,char *buf,size_t len) struct map_struct *map_file(int fd,OFF_T len) { struct map_struct *map; - map = (struct map_struct *)malloc(sizeof(*map)); + map = new(struct map_struct); if (!map) out_of_memory("map_file"); map->fd = fd; @@ -160,7 +199,7 @@ char *map_ptr(struct map_struct *map,OFF_T offset,int len) /* make sure we have allocated enough memory for the window */ if (window_size > map->p_size) { - map->p = (char *)Realloc(map->p, window_size); + map->p = realloc_array(map->p, char, window_size); if (!map->p) out_of_memory("map_ptr"); map->p_size = window_size; }