lotus/paychmgr/accessorcache.go

72 lines
2.3 KiB
Go
Raw Normal View History

2020-07-28 23:16:47 +00:00
package paychmgr
2021-12-11 21:03:00 +00:00
import (
"context"
"github.com/filecoin-project/go-address"
)
2020-07-28 23:16:47 +00:00
// accessorByFromTo gets a channel accessor for a given from / to pair.
// The channel accessor facilitates locking a channel so that operations
// must be performed sequentially on a channel (but can be performed at
// the same time on different channels).
func (pm *Manager) accessorByFromTo(from address.Address, to address.Address) (*channelAccessor, error) {
key := pm.accessorCacheKey(from, to)
// First take a read lock and check the cache
pm.lk.RLock()
ca, ok := pm.channels[key]
pm.lk.RUnlock()
if ok {
return ca, nil
}
// Not in cache, so take a write lock
pm.lk.Lock()
defer pm.lk.Unlock()
// Need to check cache again in case it was updated between releasing read
// lock and taking write lock
ca, ok = pm.channels[key]
if !ok {
// Not in cache, so create a new one and store in cache
ca = pm.addAccessorToCache(from, to)
}
return ca, nil
}
// accessorByAddress gets a channel accessor for a given channel address.
// The channel accessor facilitates locking a channel so that operations
// must be performed sequentially on a channel (but can be performed at
// the same time on different channels).
2021-12-11 21:03:00 +00:00
func (pm *Manager) accessorByAddress(ctx context.Context, ch address.Address) (*channelAccessor, error) {
2020-07-28 23:16:47 +00:00
// Get the channel from / to
pm.lk.RLock()
2021-12-11 21:03:00 +00:00
channelInfo, err := pm.store.ByAddress(ctx, ch)
2020-07-28 23:16:47 +00:00
pm.lk.RUnlock()
if err != nil {
return nil, err
}
// TODO: cache by channel address so we can get by address instead of using from / to
return pm.accessorByFromTo(channelInfo.Control, channelInfo.Target)
}
// accessorCacheKey returns the cache key use to reference a channel accessor
func (pm *Manager) accessorCacheKey(from address.Address, to address.Address) string {
return from.String() + "->" + to.String()
}
2020-08-04 21:28:06 +00:00
// addAccessorToCache adds a channel accessor to the cache. Note that the
// channel may not have been created yet, but we still want to reference
// the same channel accessor for a given from/to, so that all attempts to
// access a channel use the same lock (the lock on the accessor)
2020-07-28 23:16:47 +00:00
func (pm *Manager) addAccessorToCache(from address.Address, to address.Address) *channelAccessor {
key := pm.accessorCacheKey(from, to)
2020-09-01 14:33:44 +00:00
ca := newChannelAccessor(pm, from, to)
2020-07-28 23:16:47 +00:00
// TODO: Use LRU
pm.channels[key] = ca
return ca
}