Documentation ¶
Index ¶
- Constants
- Variables
- func GroupHistoriesByRequestTimespan(store db.HistoryStore, histories []db.TopicHistory) []db.HistoryRequest
- func RenewRequests(requests []db.HistoryRequest, now time.Time) []db.HistoryRequest
- type BloomFilterOption
- type Context
- type ContextKey
- type EnvelopeEventsHandler
- type EnvelopeSignalHandler
- func (h EnvelopeSignalHandler) EnvelopeExpired(hash common.Hash, err error)
- func (h EnvelopeSignalHandler) EnvelopeSent(hash common.Hash)
- func (h EnvelopeSignalHandler) MailServerRequestCompleted(requestID common.Hash, lastEnvelopeHash common.Hash, cursor []byte, err error)
- func (h EnvelopeSignalHandler) MailServerRequestExpired(hash common.Hash)
- type EnvelopeState
- type EnvelopesMonitor
- type HistoryUpdateReactor
- func (reactor *HistoryUpdateReactor) CreateRequests(ctx Context, topicRequests []TopicRequest) ([]db.HistoryRequest, error)
- func (reactor *HistoryUpdateReactor) UpdateFinishedRequest(ctx Context, id common.Hash) error
- func (reactor *HistoryUpdateReactor) UpdateTopicHistory(ctx Context, topic whisper.TopicType, timestamp time.Time) error
- type InitiateHistoryRequestParams
- type MailRequestMonitor
- type MessagesRequest
- type MessagesResponse
- type PublicAPI
- func (api *PublicAPI) CompleteRequest(parent context.Context, hex string) (err error)
- func (api *PublicAPI) ConfirmMessagesProcessed(messages []*whisper.Message) (err error)
- func (api *PublicAPI) ConfirmMessagesProcessedByID(messageIDs [][]byte) error
- func (api *PublicAPI) GetNewFilterMessages(filterID string) ([]dedup.DeduplicateMessage, error)
- func (api *PublicAPI) InitiateHistoryRequests(parent context.Context, request InitiateHistoryRequestParams) (rst []hexutil.Bytes, err error)
- func (api *PublicAPI) LoadFilter(parent context.Context, chat *filter.Chat) ([]*filter.Chat, error)
- func (api *PublicAPI) LoadFilters(parent context.Context, chats []*filter.Chat) ([]*filter.Chat, error)
- func (api *PublicAPI) Post(ctx context.Context, req whisper.NewMessage) (hexutil.Bytes, error)
- func (api *PublicAPI) RemoveFilters(parent context.Context, chats []*filter.Chat) error
- func (api *PublicAPI) RequestMessages(_ context.Context, r MessagesRequest) (hexutil.Bytes, error)
- func (api *PublicAPI) RequestMessagesSync(conf RetryConfig, r MessagesRequest) (MessagesResponse, error)
- func (api *PublicAPI) SendDirectMessage(ctx context.Context, msg chat.SendDirectMessageRPC) (hexutil.Bytes, error)
- func (api *PublicAPI) SendPublicMessage(ctx context.Context, msg chat.SendPublicMessageRPC) (hexutil.Bytes, error)
- func (api *PublicAPI) SyncMessages(ctx context.Context, r SyncMessagesRequest) (SyncMessagesResponse, error)
- type Range
- type RequestsRegistry
- type RetryConfig
- type Service
- type SyncMessagesRequest
- type SyncMessagesResponse
- type TimeSource
- type TopicOption
- type TopicOptions
- type TopicRequest
Constants ¶
const ( // WhisperTimeAllowance is needed to ensure that we won't miss envelopes that were // delivered to mail server after we made a request. WhisperTimeAllowance = 20 * time.Second )
Variables ¶
var ( // ErrInvalidMailServerPeer is returned when it fails to parse enode from params. ErrInvalidMailServerPeer = errors.New("invalid mailServerPeer value") // ErrInvalidSymKeyID is returned when it fails to get a symmetric key. ErrInvalidSymKeyID = errors.New("invalid symKeyID value") // ErrInvalidPublicKey is returned when public key can't be extracted // from MailServer's nodeID. ErrInvalidPublicKey = errors.New("can't extract public key") // ErrPFSNotEnabled is returned when an endpoint PFS only is called but // PFS is disabled ErrPFSNotEnabled = errors.New("pfs not enabled") )
Functions ¶
func GroupHistoriesByRequestTimespan ¶ added in v0.35.0
func GroupHistoriesByRequestTimespan(store db.HistoryStore, histories []db.TopicHistory) []db.HistoryRequest
GroupHistoriesByRequestTimespan creates requests from provided histories. Multiple histories will be included into the same request only if they share timespan.
func RenewRequests ¶ added in v0.35.0
func RenewRequests(requests []db.HistoryRequest, now time.Time) []db.HistoryRequest
RenewRequests re-sets current, first and end timestamps. Changes should not be persisted on disk in this method.
Types ¶
type BloomFilterOption ¶ added in v0.35.0
BloomFilterOption is a request based on bloom filter.
func (BloomFilterOption) ToMessagesRequestPayload ¶ added in v0.35.0
func (filter BloomFilterOption) ToMessagesRequestPayload() ([]byte, error)
ToMessagesRequestPayload creates mailserver.MessagesRequestPayload and encodes it to bytes using rlp.
type Context ¶ added in v0.35.0
Context provides access to request-scoped values.
func NewContext ¶ added in v0.35.0
func NewContext(ctx context.Context, source TimeSource, registry *RequestsRegistry, storage db.Storage) Context
NewContext creates Context with all required fields.
func NewContextFromService ¶ added in v0.35.0
NewContextFromService creates new context instance using Service fileds directly and Storage.
func (Context) HistoryStore ¶ added in v0.35.0
func (c Context) HistoryStore() db.HistoryStore
HistoryStore returns db.HistoryStore instance associated with this request.
func (Context) RequestRegistry ¶ added in v0.35.0
func (c Context) RequestRegistry() *RequestsRegistry
RequestRegistry returns RequestRegistry that tracks each request life-span.
type ContextKey ¶ added in v0.35.0
type ContextKey struct {
Name string
}
ContextKey is a type used for keys in shhext Context.
func NewContextKey ¶ added in v0.35.0
func NewContextKey(name string) ContextKey
NewContextKey returns new ContextKey instance.
type EnvelopeEventsHandler ¶
type EnvelopeEventsHandler interface { EnvelopeSent(common.Hash) EnvelopeExpired(common.Hash, error) MailServerRequestCompleted(common.Hash, common.Hash, []byte, error) MailServerRequestExpired(common.Hash) }
EnvelopeEventsHandler used for two different event types.
type EnvelopeSignalHandler ¶
type EnvelopeSignalHandler struct{}
EnvelopeSignalHandler sends signals when envelope is sent or expired.
func (EnvelopeSignalHandler) EnvelopeExpired ¶
func (h EnvelopeSignalHandler) EnvelopeExpired(hash common.Hash, err error)
EnvelopeExpired triggered when envelope is expired but wasn't delivered to any peer.
func (EnvelopeSignalHandler) EnvelopeSent ¶
func (h EnvelopeSignalHandler) EnvelopeSent(hash common.Hash)
EnvelopeSent triggered when envelope delivered atleast to 1 peer.
func (EnvelopeSignalHandler) MailServerRequestCompleted ¶
func (h EnvelopeSignalHandler) MailServerRequestCompleted(requestID common.Hash, lastEnvelopeHash common.Hash, cursor []byte, err error)
MailServerRequestCompleted triggered when the mailserver sends a message to notify that the request has been completed
func (EnvelopeSignalHandler) MailServerRequestExpired ¶
func (h EnvelopeSignalHandler) MailServerRequestExpired(hash common.Hash)
MailServerRequestExpired triggered when the mailserver request expires
type EnvelopeState ¶
type EnvelopeState int
EnvelopeState in local tracker
const ( // NotRegistered returned if asked hash wasn't registered in the tracker. NotRegistered EnvelopeState = -1 // EnvelopePosted is set when envelope was added to a local whisper queue. EnvelopePosted EnvelopeState = iota // EnvelopeSent is set when envelope is sent to atleast one peer. EnvelopeSent // MailServerRequestSent is set when p2p request is sent to the mailserver MailServerRequestSent )
type EnvelopesMonitor ¶
type EnvelopesMonitor struct {
// contains filtered or unexported fields
}
EnvelopesMonitor is responsible for monitoring whisper envelopes state.
func NewEnvelopesMonitor ¶
func NewEnvelopesMonitor(w *whisper.Whisper, handler EnvelopeEventsHandler, mailServerConfirmation bool, mailPeers *mailservers.PeerStore, maxAttempts int) *EnvelopesMonitor
NewEnvelopesMonitor returns a pointer to an instance of the EnvelopesMonitor.
func (*EnvelopesMonitor) Add ¶
func (m *EnvelopesMonitor) Add(envelopeHash common.Hash, message whisper.NewMessage)
Add hash to a tracker.
func (*EnvelopesMonitor) GetMessageState ¶
func (m *EnvelopesMonitor) GetMessageState(mID common.Hash) EnvelopeState
func (*EnvelopesMonitor) GetState ¶
func (m *EnvelopesMonitor) GetState(hash common.Hash) EnvelopeState
type HistoryUpdateReactor ¶ added in v0.35.0
type HistoryUpdateReactor struct {
// contains filtered or unexported fields
}
HistoryUpdateReactor responsible for tracking progress for all history requests. It listens for 2 events:
- when envelope from mail server is received we will update appropriate topic on disk
- when confirmation for request completion is received - we will set last envelope timestamp as the last timestamp for all TopicLists in current request.
func NewHistoryUpdateReactor ¶ added in v0.35.0
func NewHistoryUpdateReactor() *HistoryUpdateReactor
NewHistoryUpdateReactor creates HistoryUpdateReactor instance.
func (*HistoryUpdateReactor) CreateRequests ¶ added in v0.35.0
func (reactor *HistoryUpdateReactor) CreateRequests(ctx Context, topicRequests []TopicRequest) ([]db.HistoryRequest, error)
CreateRequests receives list of topic with desired timestamps and initiates both pending requests and requests that cover new topics.
func (*HistoryUpdateReactor) UpdateFinishedRequest ¶ added in v0.35.0
func (reactor *HistoryUpdateReactor) UpdateFinishedRequest(ctx Context, id common.Hash) error
UpdateFinishedRequest removes successfully finished request and updates every topic attached to the request.
func (*HistoryUpdateReactor) UpdateTopicHistory ¶ added in v0.35.0
func (reactor *HistoryUpdateReactor) UpdateTopicHistory(ctx Context, topic whisper.TopicType, timestamp time.Time) error
UpdateTopicHistory updates Current timestamp for the TopicHistory with a given timestamp.
type InitiateHistoryRequestParams ¶ added in v0.35.0
type InitiateHistoryRequestParams struct { Peer string SymKeyID string Requests []TopicRequest Force bool Timeout time.Duration }
InitiateHistoryRequestParams type for initiating history requests from a peer.
type MailRequestMonitor ¶ added in v0.35.0
type MailRequestMonitor struct {
// contains filtered or unexported fields
}
MailRequestMonitor is responsible for monitoring history request to mailservers.
func (*MailRequestMonitor) GetState ¶ added in v0.35.0
func (m *MailRequestMonitor) GetState(hash common.Hash) EnvelopeState
func (*MailRequestMonitor) Start ¶ added in v0.35.0
func (m *MailRequestMonitor) Start()
Start processing events.
func (*MailRequestMonitor) Stop ¶ added in v0.35.0
func (m *MailRequestMonitor) Stop()
Stop process events.
type MessagesRequest ¶
type MessagesRequest struct { // MailServerPeer is MailServer's enode address. MailServerPeer string `json:"mailServerPeer"` // From is a lower bound of time range (optional). // Default is 24 hours back from now. From uint32 `json:"from"` // To is a upper bound of time range (optional). // Default is now. To uint32 `json:"to"` // Limit determines the number of messages sent by the mail server // for the current paginated request Limit uint32 `json:"limit"` // Cursor is used as starting point for paginated requests Cursor string `json:"cursor"` // Topic is a regular Whisper topic. // DEPRECATED Topic whisper.TopicType `json:"topic"` // Topics is a list of Whisper topics. Topics []whisper.TopicType `json:"topics"` // SymKeyID is an ID of a symmetric key to authenticate to MailServer. // It's derived from MailServer password. SymKeyID string `json:"symKeyID"` // Timeout is the time to live of the request specified in seconds. // Default is 10 seconds Timeout time.Duration `json:"timeout"` // Force ensures that requests will bypass enforced delay. Force bool `json:"force"` }
MessagesRequest is a RequestMessages() request payload.
type MessagesResponse ¶ added in v0.35.0
type MessagesResponse struct { // Cursor from the response can be used to retrieve more messages // for the previous request. Cursor string `json:"cursor"` // Error indicates that something wrong happened when sending messages // to the requester. Error error `json:"error"` }
MessagesResponse is a response for shhext_requestMessages2 method.
type PublicAPI ¶
type PublicAPI struct {
// contains filtered or unexported fields
}
PublicAPI extends whisper public API.
func NewPublicAPI ¶
NewPublicAPI returns instance of the public API.
func (*PublicAPI) CompleteRequest ¶ added in v0.35.0
CompleteRequest client must mark request completed when all envelopes were processed.
func (*PublicAPI) ConfirmMessagesProcessed ¶
ConfirmMessagesProcessed is a method to confirm that messages was consumed by the client side.
func (*PublicAPI) ConfirmMessagesProcessedByID ¶ added in v0.35.0
ConfirmMessagesProcessedByID is a method to confirm that messages was consumed by the client side.
func (*PublicAPI) GetNewFilterMessages ¶
func (api *PublicAPI) GetNewFilterMessages(filterID string) ([]dedup.DeduplicateMessage, error)
GetNewFilterMessages is a prototype method with deduplication
func (*PublicAPI) InitiateHistoryRequests ¶ added in v0.35.0
func (api *PublicAPI) InitiateHistoryRequests(parent context.Context, request InitiateHistoryRequestParams) (rst []hexutil.Bytes, err error)
InitiateHistoryRequests is a stateful API for initiating history request for each topic. Caller of this method needs to define only two parameters per each TopicRequest: - Topic - Duration in nanoseconds. Will be used to determine starting time for history request. After that status-go will guarantee that request for this topic and date will be performed.
func (*PublicAPI) LoadFilter ¶
LoadFilter load a single filter
func (*PublicAPI) LoadFilters ¶ added in v0.35.0
func (api *PublicAPI) LoadFilters(parent context.Context, chats []*filter.Chat) ([]*filter.Chat, error)
LoadFilters load all the necessary filters
func (*PublicAPI) RemoveFilters ¶ added in v0.35.0
RemoveFilter remove a single filter
func (*PublicAPI) RequestMessages ¶
RequestMessages sends a request for historic messages to a MailServer.
func (*PublicAPI) RequestMessagesSync ¶ added in v0.35.0
func (api *PublicAPI) RequestMessagesSync(conf RetryConfig, r MessagesRequest) (MessagesResponse, error)
RequestMessagesSync repeats MessagesRequest using configuration in retry conf.
func (*PublicAPI) SendDirectMessage ¶ added in v0.15.1
func (api *PublicAPI) SendDirectMessage(ctx context.Context, msg chat.SendDirectMessageRPC) (hexutil.Bytes, error)
SendDirectMessage sends a 1:1 chat message to the underlying transport
func (*PublicAPI) SendPublicMessage ¶ added in v0.15.1
func (api *PublicAPI) SendPublicMessage(ctx context.Context, msg chat.SendPublicMessageRPC) (hexutil.Bytes, error)
SendPublicMessage sends a public chat message to the underlying transport
func (*PublicAPI) SyncMessages ¶ added in v0.35.0
func (api *PublicAPI) SyncMessages(ctx context.Context, r SyncMessagesRequest) (SyncMessagesResponse, error)
SyncMessages sends a request to a given MailServerPeer to sync historic messages. MailServerPeers needs to be added as a trusted peer first.
type RequestsRegistry ¶ added in v0.35.0
type RequestsRegistry struct {
// contains filtered or unexported fields
}
RequestsRegistry keeps map for all requests with timestamp when they were made.
func NewRequestsRegistry ¶ added in v0.35.0
func NewRequestsRegistry(delay time.Duration) *RequestsRegistry
NewRequestsRegistry creates instance of the RequestsRegistry and returns pointer to it.
func (*RequestsRegistry) Clear ¶ added in v0.35.0
func (r *RequestsRegistry) Clear()
Clear recreates all structures used for caching requests.
func (*RequestsRegistry) Has ¶ added in v0.35.0
func (r *RequestsRegistry) Has(uid common.Hash) bool
Has returns true if given uid is stored in registry.
func (*RequestsRegistry) Register ¶ added in v0.35.0
Register request with given topics. If request with same topics was made in less then configured delay then error will be returned.
func (*RequestsRegistry) Unregister ¶ added in v0.35.0
func (r *RequestsRegistry) Unregister(uid common.Hash)
Unregister removes request with given UID from registry.
type RetryConfig ¶ added in v0.35.0
type RetryConfig struct { BaseTimeout time.Duration // StepTimeout defines duration increase per each retry. StepTimeout time.Duration MaxRetries int }
RetryConfig specifies configuration for retries with timeout and max amount of retries.
type Service ¶
Service is a service that provides some additional Whisper API.
func New ¶
func New(w *whisper.Whisper, handler EnvelopeEventsHandler, ldb *leveldb.DB, config params.ShhextConfig) *Service
New returns a new Service.
type SyncMessagesRequest ¶ added in v0.35.0
type SyncMessagesRequest struct { // MailServerPeer is MailServer's enode address. MailServerPeer string `json:"mailServerPeer"` // From is a lower bound of time range (optional). // Default is 24 hours back from now. From uint32 `json:"from"` // To is a upper bound of time range (optional). // Default is now. To uint32 `json:"to"` // Limit determines the number of messages sent by the mail server // for the current paginated request Limit uint32 `json:"limit"` // Cursor is used as starting point for paginated requests Cursor string `json:"cursor"` // Topics is a list of Whisper topics. // If empty, a full bloom filter will be used. Topics []whisper.TopicType `json:"topics"` }
SyncMessagesRequest is a SyncMessages() request payload.
type SyncMessagesResponse ¶ added in v0.35.0
type SyncMessagesResponse struct { // Cursor from the response can be used to retrieve more messages // for the previous request. Cursor string `json:"cursor"` // Error indicates that something wrong happened when sending messages // to the requester. Error string `json:"error"` }
SyncMessagesResponse is a response from the mail server to which SyncMessagesRequest was sent.
type TimeSource ¶ added in v0.35.0
TimeSource is a type used for current time.
type TopicOption ¶ added in v0.35.0
TopicOption request for a single topic.
type TopicOptions ¶ added in v0.35.0
type TopicOptions []TopicOption
TopicOptions is a list of topic-based requsts.
func CreateTopicOptionsFromRequest ¶ added in v0.35.0
func CreateTopicOptionsFromRequest(req db.HistoryRequest) TopicOptions
CreateTopicOptionsFromRequest transforms histories attached to a single request to a simpler format - TopicOptions.
func (TopicOptions) ToBloomFilterOption ¶ added in v0.35.0
func (options TopicOptions) ToBloomFilterOption() BloomFilterOption
ToBloomFilterOption creates bloom filter request from a list of topics.
func (TopicOptions) Topics ¶ added in v0.35.0
func (options TopicOptions) Topics() []whisper.TopicType
Topics returns list of whisper TopicType attached to each TopicOption.