aboutsummaryrefslogblamecommitdiffstats
path: root/cache/identity_cache.go
blob: 466b6150be6a8f991c38b4016f5382c5a8b3a147 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


             

              
                                                          
                                               
                                                   

 
                                           
                                    
 
                                                             
                           
                                            
                                              
 
                     
                          

 
                                                                                                                                 
                              


                                             


         
                                               
                                               

 
                                                                                            
                   
                                         
                     


                          


                                
                                        
                   
                                        
                     



                                


                                                
                   
                                                
                     



                                
 



                                
package cache

import (
	"sync"

	"github.com/MichaelMure/git-bug/entities/identity"
	"github.com/MichaelMure/git-bug/entity"
	"github.com/MichaelMure/git-bug/repository"
)

var _ identity.Interface = &IdentityCache{}
var _ CacheEntity = &IdentityCache{}

// IdentityCache is a wrapper around an Identity for caching.
type IdentityCache struct {
	repo          repository.ClockedRepo
	entityUpdated func(id entity.Id) error

	mu sync.Mutex
	*identity.Identity
}

func NewIdentityCache(i *identity.Identity, repo repository.ClockedRepo, entityUpdated func(id entity.Id) error) *IdentityCache {
	return &IdentityCache{
		repo:          repo,
		entityUpdated: entityUpdated,
		Identity:      i,
	}
}

func (i *IdentityCache) notifyUpdated() error {
	return i.entityUpdated(i.Identity.Id())
}

func (i *IdentityCache) Mutate(repo repository.RepoClock, f func(*identity.Mutator)) error {
	i.mu.Lock()
	err := i.Identity.Mutate(repo, f)
	i.mu.Unlock()
	if err != nil {
		return err
	}
	return i.notifyUpdated()
}

func (i *IdentityCache) Commit() error {
	i.mu.Lock()
	err := i.Identity.Commit(i.repo)
	i.mu.Unlock()
	if err != nil {
		return err
	}
	return i.notifyUpdated()
}

func (i *IdentityCache) CommitAsNeeded() error {
	i.mu.Lock()
	err := i.Identity.CommitAsNeeded(i.repo)
	i.mu.Unlock()
	if err != nil {
		return err
	}
	return i.notifyUpdated()
}

func (i *IdentityCache) Lock() {
	i.mu.Lock()
}