aboutsummaryrefslogtreecommitdiffstats
path: root/worktree_status.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-05-21 12:54:29 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2017-05-21 12:54:29 +0200
commit52add52ea3f92a2a092e6879b6d75fb1279430d5 (patch)
treed53451935a81f90f4da8727a6af1d61952712ae8 /worktree_status.go
parent0f2abe7da065ed25085ea265db20e77609cefdbc (diff)
downloadgo-git-52add52ea3f92a2a092e6879b6d75fb1279430d5.tar.gz
worktree: Remove and Move methods
Diffstat (limited to 'worktree_status.go')
-rw-r--r--worktree_status.go65
1 files changed, 65 insertions, 0 deletions
diff --git a/worktree_status.go b/worktree_status.go
index 632f102..eb4a83a 100644
--- a/worktree_status.go
+++ b/worktree_status.go
@@ -2,7 +2,9 @@ package git
import (
"bytes"
+ "errors"
"io"
+ "os"
"gopkg.in/src-d/go-git.v4/plumbing"
"gopkg.in/src-d/go-git.v4/plumbing/filemode"
@@ -15,6 +17,10 @@ import (
"gopkg.in/src-d/go-git.v4/utils/merkletrie/noder"
)
+// ErrDestinationExists in an Move operation means that the target exists on
+// the worktree.
+var ErrDestinationExists = errors.New("destination exists")
+
// Status returns the working tree status.
func (w *Worktree) Status() (Status, error) {
ref, err := w.r.Head()
@@ -247,6 +253,7 @@ func (w *Worktree) addOrUpdateFileToIndex(filename string, h plumbing.Hash) erro
return err
}
}
+
return w.r.Storer.SetIndex(idx)
}
@@ -266,6 +273,8 @@ func (w *Worktree) doUpdateFileToIndex(e *index.Entry, filename string, h plumbi
e.Hash = h
e.ModifiedAt = info.ModTime()
e.Mode, err = filemode.NewFromOSFileMode(info.Mode())
+ e.Size = uint32(info.Size())
+
if err != nil {
return err
}
@@ -273,3 +282,59 @@ func (w *Worktree) doUpdateFileToIndex(e *index.Entry, filename string, h plumbi
fillSystemInfo(e, info.Sys())
return nil
}
+
+// Remove removes files from the working tree and from the index.
+func (w *Worktree) Remove(path string) (plumbing.Hash, error) {
+ hash, err := w.deleteFromIndex(path)
+ if err != nil {
+ return plumbing.ZeroHash, err
+ }
+
+ return hash, w.deleteFromFilesystem(path)
+}
+
+func (w *Worktree) deleteFromIndex(path string) (plumbing.Hash, error) {
+ idx, err := w.r.Storer.Index()
+ if err != nil {
+ return plumbing.ZeroHash, err
+ }
+
+ e, err := idx.Remove(path)
+ if err != nil {
+ return plumbing.ZeroHash, err
+ }
+
+ return e.Hash, w.r.Storer.SetIndex(idx)
+}
+
+func (w *Worktree) deleteFromFilesystem(path string) error {
+ err := w.fs.Remove(path)
+ if os.IsNotExist(err) {
+ return nil
+ }
+
+ return err
+}
+
+// Move moves or rename a file in the worktree and the index, directories are
+// not supported.
+func (w *Worktree) Move(from, to string) (plumbing.Hash, error) {
+ if _, err := w.fs.Stat(from); err != nil {
+ return plumbing.ZeroHash, err
+ }
+
+ if _, err := w.fs.Stat(to); err == nil {
+ return plumbing.ZeroHash, ErrDestinationExists
+ }
+
+ hash, err := w.deleteFromIndex(from)
+ if err != nil {
+ return plumbing.ZeroHash, err
+ }
+
+ if err := w.fs.Rename(from, to); err != nil {
+ return hash, err
+ }
+
+ return hash, w.addOrUpdateFileToIndex(to, hash)
+}