pamqp.decode
pamqp.decode
Functions for decoding data of various types including field tables and arrays
by_type(value, data_type, offset=0)
Decodes values using the specified type
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
data_type
|
str
|
The data type name of the value |
required |
offset
|
int
|
The starting position of the data in the byte stream |
0
|
Raises:
| Type | Description |
|---|---|
ValueError
|
when the data type is unknown |
Source code in pamqp/decode.py
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | |
bit(value, position)
Decode a bit value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
position
|
int
|
The position in the byte of the bit value |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |
boolean(value)
Decode a boolean value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
50 51 52 53 54 55 56 57 58 59 60 61 | |
byte_array(value)
Decode a byte_array value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
64 65 66 67 68 69 70 71 72 73 74 75 76 | |
decimal(value)
Decode a decimal value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 | |
double(value)
Decode a double value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
95 96 97 98 99 100 101 102 103 104 105 106 | |
floating_point(value)
Decode a floating point value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
109 110 111 112 113 114 115 116 117 118 119 120 | |
long_int(value)
Decode a long integer value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
123 124 125 126 127 128 129 130 131 132 133 134 | |
long_uint(value)
Decode an unsigned long integer value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | |
long_long_int(value)
Decode a long-long integer value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
154 155 156 157 158 159 160 161 162 163 164 165 166 | |
long_str(value)
Decode a string value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 | |
octet(value)
Decode an octet value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
187 188 189 190 191 192 193 194 195 196 197 198 | |
short_int(value)
Decode a short integer value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
201 202 203 204 205 206 207 208 209 210 211 212 | |
short_uint(value)
Decode an unsigned short integer value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | |
short_short_int(value)
Decode a short-short integer value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
232 233 234 235 236 237 238 239 240 241 242 243 244 | |
short_short_uint(value)
Decode a unsigned short-short integer value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 | |
short_str(value)
Decode a string value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
264 265 266 267 268 269 270 271 272 273 274 275 276 | |
timestamp(value)
Decode a timestamp value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | |
embedded_value(value)
Dynamically decode a value based upon the starting byte
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | |
field_array(value)
Decode a field array value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 | |
field_table(value)
Decode a field array value, returning bytes consumed and the value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
bytes
|
The binary value to decode |
required |
Raises:
| Type | Description |
|---|---|
ValueError
|
when the binary data can not be unpacked |
Source code in pamqp/decode.py
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 | |
void(_)
Return a void, no data to decode
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
_
|
bytes
|
The empty bytes object to ignore |
required |
Source code in pamqp/decode.py
371 372 373 374 375 376 377 378 | |