Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added list command #5

Merged
merged 6 commits into from
May 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions aah/aah.go
Original file line number Diff line number Diff line change
Expand Up @@ -113,5 +113,6 @@ func init() {
buildCmd,
versionCmd,
helpCmd,
listCmd,
}
}
76 changes: 76 additions & 0 deletions aah/list.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
// Copyright (c) Jeevanandam M. (https://github.com/jeevatkm)
// go-aah/tools source code and usage is governed by a MIT style
// license that can be found in the LICENSE file.

package main

import (
"fmt"
"os"
"path/filepath"
"strings"

"aahframework.org/essentials.v0"
)

const aahProjectIdentifier = "aah.project"

var (
listCmd = &command{
Name: "list",
UsageLine: "aah list",
Short: "List all aah projects in GOPATH",
Long: `aah's list command allows you to view all projects that are
making use of aah in your GOPATH`,
Run: listRun,
}
)

type aahProjectDirectories []string

func (a aahProjectDirectories) String() string {

var formatted string

for _, v := range a {
formatted = fmt.Sprintf("%s \n %s", formatted, v)
}

return formatted
}

func listRun(args []string) {

projectsDir := aahProjectDirectories{}

ess.Walk(gopath, func(path string, info os.FileInfo, err error) error {

if err != nil {
return err
}

if info.IsDir() {
return nil
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use this one return filepath.SkipDir.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If SkipDir is returned, the entire content of that directory would be skipped (https://golang.org/pkg/path/filepath/#WalkFunc).. And since the file path is being inspected for aah.project, the command wouldn't work..

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay my bad. please keep return nil.

Copy link
Contributor Author

@adelowo adelowo May 22, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.. It was actually left there in the latest commit

}

if isAahProject(path) {
projectsDir = append(projectsDir, filepath.Dir(path))
}

return nil
})

if count := len(projectsDir); count > 0 {
fmt.Printf("\n %d aah projects were found in your GOPATH \n", count)
fmt.Println(projectsDir)
return
}

fmt.Println(`No aah projects was found in your GOPATH..
\n You can create one with aah new`)

}

func isAahProject(file string) bool {
return strings.HasSuffix(file, aahProjectIdentifier)
}