mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-12 21:34:33 +00:00
Move inRange check to the Portal protocol + related simplifications (#2602)
This commit is contained in:
parent
71e466d173
commit
0869a27462
@ -490,18 +490,11 @@ proc createGetHandler*(db: ContentDB): DbGetHandler =
|
|||||||
ok(content)
|
ok(content)
|
||||||
)
|
)
|
||||||
|
|
||||||
proc createStoreHandler*(
|
proc createStoreHandler*(db: ContentDB, cfg: RadiusConfig): DbStoreHandler =
|
||||||
db: ContentDB, cfg: RadiusConfig, p: PortalProtocol
|
|
||||||
): DbStoreHandler =
|
|
||||||
return (
|
return (
|
||||||
proc(
|
proc(
|
||||||
contentKey: ContentKeyByteList, contentId: ContentId, content: seq[byte]
|
contentKey: ContentKeyByteList, contentId: ContentId, content: seq[byte]
|
||||||
) {.raises: [], gcsafe.} =
|
) {.raises: [], gcsafe.} =
|
||||||
# always re-check that the key is in the node range to make sure only
|
|
||||||
# content in range is stored.
|
|
||||||
# TODO: current silent assumption is that both ContentDB and PortalProtocol
|
|
||||||
# are using the same xor distance function
|
|
||||||
if p.inRange(contentId):
|
|
||||||
case cfg.kind
|
case cfg.kind
|
||||||
of Dynamic:
|
of Dynamic:
|
||||||
# In case of dynamic radius, the radius gets adjusted based on the
|
# In case of dynamic radius, the radius gets adjusted based on the
|
||||||
|
@ -201,14 +201,13 @@ proc new*(
|
|||||||
getProtocolId(portalNetwork, PortalSubnetwork.beacon),
|
getProtocolId(portalNetwork, PortalSubnetwork.beacon),
|
||||||
toContentIdHandler,
|
toContentIdHandler,
|
||||||
createGetHandler(beaconDb),
|
createGetHandler(beaconDb),
|
||||||
|
createStoreHandler(beaconDb),
|
||||||
createRadiusHandler(beaconDb),
|
createRadiusHandler(beaconDb),
|
||||||
stream,
|
stream,
|
||||||
bootstrapRecords,
|
bootstrapRecords,
|
||||||
config = portalConfig,
|
config = portalConfig,
|
||||||
)
|
)
|
||||||
|
|
||||||
portalProtocol.dbPut = createStoreHandler(beaconDb)
|
|
||||||
|
|
||||||
BeaconNetwork(
|
BeaconNetwork(
|
||||||
portalProtocol: portalProtocol,
|
portalProtocol: portalProtocol,
|
||||||
beaconDb: beaconDb,
|
beaconDb: beaconDb,
|
||||||
|
@ -692,15 +692,13 @@ proc new*(
|
|||||||
getProtocolId(portalNetwork, PortalSubnetwork.history),
|
getProtocolId(portalNetwork, PortalSubnetwork.history),
|
||||||
toContentIdHandler,
|
toContentIdHandler,
|
||||||
createGetHandler(contentDB),
|
createGetHandler(contentDB),
|
||||||
|
createStoreHandler(contentDB, portalConfig.radiusConfig),
|
||||||
createRadiusHandler(contentDB),
|
createRadiusHandler(contentDB),
|
||||||
stream,
|
stream,
|
||||||
bootstrapRecords,
|
bootstrapRecords,
|
||||||
config = portalConfig,
|
config = portalConfig,
|
||||||
)
|
)
|
||||||
|
|
||||||
portalProtocol.dbPut =
|
|
||||||
createStoreHandler(contentDB, portalConfig.radiusConfig, portalProtocol)
|
|
||||||
|
|
||||||
HistoryNetwork(
|
HistoryNetwork(
|
||||||
portalProtocol: portalProtocol,
|
portalProtocol: portalProtocol,
|
||||||
contentDB: contentDB,
|
contentDB: contentDB,
|
||||||
|
@ -57,15 +57,13 @@ proc new*(
|
|||||||
getProtocolId(portalNetwork, PortalSubnetwork.state),
|
getProtocolId(portalNetwork, PortalSubnetwork.state),
|
||||||
toContentIdHandler,
|
toContentIdHandler,
|
||||||
createGetHandler(contentDB),
|
createGetHandler(contentDB),
|
||||||
|
createStoreHandler(contentDB, portalConfig.radiusConfig),
|
||||||
createRadiusHandler(contentDB),
|
createRadiusHandler(contentDB),
|
||||||
s,
|
s,
|
||||||
bootstrapRecords,
|
bootstrapRecords,
|
||||||
config = portalConfig,
|
config = portalConfig,
|
||||||
)
|
)
|
||||||
|
|
||||||
portalProtocol.dbPut =
|
|
||||||
createStoreHandler(contentDB, portalConfig.radiusConfig, portalProtocol)
|
|
||||||
|
|
||||||
return StateNetwork(
|
return StateNetwork(
|
||||||
portalProtocol: portalProtocol,
|
portalProtocol: portalProtocol,
|
||||||
contentDB: contentDB,
|
contentDB: contentDB,
|
||||||
|
@ -561,6 +561,7 @@ proc new*(
|
|||||||
protocolId: PortalProtocolId,
|
protocolId: PortalProtocolId,
|
||||||
toContentId: ToContentIdHandler,
|
toContentId: ToContentIdHandler,
|
||||||
dbGet: DbGetHandler,
|
dbGet: DbGetHandler,
|
||||||
|
dbPut: DbStoreHandler,
|
||||||
dbRadius: DbRadiusHandler,
|
dbRadius: DbRadiusHandler,
|
||||||
stream: PortalStream,
|
stream: PortalStream,
|
||||||
bootstrapRecords: openArray[Record] = [],
|
bootstrapRecords: openArray[Record] = [],
|
||||||
@ -577,6 +578,7 @@ proc new*(
|
|||||||
baseProtocol: baseProtocol,
|
baseProtocol: baseProtocol,
|
||||||
toContentId: toContentId,
|
toContentId: toContentId,
|
||||||
dbGet: dbGet,
|
dbGet: dbGet,
|
||||||
|
dbPut: dbPut,
|
||||||
dataRadius: dbRadius,
|
dataRadius: dbRadius,
|
||||||
bootstrapRecords: @bootstrapRecords,
|
bootstrapRecords: @bootstrapRecords,
|
||||||
stream: stream,
|
stream: stream,
|
||||||
@ -1595,6 +1597,9 @@ proc storeContent*(
|
|||||||
contentId: ContentId,
|
contentId: ContentId,
|
||||||
content: seq[byte],
|
content: seq[byte],
|
||||||
) =
|
) =
|
||||||
|
# Always re-check that the key is still in the node range to make sure only
|
||||||
|
# content in range is stored.
|
||||||
|
if p.inRange(contentId):
|
||||||
doAssert(p.dbPut != nil)
|
doAssert(p.dbPut != nil)
|
||||||
p.dbPut(contentKey, contentId, content)
|
p.dbPut(contentKey, contentId, content)
|
||||||
|
|
||||||
|
@ -49,13 +49,12 @@ proc initPortalProtocol(
|
|||||||
protocolId,
|
protocolId,
|
||||||
toContentId,
|
toContentId,
|
||||||
createGetHandler(db),
|
createGetHandler(db),
|
||||||
|
createStoreHandler(db, defaultRadiusConfig),
|
||||||
createRadiusHandler(db),
|
createRadiusHandler(db),
|
||||||
stream,
|
stream,
|
||||||
bootstrapRecords = bootstrapRecords,
|
bootstrapRecords = bootstrapRecords,
|
||||||
)
|
)
|
||||||
|
|
||||||
proto.dbPut = createStoreHandler(db, defaultRadiusConfig, proto)
|
|
||||||
|
|
||||||
return proto
|
return proto
|
||||||
|
|
||||||
proc stopPortalProtocol(proto: PortalProtocol) {.async.} =
|
proc stopPortalProtocol(proto: PortalProtocol) {.async.} =
|
||||||
@ -346,12 +345,11 @@ procSuite "Portal Wire Protocol Tests":
|
|||||||
protocolId,
|
protocolId,
|
||||||
toContentId,
|
toContentId,
|
||||||
createGetHandler(db),
|
createGetHandler(db),
|
||||||
|
createStoreHandler(db, defaultRadiusConfig),
|
||||||
createRadiusHandler(db),
|
createRadiusHandler(db),
|
||||||
stream,
|
stream,
|
||||||
)
|
)
|
||||||
|
|
||||||
proto1.dbPut = createStoreHandler(db, defaultRadiusConfig, proto1)
|
|
||||||
|
|
||||||
let item = genByteSeq(10_000)
|
let item = genByteSeq(10_000)
|
||||||
var distances: seq[UInt256] = @[]
|
var distances: seq[UInt256] = @[]
|
||||||
|
|
||||||
|
@ -254,13 +254,12 @@ proc run(config: PortalCliConf) =
|
|||||||
config.protocolId,
|
config.protocolId,
|
||||||
testContentIdHandler,
|
testContentIdHandler,
|
||||||
createGetHandler(db),
|
createGetHandler(db),
|
||||||
|
createStoreHandler(db, defaultRadiusConfig),
|
||||||
createRadiusHandler(db),
|
createRadiusHandler(db),
|
||||||
stream,
|
stream,
|
||||||
bootstrapRecords = bootstrapRecords,
|
bootstrapRecords = bootstrapRecords,
|
||||||
)
|
)
|
||||||
|
|
||||||
portal.dbPut = createStoreHandler(db, defaultRadiusConfig, portal)
|
|
||||||
|
|
||||||
if config.metricsEnabled:
|
if config.metricsEnabled:
|
||||||
let
|
let
|
||||||
address = config.metricsAddress
|
address = config.metricsAddress
|
||||||
|
Loading…
x
Reference in New Issue
Block a user