chiark / gitweb /
preparing for trivsoundd
authorianmdlvl <ianmdlvl>
Wed, 21 May 2003 20:42:36 +0000 (20:42 +0000)
committerianmdlvl <ianmdlvl>
Wed, 21 May 2003 20:42:36 +0000 (20:42 +0000)
backup/rwbuffer.c
backup/wrbufcore.c [new file with mode: 0644]
backup/writebuffer.c

index e38d7db5baf3a5a681e80fe82e0d70012693e13e..d91a96eb639fc42dc8fdb3833456bf8fc164f647 100644 (file)
@@ -100,8 +100,7 @@ void startup(const char *const *argv) {
   }
 
   buffersize= opt_buffersize*1024*1024;
-  buf= malloc(buffersize);
-  if (!buf) { perror("malloc buffer"); exit(6); }
+  buf= xmalloc(buffersize);
 
   if (opt_mlock) {
     if (mlock(buf,buffersize)) { perror("mlock"); exit(2); }
@@ -112,6 +111,10 @@ void startup(const char *const *argv) {
   nonblock(0,1); nonblock(1,1);
 }
 
+void *xmalloc(size_t sz) {
+  void *r= malloc(sz); if (!r) { perror("malloc"); exit(6); }; return r;
+}
+
 void callselect(void) {
   int r;
   
diff --git a/backup/wrbufcore.c b/backup/wrbufcore.c
new file mode 100644 (file)
index 0000000..260f6d2
--- /dev/null
@@ -0,0 +1,78 @@
+/*
+ * wrbufcore.c
+ *
+ * Core of algorithm for writing output to devices which don't like
+ * constant stopping and starting, such as tape drives.  This is:
+ *  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
+ *
+ * writebuffer is part of chiark backup, a system for backing up GNU/Linux
+ * and other UN*X-compatible machines, as used on chiark.greenend.org.uk.
+ * chiark backup is:
+ *  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
+ *  Copyright (C) 1999 Peter Maydell <pmaydell@chiark.greenend.org.uk>
+ *
+ * This 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,
+ * or (at your option) any later version.
+ *
+ * This 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 file; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+static size_t waitfill;
+static int writing;
+
+void wrbufcore_startup(void) {
+  waitfill= (buffersize*3)/4;
+  writing=0;
+}
+
+void wrbufcore_mainloop(void) {
+  int r;
+
+  while (!seeneof || used) {
+    
+    FD_ZERO(&readfds); if (!seeneof && used+1<buffersize) FD_SET(0,&readfds);
+    FD_ZERO(&writefds); if (writing) FD_SET(1,&writefds);
+
+    callselect();
+    
+    if (FD_ISSET(1,&writefds) && !FD_ISSET(0,&readfds) && !used) {
+      writing= 0;
+      FD_CLR(1,&writefds);
+    }
+
+    if (FD_ISSET(0,&readfds)) {
+      r= read(0,rp,min(buffersize-1-used,buf+buffersize-rp));
+      if (!r) {
+        seeneof=1; writing=1;
+      } else if (r<0) {
+        if (!(errno == EAGAIN || errno == EINTR)) { perror("read"); exit(1); }
+      } else {
+        used+= r;
+        rp+= r;
+        if (rp == buf+buffersize) rp=buf;
+      }
+      if (used > waitfill) writing=1;
+    }
+
+    if (FD_ISSET(1,&writefds) && used) {
+      r= write(1,wp,min(used,buf+buffersize-wp));
+      if (r<=0) {
+        if (!(errno == EAGAIN || errno == EINTR)) { perror("write"); exit(1); }
+      } else {
+        used-= r;
+        wp+= r;
+        if (wp == buf+buffersize) wp=buf;
+      }
+    }
+  }
+}
index 68e2940a3f6d41037585d664f56206adab94eab2..9b1a368901d145365b459fabb11455ddf94bb6b2 100644 (file)
 
 const char *progname= "writebuffer";
 
-static size_t waitfill;
-
 int main(int argc, const char *const *argv) {
   int r, writing;
 
   startup(argv);
-  waitfill= (buffersize*3)/4;
-  writing=0;
-  
-  while (!seeneof || used) {
-    
-    FD_ZERO(&readfds); if (!seeneof && used+1<buffersize) FD_SET(0,&readfds);
-    FD_ZERO(&writefds); if (writing) FD_SET(1,&writefds);
-
-    callselect();
-    
-    if (FD_ISSET(1,&writefds) && !FD_ISSET(0,&readfds) && !used) {
-      writing= 0;
-      FD_CLR(1,&writefds);
-    }
-
-    if (FD_ISSET(0,&readfds)) {
-      r= read(0,rp,min(buffersize-1-used,buf+buffersize-rp));
-      if (!r) {
-        seeneof=1; writing=1;
-      } else if (r<0) {
-        if (!(errno == EAGAIN || errno == EINTR)) { perror("read"); exit(1); }
-      } else {
-        used+= r;
-        rp+= r;
-        if (rp == buf+buffersize) rp=buf;
-      }
-      if (used > waitfill) writing=1;
-    }
-
-    if (FD_ISSET(1,&writefds) && used) {
-      r= write(1,wp,min(used,buf+buffersize-wp));
-      if (r<=0) {
-        if (!(errno == EAGAIN || errno == EINTR)) { perror("write"); exit(1); }
-      } else {
-        used-= r;
-        wp+= r;
-        if (wp == buf+buffersize) wp=buf;
-      }
-    }
-  }
+  writebuf_startup();
+  writebuf_mainloop();
   exit(0);
 }