Skip to content

Commit

Permalink
Drop start stop pattern from Network where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
dapplion committed May 30, 2023
1 parent 0e93c07 commit 961c559
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 18 deletions.
10 changes: 4 additions & 6 deletions packages/beacon-node/src/network/core/networkCore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,13 @@ export class NetworkCore implements INetworkCore {
await reqResp.start();

await gossip.start();
attnetsService.start();
syncnetsService.start();

// Network spec decides version changes based on clock fork, not head fork
const forkCurrentSlot = config.getForkName(clock.currentSlot);
// Register only ReqResp protocols relevant to clock's fork
reqResp.registerProtocolsAtFork(forkCurrentSlot);

await peerManager.start();
await peerManager.startDiscovery();

// Bind discv5's ENR to local metadata
discv5 = peerManager["discovery"]?.discv5;
Expand Down Expand Up @@ -255,14 +253,14 @@ export class NetworkCore implements INetworkCore {

// Must goodbye and disconnect before stopping libp2p
await this.peerManager.goodbyeAndDisconnectAllPeers();
await this.peerManager.stop();
await this.peerManager.close();
await this.gossip.stop();

await this.reqResp.stop();
await this.reqResp.unregisterAllProtocols();

this.attnetsService.stop();
this.syncnetsService.stop();
this.attnetsService.close();
this.syncnetsService.close();
await this.libp2p.stop();

this.closed = true;
Expand Down
9 changes: 5 additions & 4 deletions packages/beacon-node/src/network/peers/peerManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,7 @@ export class PeerManager {
if (metrics) {
metrics.peers.addCollect(() => this.runPeerCountMetrics(metrics));
}
}

async start(): Promise<void> {
await this.discovery?.start();
this.libp2p.connectionManager.addEventListener(Libp2pEvent.peerConnect, this.onLibp2pPeerConnect);
this.libp2p.connectionManager.addEventListener(Libp2pEvent.peerDisconnect, this.onLibp2pPeerDisconnect);
this.networkEventBus.on(NetworkEvent.reqRespRequest, this.onRequest);
Expand All @@ -195,7 +192,11 @@ export class PeerManager {
];
}

async stop(): Promise<void> {
async startDiscovery(): Promise<void> {
await this.discovery?.start();
}

async close(): Promise<void> {
await this.discovery?.stop();
this.libp2p.connectionManager.removeEventListener(Libp2pEvent.peerConnect, this.onLibp2pPeerConnect);
this.libp2p.connectionManager.removeEventListener(Libp2pEvent.peerDisconnect, this.onLibp2pPeerDisconnect);
Expand Down
4 changes: 1 addition & 3 deletions packages/beacon-node/src/network/subnets/attnetsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,12 @@ export class AttnetsService implements IAttnetsService {
if (metrics) {
metrics.attnetsService.subscriptionsRandom.addCollect(() => this.onScrapeLodestarMetrics(metrics));
}
}

start(): void {
this.clock.on(ClockEvent.slot, this.onSlot);
this.clock.on(ClockEvent.epoch, this.onEpoch);
}

stop(): void {
close(): void {
this.clock.off(ClockEvent.slot, this.onSlot);
this.clock.off(ClockEvent.epoch, this.onEpoch);
}
Expand Down
3 changes: 1 addition & 2 deletions packages/beacon-node/src/network/subnets/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ export type CommitteeSubscription = {
};

export type SubnetsService = {
start(): void;
stop(): void;
close(): void;
addCommitteeSubscriptions(subscriptions: CommitteeSubscription[]): void;
getActiveSubnets(): RequestedSubnet[];
subscribeSubnetsToNextFork(nextFork: ForkName): void;
Expand Down
4 changes: 1 addition & 3 deletions packages/beacon-node/src/network/subnets/syncnetsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,11 @@ export class SyncnetsService implements SubnetsService {
if (metrics) {
metrics.syncnetsService.subscriptionsCommittee.addCollect(() => this.onScrapeLodestarMetrics(metrics));
}
}

start(): void {
this.clock.on(ClockEvent.epoch, this.onEpoch);
}

stop(): void {
close(): void {
this.clock.off(ClockEvent.epoch, this.onEpoch);
}

Expand Down

0 comments on commit 961c559

Please sign in to comment.