message
Contains an abstract base class for protocol messages.
DecodeError
Bases: Error
Exception raised when deserializing messages.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
44 45 46 |
|
EncodeError
Bases: Error
Exception raised when serializing messages.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
49 50 51 |
|
Error
Bases: Exception
Base error type for this module.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
39 40 41 |
|
Message
Bases: object
Abstract base class for protocol messages.
Protocol message classes are almost always generated by the protocol compiler. These generated types subclass Message and implement the methods shown below.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
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 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 |
|
ByteSize()
Returns the serialized size of this message.
Recursively calls ByteSize() on all contained messages.
Returns:
Name | Type | Description |
---|---|---|
int | The number of bytes required to serialize this message. |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
355 356 357 358 359 360 361 362 363 |
|
Clear()
Clears all data that was set in the message.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
131 132 133 |
|
ClearExtension(extension_handle)
Clears the contents of a given extension.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
extension_handle | The handle for the extension to clear. | required |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
332 333 334 335 336 337 338 |
|
ClearField(field_name)
Clears the contents of a given field.
Inside a oneof group, clears the field set. If the name neither refers to a defined field or oneof group, :exc:ValueError
is raised.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field_name | str | The name of the field to check for presence. | required |
Raises:
Type | Description |
---|---|
ValueError | if the |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
284 285 286 287 288 289 290 291 292 293 294 295 296 |
|
CopyFrom(other_msg)
Copies the content of the specified message into the current message.
The method clears the current message and then merges the specified message using MergeFrom.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other_msg | Message | A message to copy into the current one. | required |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
117 118 119 120 121 122 123 124 125 126 127 128 129 |
|
DiscardUnknownFields()
Clears all fields in the :class:UnknownFieldSet
.
This operation is recursive for nested message.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
348 349 350 351 352 353 |
|
HasExtension(extension_handle)
Checks if a certain extension is present for this message.
Extensions are retrieved using the :attr:Extensions
mapping (if present).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
extension_handle | The handle for the extension to check. | required |
Returns:
Name | Type | Description |
---|---|---|
bool | Whether the extension is present for this message. |
Raises:
Type | Description |
---|---|
KeyError | if the extension is repeated. Similar to repeated fields, there is no separate notion of presence: a "not present" repeated extension is an empty list. |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 |
|
HasField(field_name)
Checks if a certain field is set for the message.
For a oneof group, checks if any field inside is set. Note that if the field_name is not defined in the message descriptor, :exc:ValueError
will be raised.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
field_name | str | The name of the field to check for presence. | required |
Returns:
Name | Type | Description |
---|---|---|
bool | Whether a value has been set for the named field. |
Raises:
Type | Description |
---|---|
ValueError | if the |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
|
IsInitialized()
Checks if the message is initialized.
Returns:
Name | Type | Description |
---|---|---|
bool | The method returns True if the message is initialized (i.e. all of | |
its required fields are set). |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
145 146 147 148 149 150 151 152 |
|
ListFields()
Returns a list of (FieldDescriptor, value) tuples for present fields.
A message field is non-empty if HasField() would return true. A singular primitive field is non-empty if HasField() would return true in proto2 or it is non zero in proto3. A repeated field is non-empty if it contains at least one element. The fields are ordered by field number.
Returns:
Type | Description |
---|---|
list[tuple(FieldDescriptor, value)]: field descriptors and values | |
for all fields in the message which are not empty. The values vary by | |
field type. |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
|
MergeFrom(other_msg)
Merges the contents of the specified message into current message.
This method merges the contents of the specified message into the current message. Singular fields that are set in the specified message overwrite the corresponding fields in the current message. Repeated fields are appended. Singular sub-messages and groups are recursively merged.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other_msg | Message | A message to merge into the current message. | required |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
104 105 106 107 108 109 110 111 112 113 114 115 |
|
MergeFromString(serialized)
Merges serialized protocol buffer data into this message.
When we find a field in serialized
that is already present in this message:
- If it's a "repeated" field, we append to the end of our list.
- Else, if it's a scalar, we overwrite our field.
- Else, (it's a nonrepeated composite), we recursively merge into the existing composite.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
serialized | bytes | Any object that allows us to call | required |
Returns:
Name | Type | Description |
---|---|---|
int | The number of bytes read from | |
For non-group messages, this will always be | ||
but for messages which are actually groups, this will | ||
generally be less than | ||
stop when we reach an | ||
we do stop because of an | ||
of bytes returned does not include the bytes | ||
for the |
Raises:
Type | Description |
---|---|
DecodeError | if the input cannot be parsed. |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
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 |
|
ParseFromString(serialized)
Parse serialized protocol buffer data into this message.
Like :func:MergeFromString()
, except we clear the object first.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
193 194 195 196 197 198 199 200 201 202 |
|
SerializePartialToString(**kwargs)
Serializes the protocol message to a binary string.
This method is similar to SerializeToString but doesn't check if the message is initialized.
Other Parameters:
Name | Type | Description |
---|---|---|
deterministic | bool | If true, requests deterministic serialization of the protobuf, with predictable ordering of map keys. |
Returns:
Name | Type | Description |
---|---|---|
bytes | A serialized representation of the partial message. |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
220 221 222 223 224 225 226 227 228 229 230 231 232 233 |
|
SerializeToString(**kwargs)
Serializes the protocol message to a binary string.
Other Parameters:
Name | Type | Description |
---|---|---|
deterministic | bool | If true, requests deterministic serialization of the protobuf, with predictable ordering of map keys. |
Returns:
Type | Description |
---|---|
A binary string representation of the message if all of the required | |
fields in the message are set (i.e. the message is initialized). |
Raises:
Type | Description |
---|---|
EncodeError | if the message isn't initialized (see :func: |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
|
SetInParent()
Mark this as present in the parent.
This normally happens automatically when you assign a field of a sub-message, but sometimes you want to make the sub-message present while keeping it empty. If you find yourself using this, you may want to reconsider your design.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
135 136 137 138 139 140 141 142 143 |
|
UnknownFields()
Returns the UnknownFieldSet.
Returns:
Name | Type | Description |
---|---|---|
UnknownFieldSet | The unknown fields stored in this message. |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
340 341 342 343 344 345 346 |
|
WhichOneof(oneof_group)
Returns the name of the field that is set inside a oneof group.
If no field is set, returns None.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
oneof_group | str | the name of the oneof group to check. | required |
Returns:
Type | Description |
---|---|
str or None: The name of the group that is set, or None. |
Raises:
Type | Description |
---|---|
ValueError | no group with the given name exists |
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
|
__eq__(other_msg)
Recursively compares two messages by value and structure.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
85 86 87 |
|
__getstate__()
Support the pickle protocol.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
394 395 396 |
|
__setstate__(state)
Support the pickle protocol.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
398 399 400 401 402 403 404 405 406 |
|
__str__()
Outputs a human-readable representation of the message.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
96 97 98 |
|
__unicode__()
Outputs a human-readable representation of the message.
Source code in client/ayon_hiero/vendor/google/protobuf/message.py
100 101 102 |
|