tinder

package
v2.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 7, 2024 License: Apache-2.0, MIT Imports: 32 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// LocalDiscoveryName is the name of the localdiscovery driver
	LocalDiscoveryName = "localdisc"
)

Variables

View Source
var ErrNotSupported = fmt.Errorf("not supported")
View Source
var File_tinder_records_proto protoreflect.FileDescriptor

Functions

func AllAddrsFactory

func AllAddrsFactory(ms []ma.Multiaddr) []ma.Multiaddr

func MockBufferSize

func MockBufferSize(size int) discovery.Option

func PrivateAddrsOnlyFactory

func PrivateAddrsOnlyFactory(ms []ma.Multiaddr) []ma.Multiaddr

keep private addr only

func PublicAddrsOnlyFactory

func PublicAddrsOnlyFactory(ms []ma.Multiaddr) []ma.Multiaddr

keep public addr only

Types

type AddrsFilter

type AddrsFilter = bhost.AddrsFactory

type DiscoveryAdaptater

type DiscoveryAdaptater struct {
	// contains filtered or unexported fields
}

func NewDiscoveryAdaptater

func NewDiscoveryAdaptater(logger *zap.Logger, service *Service, defaultOpts ...Option) *DiscoveryAdaptater

func (*DiscoveryAdaptater) Advertise

func (a *DiscoveryAdaptater) Advertise(_ context.Context, topic string, _ ...discovery.Option) (time.Duration, error)

func (*DiscoveryAdaptater) Close

func (a *DiscoveryAdaptater) Close() error

func (*DiscoveryAdaptater) FindPeers

func (a *DiscoveryAdaptater) FindPeers(_ context.Context, topic string, _ ...discovery.Option) (<-chan peer.AddrInfo, error)

type DiscoveryDriver

type DiscoveryDriver struct {
	discovery.Discovery
	// contains filtered or unexported fields
}

func (*DiscoveryDriver) Advertise

func (d *DiscoveryDriver) Advertise(ctx context.Context, topic string, opts ...discovery.Option) (time.Duration, error)

discovery advertise

func (*DiscoveryDriver) FindPeers

func (d *DiscoveryDriver) FindPeers(ctx context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)

discovery find peers

func (*DiscoveryDriver) Name

func (d *DiscoveryDriver) Name() string

func (*DiscoveryDriver) Subscribe

func (d *DiscoveryDriver) Subscribe(_ context.Context, _ string, _ ...discovery.Option) (<-chan peer.AddrInfo, error)

func (*DiscoveryDriver) Unregister

func (d *DiscoveryDriver) Unregister(_ context.Context, _ string, _ ...discovery.Option) error

type Filter

type Filter map[string]struct{}

func (Filter) ShouldFilter

func (f Filter) ShouldFilter(name string) (yes bool)

type IDriver

type IDriver interface {
	Name() string
	Subscribe(ctx context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)
	Unregister(ctx context.Context, topic string, opts ...discovery.Option) error

	// discovery
	Advertise(ctx context.Context, ns string, opts ...discovery.Option) (time.Duration, error)
	FindPeers(ctx context.Context, ns string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)
}

func NewDiscoveryDriver

func NewDiscoveryDriver(name string, disc discovery.Discovery) IDriver

func NewRendezvousDiscovery

func NewRendezvousDiscovery(logger *zap.Logger, host host.Host, rdvPeer peer.ID, factory p2p_rp.AddrsFactory, rng *mrand.Rand, emitters ...p2p_rp.RendezvousSyncClient) IDriver

func NewRoutingDiscoveryDriver

func NewRoutingDiscoveryDriver(name string, routing routing.Routing) IDriver

type LocalDiscovery

type LocalDiscovery struct {
	// contains filtered or unexported fields
}

func NewLocalDiscovery

func NewLocalDiscovery(logger *zap.Logger, host host.Host, _ *rand.Rand) (*LocalDiscovery, error)

func (*LocalDiscovery) Advertise

func (ld *LocalDiscovery) Advertise(ctx context.Context, cid string, opts ...discovery.Option) (time.Duration, error)

func (*LocalDiscovery) Close

func (ld *LocalDiscovery) Close() error

func (*LocalDiscovery) FindPeers

func (ld *LocalDiscovery) FindPeers(_ context.Context, cid string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)

func (*LocalDiscovery) Name

func (ld *LocalDiscovery) Name() string

func (*LocalDiscovery) Subscribe

func (ld *LocalDiscovery) Subscribe(ctx context.Context, cid string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)

func (*LocalDiscovery) Unregister

func (ld *LocalDiscovery) Unregister(_ context.Context, cid string, _ ...discovery.Option) error

type MockDriverServer

type MockDriverServer struct {
	// contains filtered or unexported fields
}

func NewMockDriverServer

func NewMockDriverServer() *MockDriverServer

func (*MockDriverServer) Advertise

func (s *MockDriverServer) Advertise(topic string, info peer.AddrInfo, ttl time.Duration)

func (*MockDriverServer) Client

func (s *MockDriverServer) Client(h host.Host) IDriver

func (*MockDriverServer) Exist

func (s *MockDriverServer) Exist(topic string, _ peer.ID) (ok bool)

func (*MockDriverServer) FindPeers

func (s *MockDriverServer) FindPeers(topic string, limit int) <-chan peer.AddrInfo

func (*MockDriverServer) Subscribe

