piermesh/docs/Sponge/base.md

63 lines
1.3 KiB
Markdown
Raw Normal View History

2024-07-29 03:47:27 +00:00
Primary filtering functionality
Dispatches to Protocols
===============================
### *class* Sponge.base.Filter(cache, onodeID, todo, cLog)
2024-08-01 01:00:46 +00:00
Packet filtering orchestration
cLog
: Reference to run.Node.cLog for logging
cache: Daisy.Cache.Cache
: Reference to our Daisy Cache instance
completed: list
: List of completed messages IDs
todo
: Reference to list of actions to do in the Node
onodeID
: PierMesh node ID
2024-07-29 14:13:56 +00:00
#### cache
Messages is temporary storage for unfinished messages
2024-08-01 01:00:46 +00:00
#### mCheck(payload: bytes)
Check if payload bytes are msgpack encoded, otherwise skip
#### *async* protoMap(protocolID: int)
Get protocol from protocol ID using the mlookup table
2024-07-29 03:47:27 +00:00
2024-08-01 01:00:46 +00:00
#### *async* protoRoute(completeMessage: dict)
Route message to proper protocol handler
#### selfCheck(packet)
Check if this is a self packet, if so skip
#### *async* sieve(packet)
Base filtering logic, takes a single MeshTastic packet
2024-07-29 03:47:27 +00:00
### *class* Sponge.Protocols.bubble.filter(completeMessage, recipient, recipientNode, onodeID, todo)
2024-08-01 01:00:46 +00:00
Peer to peer protol
2024-07-29 03:47:27 +00:00
### *class* Sponge.Protocols.catch.filter(completeMessage, recipient, recipientNode, todo)
2024-08-01 01:00:46 +00:00
Catch exchange protocol
2024-07-29 03:47:27 +00:00
### *class* Sponge.Protocols.cryptography.filter(completeMessage, recipientNode, todo)
2024-08-01 01:00:46 +00:00
Cryptographic operations protocol
2024-07-29 03:47:27 +00:00
### *class* Sponge.Protocols.map.filter(completeMessage, todo)
2024-08-01 01:00:46 +00:00
Network mapping protocol