mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 08:45:30 +03:00
50 lines
1.0 KiB
Go
50 lines
1.0 KiB
Go
package cache
|
|
|
|
import (
|
|
"github.com/MichaelMure/git-bug/entities/identity"
|
|
"github.com/MichaelMure/git-bug/repository"
|
|
)
|
|
|
|
var _ identity.Interface = &IdentityCache{}
|
|
|
|
// 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,
|
|
}
|
|
}
|
|
|
|
func (i *IdentityCache) notifyUpdated() error {
|
|
return i.repoCache.identityUpdated(i.Identity.Id())
|
|
}
|
|
|
|
func (i *IdentityCache) Mutate(repo repository.RepoClock, f func(*identity.Mutator)) error {
|
|
err := i.Identity.Mutate(repo, f)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return i.notifyUpdated()
|
|
}
|
|
|
|
func (i *IdentityCache) Commit() error {
|
|
err := i.Identity.Commit(i.repoCache.repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return i.notifyUpdated()
|
|
}
|
|
|
|
func (i *IdentityCache) CommitAsNeeded() error {
|
|
err := i.Identity.CommitAsNeeded(i.repoCache.repo)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return i.notifyUpdated()
|
|
}
|