func (s *MockDriverServer) Subscribe(ctx context.Context, topic string, buffsize int) <-chan peer.AddrInfo

func (*MockDriverServer) Unregister

func (s *MockDriverServer) Unregister(ctx context.Context, topic string, p peer.ID)

func (*MockDriverServer) WaitForPeer

func (s *MockDriverServer) WaitForPeer(topic string, p peer.ID, timeout time.Duration) (err error)

type MockIDriverClient

type MockIDriverClient struct {
	// contains filtered or unexported fields
}

func (*MockIDriverClient) Advertise

func (s *MockIDriverClient) Advertise(_ context.Context, topic string, opts ...discovery.Option) (time.Duration, error)

func (*MockIDriverClient) FindPeers

func (s *MockIDriverClient) FindPeers(_ context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)

func (*MockIDriverClient) Name

func (s *MockIDriverClient) Name() string

func (*MockIDriverClient) Subscribe

func (s *MockIDriverClient) Subscribe(ctx context.Context, topic string, opts ...discovery.Option) (<-chan peer.AddrInfo, error)

func (*MockIDriverClient) Unregister

func (s *MockIDriverClient) Unregister(ctx context.Context, topic string, _ ...discovery.Option) error

type NetworkUpdate

type NetworkUpdate struct {
	// contains filtered or unexported fields
}

func NewNetworkUpdate

func NewNetworkUpdate(logger *zap.Logger, h host.Host) (*NetworkUpdate, error)

func (*NetworkUpdate) Close

func (n *NetworkUpdate) Close() (err error)

func (*NetworkUpdate) GetLastUpdatedAddrs

func (n *NetworkUpdate) GetLastUpdatedAddrs(context.Context) (addrs []ma.Multiaddr)

func (*NetworkUpdate) WaitForUpdate

func (n *NetworkUpdate) WaitForUpdate(ctx context.Context, currentAddrs []ma.Multiaddr) (diff []ma.Multiaddr, ok bool)

type Option

type Option func(opts *Options) error

func FilterOutDrivers

func FilterOutDrivers(drivers ...string) Option

type Options

type Options struct {
	DriverFilters Filter
}

type PeersUpdate

type PeersUpdate map[peer.ID]time.Time

func (PeersUpdate) HasUpdate

func (current PeersUpdate) HasUpdate(tu *topicUpdate) []peer.ID

type Record

type Record struct {
	Cid    string `protobuf:"bytes,1,opt,name=cid,proto3" json:"cid,omitempty"`
	Expire int64  `protobuf:"varint,2,opt,name=expire,proto3" json:"expire,omitempty"`
	// contains filtered or unexported fields
}

func (*Record) Descriptor deprecated

func (*Record) Descriptor() ([]byte, []int)

Deprecated: Use Record.ProtoReflect.Descriptor instead.

func (*Record) GetCid

func (x *Record) GetCid() string

func (*Record) GetExpire

func (x *Record) GetExpire() int64

func (*Record) ProtoMessage

func (*Record) ProtoMessage()

func (*Record) ProtoReflect

func (x *Record) ProtoReflect() protoreflect.Message

func (*Record) Reset

func (x *Record) Reset()

func (*Record) String

func (x *Record) String() string

type Records

type Records struct {
	Records []*Record `protobuf:"bytes,1,rep,name=records,proto3" json:"records,omitempty"`
	// contains filtered or unexported fields
}

func (*Records) Descriptor deprecated

func (*Records) Descriptor() ([]byte, []int)

Deprecated: Use Records.ProtoReflect.Descriptor instead.

func (*Records) GetRecords

func (x *Records) GetRecords() []*Record

func (*Records) ProtoMessage

func (*Records) ProtoMessage()

func (*Records) ProtoReflect

func (x *Records) ProtoReflect() protoreflect.Message

func (*Records) Reset

func (x *Records) Reset()

func (*Records) String

func (x *Records) String() string

type Service

type Service struct {
	// contains filtered or unexported fields
}

func NewService

func NewService(h host.Host, logger *zap.Logger, drivers ...IDriver) (*Service, error)

func (*Service) Close

func (s *Service) Close() error

func (*Service) FindPeers

func (s *Service) FindPeers(ctx context.Context, topic string) <-chan peer.AddrInfo

func (*Service) GetProcess

func (s *Service) GetProcess() uint32

func (*Service) LookupPeers

func (s *Service) LookupPeers(ctx context.Context, topic string, opts ...Option) error

func (*Service) StartAdvertises

func (s *Service) StartAdvertises(ctx context.Context, topic string, opts ...Option) error

StartAdvertises topic on each of service drivers

func (*Service) Subscribe

func (s *Service) Subscribe(topic string, opts ...Option) *Subscription

func (*Service) Unregister

func (s *Service) Unregister(ctx context.Context, topic string) error

Unregister try to unregister topic on each of his driver

func (*Service) WatchPeers

func (s *Service) WatchPeers(ctx context.Context, topic string) <-chan peer.AddrInfo

func (*Service) WatchTopic

func (s *Service) WatchTopic(ctx context.Context, topic string, opts ...Option) (err error)

type Subscription

type Subscription struct {
	// contains filtered or unexported fields
}

func (*Subscription) Close

func (s *Subscription) Close() error

func (*Subscription) Out

func (s *Subscription) Out() <-chan peer.AddrInfo

func (*Subscription) Pull

func (s *Subscription) Pull() error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL