mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
44 lines
904 B
Go
44 lines
904 B
Go
package cache
|
|
|
|
import (
|
|
"github.com/MichaelMure/git-bug/identity"
|
|
)
|
|
|
|
// 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) AddVersion(version *identity.Version) error {
|
|
i.Identity.AddVersion(version)
|
|
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()
|
|
}
|