2015-09-28 19:26:49 +03:00
|
|
|
package readline
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"os"
|
2016-02-18 06:25:41 +03:00
|
|
|
"sync"
|
2015-09-28 19:26:49 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-09-29 18:28:12 +03:00
|
|
|
Stdin io.ReadCloser = os.Stdin
|
2015-09-29 12:49:58 +03:00
|
|
|
Stdout io.WriteCloser = os.Stdout
|
|
|
|
Stderr io.WriteCloser = os.Stderr
|
2015-09-28 19:26:49 +03:00
|
|
|
)
|
2016-02-18 06:25:41 +03:00
|
|
|
|
|
|
|
var (
|
|
|
|
std *Instance
|
|
|
|
stdOnce sync.Once
|
|
|
|
)
|
|
|
|
|
2016-03-05 05:46:11 +03:00
|
|
|
// global instance will not submit history automatic
|
2016-02-18 06:25:41 +03:00
|
|
|
func getInstance() *Instance {
|
|
|
|
stdOnce.Do(func() {
|
|
|
|
std, _ = NewEx(&Config{
|
|
|
|
DisableAutoSaveHistory: true,
|
|
|
|
})
|
|
|
|
})
|
|
|
|
return std
|
|
|
|
}
|
|
|
|
|
2016-03-05 05:46:11 +03:00
|
|
|
// let readline load history from filepath
|
|
|
|
// and try to persist history into disk
|
|
|
|
// set fp to "" to prevent readline persisting history to disk
|
|
|
|
// so the `AddHistory` will return nil error forever.
|
2016-02-18 06:25:41 +03:00
|
|
|
func SetHistoryPath(fp string) {
|
|
|
|
ins := getInstance()
|
|
|
|
cfg := ins.Config.Clone()
|
|
|
|
cfg.HistoryFile = fp
|
|
|
|
ins.SetConfig(cfg)
|
|
|
|
}
|
|
|
|
|
2016-03-05 05:46:11 +03:00
|
|
|
// set auto completer to global instance
|
2016-02-23 07:29:23 +03:00
|
|
|
func SetAutoComplete(completer AutoCompleter) {
|
|
|
|
ins := getInstance()
|
|
|
|
cfg := ins.Config.Clone()
|
|
|
|
cfg.AutoComplete = completer
|
|
|
|
ins.SetConfig(cfg)
|
|
|
|
}
|
|
|
|
|
2016-03-05 05:46:11 +03:00
|
|
|
// add history to global instance manually
|
|
|
|
// raise error only if `SetHistoryPath` is set with a non-empty path
|
2016-02-18 06:25:41 +03:00
|
|
|
func AddHistory(content string) error {
|
|
|
|
ins := getInstance()
|
|
|
|
return ins.SaveHistory(content)
|
|
|
|
}
|
|
|
|
|
2016-04-01 12:54:50 +03:00
|
|
|
func Password(prompt string) ([]byte, error) {
|
|
|
|
ins := getInstance()
|
|
|
|
return ins.ReadPassword(prompt)
|
|
|
|
}
|
|
|
|
|
2016-03-05 05:46:11 +03:00
|
|
|
// readline with global configs
|
2016-02-18 06:25:41 +03:00
|
|
|
func Line(prompt string) (string, error) {
|
|
|
|
ins := getInstance()
|
|
|
|
ins.SetPrompt(prompt)
|
|
|
|
return ins.Readline()
|
|
|
|
}
|