blob: d94bb051050422e14dd715f87b21d0e7d0966e80 [file] [log] [blame]
// Pipe To Browser client.
// This executable pipes its sdtin to p2b service running in the browser
package main
import (
"bufio"
"flag"
"fmt"
"os"
"veyron2/rt"
"veyron/examples/pipetobrowser"
)
const usage = `
%s is a Pipe To Browser client. It allows allows
one to pipe anything from console to the browser Data being piped to
the browser then is displayed in a graphical and formatted way by a "viewer".
Usage:
%s [<name>/<viewer>]
For example:
ls -l | p2b pipetobrowser/jane/DataTable
where <name> (pipetobrowser/jane) is the veyron name where p2b
service is running in the browser. <viewer> (DataTable) specifies what
viewer should be used to display the data.
`
func Usage() {
fmt.Fprintf(os.Stderr, usage, os.Args[0], os.Args[0])
}
func main() {
flag.Usage = Usage
runtime := rt.Init()
log := runtime.Logger()
if flag.NArg() != 1 {
Usage()
return
}
name := flag.Arg(0)
// bind to the p2b service
s, err := pipetobrowser.BindViewer(name)
if err != nil {
log.Errorf("error binding to server: %v", err)
return
}
stream, err := s.Pipe(runtime.NewContext())
if err != nil {
log.Errorf("failed to pipe to '%s' please ensure p2b service is running in the browser and name is correct.\nERR:%v", name, err)
return
}
scanner := bufio.NewScanner(os.Stdin)
scanner.Split(bufio.ScanRunes)
log.Info("Waiting for input")
for scanner.Scan() {
bytes := scanner.Bytes()
if err := stream.Send(bytes); err != nil {
log.Errorf("error while sending: %v", err)
return
}
}
stream.CloseSend()
result, err := stream.Finish()
if err != nil {
log.Errorf("error finishing stream: %v", err)
return
}
log.Infof("Stream finished with status: %v", result)
fmt.Println("Finished piping to browser! Thanks for using p2b.")
}