mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
283 lines
8.2 KiB
Go
283 lines
8.2 KiB
Go
// Copyright 2023 The go-ethereum Authors
|
|
// This file is part of the go-ethereum library.
|
|
//
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package request
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/ethereum/go-ethereum/common/mclock"
|
|
"github.com/ethereum/go-ethereum/log"
|
|
)
|
|
|
|
// Module represents an update mechanism which is typically responsible for a
|
|
// passive data structure or a certain aspect of it. When registered to a Scheduler,
|
|
// it can be triggered either by server events, other modules or itself.
|
|
type Module interface {
|
|
// Process is a non-blocking function that is called whenever the module is
|
|
// triggered. It can start network requests through the received Environment
|
|
// and/or do other data processing tasks. If triggers are set up correctly,
|
|
// Process is eventually called whenever it might have something new to do
|
|
// either because the data structures have been changed or because new servers
|
|
// became available or new requests became available at existing ones.
|
|
//
|
|
// Note: Process functions of different modules are never called concurrently;
|
|
// they are called by Scheduler in the same order of priority as they were
|
|
// registered in.
|
|
Process(*RequestTracker, []RequestEvent, []ServerEvent) bool
|
|
}
|
|
|
|
// Scheduler is a modular network data retrieval framework that coordinates multiple
|
|
// servers and retrieval mechanisms (modules). It implements a trigger mechanism
|
|
// that calls the Process function of registered modules whenever either the state
|
|
// of existing data structures or connected servers could allow new operations.
|
|
type Scheduler struct {
|
|
lock sync.Mutex
|
|
clock mclock.Clock
|
|
modules []Module // first has highest priority
|
|
names map[Module]string
|
|
trackers map[Module]*RequestTracker
|
|
servers map[Server]struct{}
|
|
pending map[ServerAndId]pendingRequest
|
|
serverEvents []ServerEvent
|
|
stopCh chan chan struct{}
|
|
|
|
triggerCh chan struct{} // restarts waiting sync loop
|
|
// testWaitCh chan struct{} // accepts sends when sync loop is waiting
|
|
// testTimerResults []bool // true is appended when simulated timer is processed; false when stopped
|
|
}
|
|
|
|
type ServerEvent struct {
|
|
Server Server
|
|
Type string
|
|
Data any
|
|
}
|
|
|
|
type RequestEvent struct {
|
|
ServerAndId
|
|
Request Request
|
|
Response Response
|
|
Timeout, Finalized bool
|
|
}
|
|
|
|
type pendingRequest struct {
|
|
request Request
|
|
module Module
|
|
timeout bool
|
|
}
|
|
|
|
// NewScheduler creates a new Scheduler.
|
|
func NewScheduler(clock mclock.Clock) *Scheduler {
|
|
s := &Scheduler{
|
|
clock: clock,
|
|
servers: make(map[Server]struct{}),
|
|
names: make(map[Module]string),
|
|
trackers: make(map[Module]*RequestTracker),
|
|
pending: make(map[ServerAndId]pendingRequest),
|
|
stopCh: make(chan chan struct{}),
|
|
// Note: testWaitCh should not have capacity in order to ensure
|
|
// that after a trigger happens testWaitCh will block until the resulting
|
|
// processing round has been finished
|
|
triggerCh: make(chan struct{}, 1),
|
|
//testWaitCh: make(chan struct{}),
|
|
}
|
|
return s
|
|
}
|
|
|
|
// RegisterModule registers a module. Should be called before starting the scheduler.
|
|
// In each processing round the order of module processing depends on the order of
|
|
// registration.
|
|
func (s *Scheduler) RegisterModule(m Module, name string) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
s.modules = append(s.modules, m)
|
|
s.trackers[m] = &RequestTracker{
|
|
scheduler: s,
|
|
module: m,
|
|
}
|
|
s.names[m] = name
|
|
}
|
|
|
|
// RegisterServer registers a new server.
|
|
func (s *Scheduler) RegisterServer(server Server) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
s.handleEvent(server, Event{Type: EvRegistered})
|
|
server.Subscribe(func(event Event) {
|
|
s.lock.Lock()
|
|
if _, ok := s.servers[server]; ok {
|
|
s.handleEvent(server, event)
|
|
} else {
|
|
log.Error("Event received from unsubscribed server")
|
|
}
|
|
s.lock.Unlock()
|
|
})
|
|
s.servers[server] = struct{}{}
|
|
}
|
|
|
|
// UnregisterServer removes a registered server.
|
|
func (s *Scheduler) UnregisterServer(server Server) {
|
|
s.lock.Lock()
|
|
defer s.lock.Unlock()
|
|
|
|
server.Unsubscribe()
|
|
delete(s.servers, server)
|
|
s.handleEvent(server, Event{Type: EvUnregistered})
|
|
}
|
|
|
|
// Start starts the scheduler. It should be called after registering all modules
|
|
// and before registering any servers.
|
|
func (s *Scheduler) Start() {
|
|
go s.syncLoop()
|
|
}
|
|
|
|
// Stop stops the scheduler.
|
|
func (s *Scheduler) Stop() {
|
|
s.lock.Lock()
|
|
for server, _ := range s.servers {
|
|
server.Unsubscribe()
|
|
}
|
|
s.servers = nil
|
|
s.lock.Unlock()
|
|
stop := make(chan struct{})
|
|
s.stopCh <- stop
|
|
<-stop
|
|
}
|
|
|
|
// syncLoop calls all processable modules in the order of their registration.
|
|
// A round of processing starts whenever there is at least one processable module.
|
|
// Triggers triggered during a processing round do not affect the current round
|
|
// but ensure that there is going to be a next round.
|
|
func (s *Scheduler) syncLoop() {
|
|
for {
|
|
s.processModules()
|
|
loop:
|
|
for {
|
|
select {
|
|
case stop := <-s.stopCh:
|
|
close(stop)
|
|
return
|
|
case <-s.triggerCh:
|
|
break loop
|
|
//case <-s.testWaitCh:
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// processModules runs an entire processing round, calling processable modules
|
|
// with the appropriate Environment.
|
|
func (s *Scheduler) processModules() {
|
|
s.lock.Lock()
|
|
servers := make(serverSet)
|
|
for server, _ := range s.servers {
|
|
if ok, _ := server.CanRequestNow(); ok {
|
|
servers[server] = struct{}{}
|
|
}
|
|
}
|
|
serverEvents := s.serverEvents
|
|
s.serverEvents = nil
|
|
s.lock.Unlock()
|
|
|
|
eventTypes := make([]string, len(serverEvents))
|
|
for i, ev := range serverEvents {
|
|
eventTypes[i] = ev.Type
|
|
}
|
|
log.Debug("Processing modules", "servers", len(servers), "server events", eventTypes)
|
|
|
|
for _, module := range s.modules {
|
|
s.lock.Lock()
|
|
tracker := s.trackers[module]
|
|
tracker.servers = servers
|
|
requestEvents := tracker.requestEvents
|
|
tracker.requestEvents = nil
|
|
s.lock.Unlock()
|
|
|
|
var respCount, failCount, timeoutCount int
|
|
for _, ev := range requestEvents {
|
|
if ev.Response != nil {
|
|
respCount++
|
|
} else if ev.Finalized {
|
|
failCount++
|
|
} else {
|
|
timeoutCount++
|
|
}
|
|
}
|
|
log.Debug("Processing module", "name", s.names[module], "responses", respCount, "fails", failCount, "timeouts", timeoutCount)
|
|
|
|
if module.Process(tracker, requestEvents, serverEvents) {
|
|
s.Trigger()
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *Scheduler) Trigger() {
|
|
select {
|
|
case s.triggerCh <- struct{}{}:
|
|
default:
|
|
}
|
|
}
|
|
|
|
func (s *Scheduler) addRequestEvent(server Server, id ID, response Response, timeout, finalized bool) {
|
|
sid := ServerAndId{Server: server, Id: id}
|
|
if pr, ok := s.pending[sid]; ok {
|
|
tracker := s.trackers[pr.module]
|
|
timeout = timeout || pr.timeout
|
|
tracker.requestEvents = append(tracker.requestEvents, RequestEvent{
|
|
ServerAndId: sid,
|
|
Request: pr.request,
|
|
Response: response,
|
|
Timeout: timeout,
|
|
Finalized: finalized,
|
|
})
|
|
if timeout && !finalized {
|
|
pr.timeout = true
|
|
s.pending[sid] = pr
|
|
} else {
|
|
delete(s.pending, sid)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *Scheduler) addServerEvent(server Server, event Event) {
|
|
s.serverEvents = append(s.serverEvents, ServerEvent{Server: server, Type: event.Type, Data: event.Data})
|
|
}
|
|
|
|
func (s *Scheduler) handleEvent(server Server, event Event) {
|
|
s.Trigger()
|
|
switch event.Type {
|
|
case EvResponse:
|
|
idr := event.Data.(IdAndResponse)
|
|
s.addRequestEvent(server, idr.ID, idr.Response, false, true)
|
|
case EvFail:
|
|
s.addRequestEvent(server, event.Data.(ID), nil, false, true)
|
|
server.Fail("failed request")
|
|
case EvTimeout:
|
|
s.addRequestEvent(server, event.Data.(ID), nil, true, false)
|
|
case EvUnregistered:
|
|
for id, _ := range s.pending {
|
|
if id.Server != server {
|
|
continue
|
|
}
|
|
s.addRequestEvent(server, id.Id, nil, false, true)
|
|
}
|
|
s.addServerEvent(server, event)
|
|
default:
|
|
s.addServerEvent(server, event)
|
|
}
|
|
}
|