2018-08-23 20:11:38 +03:00
|
|
|
package bug
|
|
|
|
|
|
|
|
import "github.com/MichaelMure/git-bug/repository"
|
|
|
|
|
|
|
|
var _ Interface = &WithSnapshot{}
|
|
|
|
|
|
|
|
// WithSnapshot encapsulate a Bug and maintain the corresponding Snapshot efficiently
|
|
|
|
type WithSnapshot struct {
|
|
|
|
*Bug
|
|
|
|
snap *Snapshot
|
|
|
|
}
|
|
|
|
|
|
|
|
// Snapshot return the current snapshot
|
|
|
|
func (b *WithSnapshot) Snapshot() *Snapshot {
|
|
|
|
if b.snap == nil {
|
|
|
|
snap := b.Bug.Compile()
|
|
|
|
b.snap = &snap
|
|
|
|
}
|
|
|
|
return b.snap
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append intercept Bug.Append() to update the snapshot efficiently
|
|
|
|
func (b *WithSnapshot) Append(op Operation) {
|
|
|
|
b.Bug.Append(op)
|
|
|
|
|
|
|
|
if b.snap == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
snap := op.Apply(*b.snap)
|
2018-09-04 21:06:26 +03:00
|
|
|
snap.Operations = append(snap.Operations, op)
|
|
|
|
|
2018-08-23 20:11:38 +03:00
|
|
|
b.snap = &snap
|
|
|
|
}
|
|
|
|
|
|
|
|
// Commit intercept Bug.Commit() to update the snapshot efficiently
|
2018-09-21 19:18:51 +03:00
|
|
|
func (b *WithSnapshot) Commit(repo repository.ClockedRepo) error {
|
2018-08-23 20:11:38 +03:00
|
|
|
err := b.Bug.Commit(repo)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
b.snap = nil
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Commit() shouldn't change anything of the bug state apart from the
|
|
|
|
// initial ID set
|
|
|
|
|
|
|
|
if b.snap == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
b.snap.id = b.Bug.id
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Merge intercept Bug.Merge() and clear the snapshot
|
|
|
|
func (b *WithSnapshot) Merge(repo repository.Repo, other Interface) (bool, error) {
|
|
|
|
b.snap = nil
|
|
|
|
return b.Bug.Merge(repo, other)
|
|
|
|
}
|