diff options
author | Sunny <me@darkowlzz.space> | 2017-12-12 13:56:08 +0530 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-12-12 09:26:08 +0100 |
commit | 757a26038e5404f94523ba07d017d1b38bcbf6dd (patch) | |
tree | 7dae086e094b3af83e608155b9304c85941af740 /worktree.go | |
parent | afdd28d3cfe11c280723c4f5f33845fd415350d6 (diff) | |
download | go-git-757a26038e5404f94523ba07d017d1b38bcbf6dd.tar.gz |
git: worktree, add Grep() method for git grep (#686)
This change implemented grep on worktree with options to invert match and specify pathspec. Also, a commit hash or reference can be used to specify the worktree to search.
Diffstat (limited to 'worktree.go')
-rw-r--r-- | worktree.go | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/worktree.go b/worktree.go index e87f567..2c35ffb 100644 --- a/worktree.go +++ b/worktree.go @@ -8,6 +8,7 @@ import ( stdioutil "io/ioutil" "os" "path/filepath" + "strings" "gopkg.in/src-d/go-git.v4/config" "gopkg.in/src-d/go-git.v4/plumbing" @@ -711,6 +712,105 @@ func (w *Worktree) Clean(opts *CleanOptions) error { return nil } +// GrepResult is structure of a grep result. +type GrepResult struct { + // FileName is the name of file which contains match. + FileName string + // LineNumber is the line number of a file at which a match was found. + LineNumber int + // Content is the content of the file at the matching line. + Content string + // TreeName is the name of the tree (reference name/commit hash) at + // which the match was performed. + TreeName string +} + +func (gr GrepResult) String() string { + return fmt.Sprintf("%s:%s:%d:%s", gr.TreeName, gr.FileName, gr.LineNumber, gr.Content) +} + +// Grep performs grep on a worktree. +func (w *Worktree) Grep(opts *GrepOptions) ([]GrepResult, error) { + if err := opts.Validate(w); err != nil { + return nil, err + } + + // Obtain commit hash from options (CommitHash or ReferenceName). + var commitHash plumbing.Hash + // treeName contains the value of TreeName in GrepResult. + var treeName string + + if opts.ReferenceName != "" { + ref, err := w.r.Reference(opts.ReferenceName, true) + if err != nil { + return nil, err + } + commitHash = ref.Hash() + treeName = opts.ReferenceName.String() + } else if !opts.CommitHash.IsZero() { + commitHash = opts.CommitHash + treeName = opts.CommitHash.String() + } + + // Obtain a tree from the commit hash and get a tracked files iterator from + // the tree. + tree, err := w.getTreeFromCommitHash(commitHash) + if err != nil { + return nil, err + } + fileiter := tree.Files() + + return findMatchInFiles(fileiter, treeName, opts) +} + +// findMatchInFiles takes a FileIter, worktree name and GrepOptions, and +// returns a slice of GrepResult containing the result of regex pattern matching +// in the file content. +func findMatchInFiles(fileiter *object.FileIter, treeName string, opts *GrepOptions) ([]GrepResult, error) { + var results []GrepResult + + // Iterate through the files and look for any matches. + err := fileiter.ForEach(func(file *object.File) error { + // Check if the file name matches with the pathspec. + if opts.PathSpec != nil && !opts.PathSpec.MatchString(file.Name) { + return nil + } + + content, err := file.Contents() + if err != nil { + return err + } + + // Split the content and make parseable line-by-line. + contentByLine := strings.Split(content, "\n") + for lineNum, cnt := range contentByLine { + addToResult := false + // Match the pattern and content. + if opts.Pattern != nil && opts.Pattern.MatchString(cnt) { + // Add to result only if invert match is not enabled. + if !opts.InvertMatch { + addToResult = true + } + } else if opts.InvertMatch { + // If matching fails, and invert match is enabled, add to results. + addToResult = true + } + + if addToResult { + results = append(results, GrepResult{ + FileName: file.Name, + LineNumber: lineNum + 1, + Content: cnt, + TreeName: treeName, + }) + } + } + return nil + }) + + return results, err +} + func rmFileAndDirIfEmpty(fs billy.Filesystem, name string) error { if err := util.RemoveAll(fs, name); err != nil { return err |