From 392430b2c4ceb2e476abe2b3acc928581b2a1445 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 20 Aug 2014 15:12:58 +0200 Subject: nix-store -l: Automatically pipe output into $PAGER --- src/libmain/shared.cc | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'src/libmain/shared.cc') diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc index 9ac9d2773852..ba75847fdb63 100644 --- a/src/libmain/shared.cc +++ b/src/libmain/shared.cc @@ -285,4 +285,44 @@ int handleExceptions(const string & programName, std::function fun) } +RunPager::RunPager() +{ + string pager = getEnv("PAGER"); + if (!isatty(STDOUT_FILENO) || pager.empty()) return; + + /* Ignore SIGINT. The pager will handle it (and we'll get + SIGPIPE). */ + struct sigaction act; + act.sa_handler = SIG_IGN; + act.sa_flags = 0; + sigemptyset(&act.sa_mask); + if (sigaction(SIGINT, &act, 0)) throw SysError("ignoring SIGINT"); + + restoreSIGPIPE(); + + Pipe toPager; + toPager.create(); + + pid = startProcess([&]() { + if (dup2(toPager.readSide, STDIN_FILENO) == -1) + throw SysError("dupping stdin"); + execl("/bin/sh", "sh", "-c", pager.c_str(), NULL); + throw SysError(format("executing `%1%'") % pager); + }); + + if (dup2(toPager.writeSide, STDOUT_FILENO) == -1) + throw SysError("dupping stdout"); + +} + + +RunPager::~RunPager() +{ + if (pid != -1) { + close(STDOUT_FILENO); + pid.wait(true); + } +} + + } -- cgit 1.4.1