mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-02-03 20:48:31 +00:00
72 lines
1.3 KiB
Go
72 lines
1.3 KiB
Go
package fzf
|
|
|
|
import (
|
|
"bufio"
|
|
"io"
|
|
"os"
|
|
"os/exec"
|
|
|
|
"github.com/junegunn/fzf/src/util"
|
|
)
|
|
|
|
// Reader reads from command or standard input
|
|
type Reader struct {
|
|
pusher func(string)
|
|
eventBox *util.EventBox
|
|
delimNil bool
|
|
}
|
|
|
|
// ReadSource reads data from the default command or from standard input
|
|
func (r *Reader) ReadSource() {
|
|
if util.IsTty() {
|
|
cmd := os.Getenv("FZF_DEFAULT_COMMAND")
|
|
if len(cmd) == 0 {
|
|
cmd = defaultCommand
|
|
}
|
|
r.readFromCommand(cmd)
|
|
} else {
|
|
r.readFromStdin()
|
|
}
|
|
r.eventBox.Set(EvtReadFin, nil)
|
|
}
|
|
|
|
func (r *Reader) feed(src io.Reader) {
|
|
delim := byte('\n')
|
|
if r.delimNil {
|
|
delim = '\000'
|
|
}
|
|
reader := bufio.NewReader(src)
|
|
for {
|
|
line, err := reader.ReadString(delim)
|
|
if line != "" {
|
|
// "ReadString returns err != nil if and only if the returned data does not end in delim."
|
|
if err == nil {
|
|
line = line[:len(line)-1]
|
|
}
|
|
r.pusher(line)
|
|
r.eventBox.Set(EvtReadNew, nil)
|
|
}
|
|
if err != nil {
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
func (r *Reader) readFromStdin() {
|
|
r.feed(os.Stdin)
|
|
}
|
|
|
|
func (r *Reader) readFromCommand(cmd string) {
|
|
listCommand := exec.Command("sh", "-c", cmd)
|
|
out, err := listCommand.StdoutPipe()
|
|
if err != nil {
|
|
return
|
|
}
|
|
err = listCommand.Start()
|
|
if err != nil {
|
|
return
|
|
}
|
|
defer listCommand.Wait()
|
|
r.feed(out)
|
|
}
|