Merge pull request #13 from posener/improves

Improves
This commit is contained in:
Eyal Posener 2017-05-11 22:23:41 +03:00 committed by GitHub
commit bd51afb7f2
5 changed files with 154 additions and 139 deletions

View File

@ -23,7 +23,7 @@ func TestCompleter_Complete(t *testing.T) {
"-flag2": PredictNothing,
"-flag3": PredictSet("opt1", "opt2", "opt12"),
},
Args: PredictOr(PredictDirs("*"), PredictFiles("*.md")),
Args: PredictFiles("*.md"),
},
},
Flags: map[string]Predictor{
@ -129,7 +129,7 @@ func TestCompleter_Complete(t *testing.T) {
},
{
args: "-o ",
want: testTXTFiles,
want: append(testTXTFiles, "./", "./dir/"),
},
{
args: "-o ./no-su",
@ -137,11 +137,7 @@ func TestCompleter_Complete(t *testing.T) {
},
{
args: "-o ./",
want: testTXTFiles,
},
{
args: "-o ",
want: testTXTFiles,
want: append(testTXTFiles, "./", "./dir/"),
},
{
args: "-o ./read",

View File

@ -1,12 +1,5 @@
package complete
import (
"os"
"path/filepath"
"github.com/posener/complete/match"
)
// Predictor implements a predict method, in which given
// command line arguments returns a list of options it predicts.
type Predictor interface {
@ -46,121 +39,3 @@ var PredictNothing Predictor
// PredictAnything expects something, but nothing particular, such as a number
// or arbitrary name.
var PredictAnything = PredictFunc(func(Args) []string { return nil })
// PredictSet expects specific set of terms, given in the options argument.
func PredictSet(options ...string) Predictor {
return predictSet(options)
}
type predictSet []string
func (p predictSet) Predict(a Args) (prediction []string) {
for _, m := range p {
if match.Prefix(m, a.Last) {
prediction = append(prediction, m)
}
}
return
}
// PredictDirs will search for directories in the given started to be typed
// path, if no path was started to be typed, it will complete to directories
// in the current working directory.
func PredictDirs(pattern string) Predictor {
return files(pattern, true, false)
}
// PredictFiles will search for files matching the given pattern in the started to
// be typed path, if no path was started to be typed, it will complete to files that
// match the pattern in the current working directory.
// To match any file, use "*" as pattern. To match go files use "*.go", and so on.
func PredictFiles(pattern string) Predictor {
return files(pattern, false, true)
}
// PredictFilesOrDirs any file or directory that matches the pattern
func PredictFilesOrDirs(pattern string) Predictor {
return files(pattern, true, true)
}
func files(pattern string, allowDirs, allowFiles bool) PredictFunc {
return func(a Args) (prediction []string) {
dir := dirFromLast(a.Last)
Log("looking for files in %s (last=%s)", dir, a.Last)
files, err := filepath.Glob(filepath.Join(dir, pattern))
if err != nil {
Log("failed glob operation with pattern '%s': %s", pattern, err)
}
if allowDirs {
files = append(files, dir)
}
files = selectByType(files, allowDirs, allowFiles)
if !filepath.IsAbs(pattern) {
filesToRel(files)
}
// add all matching files to prediction
for _, f := range files {
if match.File(f, a.Last) {
prediction = append(prediction, f)
}
}
return
}
}
func selectByType(names []string, allowDirs bool, allowFiles bool) []string {
filtered := make([]string, 0, len(names))
for _, name := range names {
stat, err := os.Stat(name)
if err != nil {
continue
}
if (stat.IsDir() && !allowDirs) || (!stat.IsDir() && !allowFiles) {
continue
}
filtered = append(filtered, name)
}
return filtered
}
// filesToRel, change list of files to their names in the relative
// to current directory form.
func filesToRel(files []string) {
wd, err := os.Getwd()
if err != nil {
return
}
for i := range files {
abs, err := filepath.Abs(files[i])
if err != nil {
continue
}
rel, err := filepath.Rel(wd, abs)
if err != nil {
continue
}
if rel != "." {
rel = "./" + rel
}
if info, err := os.Stat(rel); err == nil && info.IsDir() {
rel += "/"
}
files[i] = rel
}
return
}
// dirFromLast gives the directory of the current written
// last argument if it represents a file name being written.
// in case that it is not, we fall back to the current directory.
func dirFromLast(last string) string {
if info, err := os.Stat(last); err == nil && info.IsDir() {
return last
}
dir := filepath.Dir(last)
_, err := os.Stat(dir)
if err != nil {
return "./"
}
return dir
}

125
predict_files.go Normal file
View File

@ -0,0 +1,125 @@
package complete
import (
"io/ioutil"
"os"
"path/filepath"
"strings"
"github.com/posener/complete/match"
)
// PredictDirs will search for directories in the given started to be typed
// path, if no path was started to be typed, it will complete to directories
// in the current working directory.
func PredictDirs(pattern string) Predictor {
return files(pattern, false)
}
// PredictFiles will search for files matching the given pattern in the started to
// be typed path, if no path was started to be typed, it will complete to files that
// match the pattern in the current working directory.
// To match any file, use "*" as pattern. To match go files use "*.go", and so on.
func PredictFiles(pattern string) Predictor {
return files(pattern, true)
}
func files(pattern string, allowFiles bool) PredictFunc {
return func(a Args) (prediction []string) {
prediction = predictFiles(a.Last, pattern, allowFiles)
return
}
}
func predictFiles(last string, pattern string, allowFiles bool) (prediction []string) {
if strings.HasSuffix(last, "/..") {
return
}
dir := dirFromLast(last)
rel := !filepath.IsAbs(pattern)
files := listFiles(dir, pattern)
// get wording directory for relative name
workDir, err := os.Getwd()
if err != nil {
workDir = ""
}
// add dir if match
files = append(files, dir)
// add all matching files to prediction
for _, f := range files {
if stat, err := os.Stat(f); err != nil || (!stat.IsDir() && !allowFiles) {
continue
}
// change file name to relative if necessary
if rel && workDir != "" {
f = toRel(workDir, f)
}
// test matching of file to the argument
if match.File(f, last) {
prediction = append(prediction, f)
}
}
return
}
func listFiles(dir, pattern string) []string {
m := map[string]bool{}
if files, err := filepath.Glob(filepath.Join(dir, pattern)); err == nil {
for _, f := range files {
m[f] = true
}
}
if dirs, err := ioutil.ReadDir(dir); err == nil {
for _, d := range dirs {
if d.IsDir() {
m[d.Name()] = true
}
}
}
list := make([]string, 0, len(m))
for k := range m {
list = append(list, k)
}
return list
}
// toRel changes a file name to a relative name
func toRel(wd, file string) string {
abs, err := filepath.Abs(file)
if err != nil {
return file
}
rel, err := filepath.Rel(wd, abs)
if err != nil {
return file
}
if rel != "." {
rel = "./" + rel
}
if info, err := os.Stat(rel); err == nil && info.IsDir() {
rel += "/"
}
return rel
}
// dirFromLast gives the directory of the current written
// last argument if it represents a file name being written.
// in case that it is not, we fall back to the current directory.
func dirFromLast(last string) string {
if info, err := os.Stat(last); err == nil && info.IsDir() {
return last
}
dir := filepath.Dir(last)
_, err := os.Stat(dir)
if err != nil {
return "./"
}
return dir
}

19
predict_set.go Normal file
View File

@ -0,0 +1,19 @@
package complete
import "github.com/posener/complete/match"
// PredictSet expects specific set of terms, given in the options argument.
func PredictSet(options ...string) Predictor {
return predictSet(options)
}
type predictSet []string
func (p predictSet) Predict(a Args) (prediction []string) {
for _, m := range p {
if match.Prefix(m, a.Last) {
prediction = append(prediction, m)
}
}
return
}

View File

@ -60,30 +60,30 @@ func TestPredicate(t *testing.T) {
{
name: "files/txt",
p: PredictFiles("*.txt"),
want: []string{"./a.txt", "./b.txt", "./c.txt", "./.dot.txt"},
want: []string{"./", "./dir/", "./a.txt", "./b.txt", "./c.txt", "./.dot.txt"},
},
{
name: "files/txt",
p: PredictFiles("*.txt"),
arg: "./dir/",
want: []string{},
want: []string{"./dir/"},
},
{
name: "files/x",
p: PredictFiles("x"),
arg: "./dir/",
want: []string{"./dir/x"},
want: []string{"./dir/", "./dir/x"},
},
{
name: "files/*",
p: PredictFiles("x*"),
arg: "./dir/",
want: []string{"./dir/x"},
want: []string{"./dir/", "./dir/x"},
},
{
name: "files/md",
p: PredictFiles("*.md"),
want: []string{"./readme.md"},
want: []string{"./", "./dir/", "./readme.md"},
},
{
name: "dirs",
@ -93,7 +93,7 @@ func TestPredicate(t *testing.T) {
},
{
name: "dirs and files",
p: PredictFilesOrDirs("*"),
p: PredictFiles("*"),
arg: "./dir",
want: []string{"./dir/", "./dir/x"},
},
@ -106,7 +106,7 @@ func TestPredicate(t *testing.T) {
name: "subdir",
p: PredictFiles("*"),
arg: "./dir/",
want: []string{"./dir/x"},
want: []string{"./dir/", "./dir/x"},
},
}