mirror of
https://github.com/libp2p/go-libp2p-resource-manager.git
synced 2025-01-27 12:50:07 +08:00
212 lines
5.2 KiB
Go
212 lines
5.2 KiB
Go
package rcmgr
|
|
|
|
import (
|
|
"github.com/libp2p/go-libp2p-core/network"
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
"github.com/libp2p/go-libp2p-core/protocol"
|
|
)
|
|
|
|
// Limit is an object that specifies basic resource limits.
|
|
type Limit interface {
|
|
// GetMemoryLimit returns the (current) memory limit.
|
|
GetMemoryLimit() int64
|
|
// GetStreamLimit returns the stream limit, for inbound or outbound streams.
|
|
GetStreamLimit(network.Direction) int
|
|
// GetConnLimit returns the connection limit, for inbound or outbound connections.
|
|
GetConnLimit(network.Direction) int
|
|
// GetFDLimit returns the file descriptor limit.
|
|
GetFDLimit() int
|
|
|
|
// WithMemoryLimit creates a copy of this limit object, with memory limit adjusted to
|
|
// the specified memFraction of its current value, bounded by minMemory and maxMemory.
|
|
WithMemoryLimit(memFraction float64, minMemory, maxMemory int64) Limit
|
|
// WithStreamLimit creates a copy of this limit object, with stream limits adjusted
|
|
// as specified.
|
|
WithStreamLimit(numStreamsIn, numStreamsOut int) Limit
|
|
// WithConnLimit creates a copy of this limit object, with connetion limits adjusted
|
|
// as specified.
|
|
WithConnLimit(numConnsIn, numConnsOut int) Limit
|
|
// WithFDLimit creates a copy of this limit object, with file descriptor limits adjusted
|
|
// as specified
|
|
WithFDLimit(numFD int) Limit
|
|
}
|
|
|
|
// Limiter is the interface for providing limits to the resource manager.
|
|
type Limiter interface {
|
|
GetSystemLimits() Limit
|
|
GetTransientLimits() Limit
|
|
GetServiceLimits(svc string) Limit
|
|
GetServicePeerLimits(svc string) Limit
|
|
GetProtocolLimits(proto protocol.ID) Limit
|
|
GetPeerLimits(p peer.ID) Limit
|
|
GetStreamLimits(p peer.ID) Limit
|
|
GetConnLimits() Limit
|
|
}
|
|
|
|
// BasicLimiter is a limiter with fixed limits.
|
|
type BasicLimiter struct {
|
|
SystemLimits Limit
|
|
TransientLimits Limit
|
|
DefaultServiceLimits Limit
|
|
ServiceLimits map[string]Limit
|
|
ServicePeerLimits map[string]Limit
|
|
DefaultProtocolLimits Limit
|
|
ProtocolLimits map[protocol.ID]Limit
|
|
DefaultPeerLimits Limit
|
|
PeerLimits map[peer.ID]Limit
|
|
ConnLimits Limit
|
|
StreamLimits Limit
|
|
}
|
|
|
|
var _ Limiter = (*BasicLimiter)(nil)
|
|
|
|
// BaseLimit is a mixin type for basic resource limits.
|
|
type BaseLimit struct {
|
|
StreamsInbound int
|
|
StreamsOutbound int
|
|
ConnsInbound int
|
|
ConnsOutbound int
|
|
FD int
|
|
}
|
|
|
|
func (l *BaseLimit) GetStreamLimit(dir network.Direction) int {
|
|
if dir == network.DirInbound {
|
|
return l.StreamsInbound
|
|
} else {
|
|
return l.StreamsOutbound
|
|
}
|
|
}
|
|
|
|
func (l *BaseLimit) GetConnLimit(dir network.Direction) int {
|
|
if dir == network.DirInbound {
|
|
return l.ConnsInbound
|
|
} else {
|
|
return l.ConnsOutbound
|
|
}
|
|
}
|
|
|
|
func (l *BaseLimit) GetFDLimit() int {
|
|
return l.FD
|
|
}
|
|
|
|
func (l *BasicLimiter) GetSystemLimits() Limit {
|
|
return l.SystemLimits
|
|
}
|
|
|
|
func (l *BasicLimiter) GetTransientLimits() Limit {
|
|
return l.TransientLimits
|
|
}
|
|
|
|
func (l *BasicLimiter) GetServiceLimits(svc string) Limit {
|
|
sl, ok := l.ServiceLimits[svc]
|
|
if !ok {
|
|
return l.DefaultServiceLimits
|
|
}
|
|
return sl
|
|
}
|
|
|
|
func (l *BasicLimiter) GetServicePeerLimits(svc string) Limit {
|
|
return l.ServicePeerLimits[svc]
|
|
}
|
|
|
|
func (l *BasicLimiter) GetProtocolLimits(proto protocol.ID) Limit {
|
|
pl, ok := l.ProtocolLimits[proto]
|
|
if !ok {
|
|
return l.DefaultProtocolLimits
|
|
}
|
|
return pl
|
|
}
|
|
|
|
func (l *BasicLimiter) GetPeerLimits(p peer.ID) Limit {
|
|
pl, ok := l.PeerLimits[p]
|
|
if !ok {
|
|
return l.DefaultPeerLimits
|
|
}
|
|
return pl
|
|
}
|
|
|
|
func (l *BasicLimiter) GetStreamLimits(p peer.ID) Limit {
|
|
return l.StreamLimits
|
|
}
|
|
|
|
func (l *BasicLimiter) GetConnLimits() Limit {
|
|
return l.ConnLimits
|
|
}
|
|
|
|
// DefaultSystemBaseLimit returns the default BaseLimit for the System Scope.
|
|
func DefaultSystemBaseLimit() BaseLimit {
|
|
return BaseLimit{
|
|
StreamsInbound: 4096,
|
|
StreamsOutbound: 16384,
|
|
ConnsInbound: 256,
|
|
ConnsOutbound: 512,
|
|
FD: 512,
|
|
}
|
|
}
|
|
|
|
// DefaultTransientBaseLimit returns the default BaseLimit for the Transient Scope.
|
|
func DefaultTransientBaseLimit() BaseLimit {
|
|
return BaseLimit{
|
|
StreamsInbound: 128,
|
|
StreamsOutbound: 512,
|
|
ConnsInbound: 32,
|
|
ConnsOutbound: 128,
|
|
FD: 128,
|
|
}
|
|
}
|
|
|
|
// DefaultServiceBaseLimit returns the default BaseLimit for Service Scopes.
|
|
func DefaultServiceBaseLimit() BaseLimit {
|
|
return BaseLimit{
|
|
StreamsInbound: 2048,
|
|
StreamsOutbound: 8192,
|
|
}
|
|
}
|
|
|
|
// DefaultProtocolBaseLimit returns the default BaseLimit for Protocol Scopes.
|
|
func DefaultProtocolBaseLimit() BaseLimit {
|
|
return BaseLimit{
|
|
StreamsInbound: 1024,
|
|
StreamsOutbound: 4096,
|
|
}
|
|
}
|
|
|
|
// DefaultPeerBaseLimit returns the default BaseLimit for Peer Scopes.
|
|
func DefaultPeerBaseLimit() BaseLimit {
|
|
return BaseLimit{
|
|
StreamsInbound: 512,
|
|
StreamsOutbound: 2048,
|
|
ConnsInbound: 8,
|
|
ConnsOutbound: 16,
|
|
FD: 8,
|
|
}
|
|
}
|
|
|
|
// ConnBaseLimit returns the BaseLimit for Connection Scopes.
|
|
func ConnBaseLimit() BaseLimit {
|
|
return BaseLimit{
|
|
ConnsInbound: 1,
|
|
ConnsOutbound: 1,
|
|
FD: 1,
|
|
}
|
|
}
|
|
|
|
// StreamBaseLimit returns the BaseLimit for Stream Scopes.
|
|
func StreamBaseLimit() BaseLimit {
|
|
return BaseLimit{
|
|
StreamsInbound: 1,
|
|
StreamsOutbound: 1,
|
|
}
|
|
}
|
|
|
|
func memoryLimit(memoryCap int64, minMemory, maxMemory int64) int64 {
|
|
switch {
|
|
case memoryCap < minMemory:
|
|
return minMemory
|
|
case memoryCap > maxMemory:
|
|
return maxMemory
|
|
default:
|
|
return memoryCap
|
|
}
|
|
}
|