/pipein

Library for go to read from a fifo and push the data in.

Primary LanguageGoMIT LicenseMIT

pipein

Small library to capture input on a named pipe.

Makes it easy to take input on pipe, and shut it down.

package main

import (
	"fmt"
	"os"
	"os/signal"

	"github.com/chrhlnd/pipein"
)

func main() {
	shutdown := make(chan bool)
	output := make(chan []byte, 5)

	errs := pipein.NewPipeIn().Connect("/tmp/incomming", output, shutdown)

	sig := make(chan os.Signal, 1)
	signal.Notify(sig, os.Interrupt)

WORK:
	for {
		select {
		case d := <-output:
			fmt.Printf("%v", string(d))
		case e := <-errs:
			fmt.Printf("ERR: %v\n", e)
		case <-sig:
			signal.Notify(sig)
			shutdown <- true
		DRAIN:
			for {
				select {
				case <-sig:
				default:
					break DRAIN
				}
			}
			break WORK
		}
	}

	<-shutdown
	fmt.Printf("Shutdown clean\n")
}

Echo program sample. It captures data piped to the fifo. Then prints it.

On interrupt it cleanly shuts down.

The shutdown channel is bi directional.. Send to it to cause shutdown. Read from it to know its shutdown.