chiark / gitweb /
@@ -4,8 +4,9 @@
[chiark-utils.git] / backup / writebuffer.c
1 /*
2  * writebuffer.c
3  *
4  * A program for writing output to devices which don't like constant
5  * stopping and starting, such as tape drives.  writebuffer is:
6  *  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
7  *
8  * writebuffer is part of chiark backup, a system for backing up GNU/Linux
9  * and other UN*X-compatible machines, as used on chiark.greenend.org.uk.
10  * chiark backup is:
11  *  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
12  *  Copyright (C) 1999 Peter Maydell <pmaydell@chiark.greenend.org.uk>
13  *
14  * This is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as
16  * published by the Free Software Foundation; either version 2,
17  * or (at your option) any later version.
18  *
19  * This is distributed in the hope that it will be useful, but
20  * WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public
25  * License along with this file; if not, write to the Free Software
26  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27  *
28  */
29
30 #include <sys/time.h>
31 #include <sys/types.h>
32 #include <fcntl.h>
33 #include <stdio.h>
34 #include <errno.h>
35 #include <unistd.h>
36
37 #include "rwbuffer.h"
38
39 const char *progname= "writebuffer";
40
41 static size_t waitfill;
42
43 int main(int argc, const char *const *argv) {
44   int r, writing;
45
46   startup(argv);
47   waitfill= (buffersize*3)/4;
48   writing=0;
49   
50   while (!seeneof || used) {
51     
52     FD_ZERO(&readfds); if (!seeneof && used+1<buffersize) FD_SET(0,&readfds);
53     FD_ZERO(&writefds); if (writing) FD_SET(1,&writefds);
54
55     callselect();
56     
57     if (FD_ISSET(1,&writefds) && !FD_ISSET(0,&readfds) && !used) {
58       writing= 0;
59       FD_CLR(1,&writefds);
60     }
61
62     if (FD_ISSET(0,&readfds)) {
63       r= read(0,rp,min(buffersize-1-used,buf+buffersize-rp));
64       if (!r) {
65         seeneof=1; writing=1;
66       } else if (r<0) {
67         if (!(errno == EAGAIN || errno == EINTR)) { perror("read"); exit(1); }
68       } else {
69         used+= r;
70         rp+= r;
71         if (rp == buf+buffersize) rp=buf;
72       }
73       if (used > waitfill) writing=1;
74     }
75
76     if (FD_ISSET(1,&writefds) && used) {
77       r= write(1,wp,min(used,buf+buffersize-wp));
78       if (r<=0) {
79         if (!(errno == EAGAIN || errno == EINTR)) { perror("write"); exit(1); }
80       } else {
81         used-= r;
82         wp+= r;
83         if (wp == buf+buffersize) wp=buf;
84       }
85     }
86   }
87   exit(0);
88 }