summaryrefslogtreecommitdiffhomepage
path: root/Plugins/PipeReader.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/PipeReader.hs')
-rw-r--r--Plugins/PipeReader.hs28
1 files changed, 0 insertions, 28 deletions
diff --git a/Plugins/PipeReader.hs b/Plugins/PipeReader.hs
deleted file mode 100644
index 3fd0dd4..0000000
--- a/Plugins/PipeReader.hs
+++ /dev/null
@@ -1,28 +0,0 @@
------------------------------------------------------------------------------
--- |
--- Module : Plugins.PipeReader
--- Copyright : (c) Andrea Rossato
--- License : BSD-style (see LICENSE)
---
--- Maintainer : Jose A. Ortega Ruiz <jao@gnu.org>
--- Stability : unstable
--- Portability : unportable
---
--- A plugin for reading from named pipes
---
------------------------------------------------------------------------------
-
-module Plugins.PipeReader where
-
-import System.IO
-import Plugins
-
-data PipeReader = PipeReader String String
- deriving (Read, Show)
-
-instance Exec PipeReader where
- alias (PipeReader _ a) = a
- start (PipeReader p _) cb = do
- h <- openFile p ReadWriteMode
- forever (hGetLineSafe h >>= cb)
- where forever a = a >> forever a