Documentation for Messages Module¶
MessagesManager
¶
Manages creation, processing, and whenever is neccesary to do forwarding of Nebula protobuf messages. Handles different message types defined in the protocol and coordinates with the CommunicationsManager.
Source code in nebula/core/network/messages.py
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
|
cm
property
¶
Lazy-load and return the singleton instance of CommunicationsManager.
Returns:
Name | Type | Description |
---|---|---|
CommunicationsManager |
The communications manager instance. |
__init__(addr, config)
¶
Initialize MessagesManager with the node address and configuration.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
addr
|
str
|
The network address of the current node. |
required |
config
|
dict
|
Configuration dictionary for the node. |
required |
Source code in nebula/core/network/messages.py
16 17 18 19 20 21 22 23 24 25 26 27 28 |
|
create_message(message_type, action='', *args, **kwargs)
¶
Create and serialize a protobuf message of the given type and action.
Dynamically maps provided arguments to the protobuf message fields using predefined templates. Wraps the message in a Nebula 'Wrapper' message with the node's address as source.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
message_type
|
str
|
The type of message to create (e.g. 'offer', 'model', etc.). |
required |
action
|
str
|
Action name for the message, converted to protobuf enum. Defaults to "". |
''
|
*args
|
Positional arguments for message fields according to the template. |
()
|
|
**kwargs
|
Keyword arguments for message fields. |
{}
|
Raises:
Type | Description |
---|---|
ValueError
|
If the message_type is invalid. |
AttributeError
|
If the protobuf message class does not exist. |
Returns:
Name | Type | Description |
---|---|---|
bytes |
Serialized protobuf 'Wrapper' message bytes ready for transmission. |
Source code in nebula/core/network/messages.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 |
|
get_messages_events()
¶
Retrieve the available message event names and their corresponding actions.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
Mapping of message names (excluding 'model') to their available action names. |
Source code in nebula/core/network/messages.py
100 101 102 103 104 105 106 107 108 109 110 111 |
|
process_message(data, addr_from)
async
¶
Asynchronously process an incoming serialized protobuf message.
Parses the message, verifies source, forwards or handles the message depending on its type, and prevents duplicate processing using message hashes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
bytes
|
Serialized protobuf message bytes. |
required |
addr_from
|
str
|
Address from which the message was received. |
required |
Source code in nebula/core/network/messages.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
|