aboutsummaryrefslogblamecommitdiffstats
path: root/file.go
blob: e3e8e934fcbb9a9b264bafd337796dd29a7ccdd4 (plain) (tree)
1
2
3
4
5
6
7



               

                 
                                       




                                    




                                          


                                                       




                                                       
                                      
 
                                
                            
 
                                




                                                                        






                                              

                                              
                                                  
         
 
                          
 










                                                    
                                                  











                                                  
                                               





                               
package git

import (
	"bytes"
	"strings"

	"gopkg.in/src-d/go-git.v3/core"
)

// File represents git file objects.
type File struct {
	Name string
	Blob
}

func newFile(name string, b *Blob) *File {
	return &File{Name: name, Blob: *b}
}

// Contents returns the contents of a file as a string.
func (f *File) Contents() (content string, err error) {
	reader, err := f.Reader()
	if err != nil {
		return "", err
	}
	defer checkClose(reader, &err)

	buf := new(bytes.Buffer)
	buf.ReadFrom(reader)

	return buf.String(), nil
}

// Lines returns a slice of lines from the contents of a file, stripping
// all end of line characters. If the last line is empty (does not end
// in an end of line), it is also stripped.
func (f *File) Lines() ([]string, error) {
	content, err := f.Contents()
	if err != nil {
		return nil, err
	}

	splits := strings.Split(content, "\n")
	// remove the last line if it is empty
	if splits[len(splits)-1] == "" {
		return splits[:len(splits)-1], nil
	}

	return splits, nil
}

type FileIter struct {
	w TreeWalker
}

func NewFileIter(r *Repository, t *Tree) *FileIter {
	return &FileIter{w: *NewTreeWalker(r, t)}
}

func (iter *FileIter) Next() (*File, error) {
	for {
		name, _, obj, err := iter.w.Next()
		if err != nil {
			return nil, err
		}

		if obj.Type() != core.BlobObject {
			// Skip non-blob objects
			continue
		}

		blob := &Blob{}
		blob.Decode(obj)

		return newFile(name, blob), nil
	}
}

func (iter *FileIter) Close() {
	iter.w.Close()
}