about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2015-01-15 19:20:48 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2015-01-15 19:20:48 +0000
commit1367418899513629d1994894143eb37b9048c850 (patch)
tree5447b0b110a174215e0837595a6aca16fb738acf /src
parent051f0f15b39cfaa198e833dd6b6f1bd7c69ec4eb (diff)
downloads6-portable-utils-1367418899513629d1994894143eb37b9048c850.tar.gz
s6-portable-utils-1367418899513629d1994894143eb37b9048c850.tar.xz
s6-portable-utils-1367418899513629d1994894143eb37b9048c850.zip
- Move seekablepipe from s6-networking to here
 - Version tag: 2.0.1.0, release candidate
Diffstat (limited to 'src')
-rw-r--r--src/skaembutils/deps-exe/seekablepipe1
-rw-r--r--src/skaembutils/seekablepipe.c41
2 files changed, 42 insertions, 0 deletions
diff --git a/src/skaembutils/deps-exe/seekablepipe b/src/skaembutils/deps-exe/seekablepipe
new file mode 100644
index 0000000..e7187fe
--- /dev/null
+++ b/src/skaembutils/deps-exe/seekablepipe
@@ -0,0 +1 @@
+-lskarnet
diff --git a/src/skaembutils/seekablepipe.c b/src/skaembutils/seekablepipe.c
new file mode 100644
index 0000000..611f227
--- /dev/null
+++ b/src/skaembutils/seekablepipe.c
@@ -0,0 +1,41 @@
+/* ISC license. */
+
+#include <unistd.h>
+#include <skalibs/strerr2.h>
+#include <skalibs/iobuffer.h>
+#include <skalibs/djbunix.h>
+
+#define USAGE "seekablepipe tempfile prog..."
+
+#define N 8192
+
+int main (int argc, char const *const *argv, char const *const *envp)
+{
+  iobuffer b ;
+  int fdr, fdw ;
+  int r ;
+  PROG = "seekablepipe" ;
+  if (argc < 3) strerr_dieusage(100, USAGE) ;
+  fdw = open_trunc(argv[1]) ;
+  if (fdw < 0)
+    strerr_diefu2sys(111, "create temporary ", argv[1]) ;
+  fdr = open_readb(argv[1]) ;
+  if (fdr < 0)
+    strerr_diefu3sys(111, "open ", argv[1], " for reading") ;
+  if (unlink(argv[1]) < 0)
+    strerr_diefu2sys(111, "unlink ", argv[1]) ;
+  if (ndelay_off(fdw) < 0)
+    strerr_diefu1sys(111, "set fdw blocking") ;
+  if (!iobuffer_init(&b, 0, fdw))
+    strerr_diefu1sys(111, "iobuffer_init") ;
+  while ((r = iobuffer_fill(&b)) > 0)
+    if (!iobuffer_flush(&b))
+      strerr_diefu2sys(111, "write to ", argv[1]) ;
+  if (r < 0) strerr_diefu1sys(111, "read from stdin") ;
+  iobuffer_finish(&b) ;
+  fd_close(fdw) ;
+  if (fd_move(0, fdr) < 0)
+    strerr_diefu1sys(111, "move fdr to stdin") ;
+  pathexec_run(argv[2], argv+2, envp) ;
+  strerr_dieexec(111, argv[2]) ;
+}