git-bug/cache/identity_cache.go

50 lines
1.0 KiB
Go
Raw Normal View History

package cache
import (
"github.com/MichaelMure/git-bug/entities/identity"
2020-11-08 21:18:44 +03:00
"github.com/MichaelMure/git-bug/repository"
)
var _ identity.Interface = &IdentityCache{}
2019-02-18 16:11:37 +03:00
// IdentityCache is a wrapper around an Identity for caching.
type IdentityCache struct {
*identity.Identity
repoCache *RepoCache
}
func NewIdentityCache(repoCache *RepoCache, id *identity.Identity) *IdentityCache {
return &IdentityCache{
Identity: id,
repoCache: repoCache,
}
}
2019-02-18 16:11:37 +03:00
func (i *IdentityCache) notifyUpdated() error {
return i.repoCache.identityUpdated(i.Identity.Id())
}
2020-11-08 21:18:44 +03:00
func (i *IdentityCache) Mutate(repo repository.RepoClock, f func(*identity.Mutator)) error {
err := i.Identity.Mutate(repo, f)
if err != nil {
return err
}
2019-02-19 01:16:47 +03:00
return i.notifyUpdated()
}
func (i *IdentityCache) Commit() error {
2019-02-19 01:16:47 +03:00
err := i.Identity.Commit(i.repoCache.repo)
if err != nil {
return err
}
return i.notifyUpdated()
}
func (i *IdentityCache) CommitAsNeeded() error {
2019-02-19 01:16:47 +03:00
err := i.Identity.CommitAsNeeded(i.repoCache.repo)
if err != nil {
return err
}
return i.notifyUpdated()
}