summaryrefslogtreecommitdiffstats
path: root/python_modules/marshal.py
Commit message (Collapse)AuthorAgeFilesLines
* support python 2.5.4+ for marshaller/demarshallersAlon Levy2010-08-171-0/+1
| | | | | Patch adds a "from __future__" import that doesn't affect newer python's but allows python 2.5.4 to run the code (tested under scratchbox, n900 build environment)
* codegen: Allow @to_ptr to make inline structs demarshal as pointersAlexander Larsson2010-07-191-2/+8
|
* codegen: Various cleanupsAlexander Larsson2010-07-191-45/+23
| | | | | | | | | | | | Remove all uses of @end in the marshaller, instead just using the C struct array-at-end-of-struct. To make this work we also remove all use of @end for switches (making them C unions). We drop the zero member of the notify message so that we can avoid this use of @end for a primitive in the marshaller (plus its useless to send over the wire). We change the offsets and stuff in the migration messages to real pointers.
* codegen: Pass member to SubMarshallingSource rather than nameAlexander Larsson2010-07-191-9/+10
| | | | This way we can check attributes on the member.
* marshaller: Make @nonnull a propagated attributeAlexander Larsson2010-07-051-1/+1
| | | | This cleans up some stuff
* marshaller: Add generic way to handle propagating attributesAlexander Larsson2010-07-051-2/+2
| | | | Also switches @ptr_array to use this
* Properly parse and marshall SpiceStringGerd Hoffmann2010-07-021-3/+17
|
* Support @marshall to automatically marshall pointersAlexander Larsson2010-06-301-15/+24
|
* Store SpicePath segment count rather than sizeAlexander Larsson2010-06-301-9/+18
| | | | | | | | | | | | | | | | | | | Internally and in the network protocol (for the new version) we now store the actual number of segments rather than the size of the full segments array in bytes. This change consists of multiple changes to handle this: * Make the qxl parser calculate num_segments * Make the canvas stroke code handle the new SpicePath layout. * Fix up is_equal_path in red_worker.c for the new layout * replace multiple calls to spice_marshall_PathSegment with a single spice_marshall_Path call * Make the byte_size() array size handling do the conversion from network size to number of elements when marshalling/demarshalling. * Update the current spice protocol to send the segment count rather than the size * Update the old spice protocol to use the new byte_size functionallity to calculate the size sent and the number of elements recieved
* Fix build error due to member "SpiceMsgEmpty" same name as typeAlexander Larsson2010-06-281-0/+2
|
* Make pointers 32bit in new protocol formatAlexander Larsson2010-06-231-2/+2
|
* Add support for @virtual markup in spice protocolAlexander Larsson2010-06-221-0/+3
| | | | | | | This means the member is not sent on the network at all. Instead its initialized to the attribute argument when demarshalled. This is useful for backwards compatibility support.
* Make internal generated marshaller functions staticAlexander Larsson2010-06-221-1/+1
|
* Support extra prefix in code generatorsAlexander Larsson2010-06-221-1/+1
| | | | | This is require when we add a new spice.proto for the old (major 1) protocol description.
* Support creating marshallers that are called indirectlyAlexander Larsson2010-06-221-6/+25
| | | | | This is needed if we want to switch marshallers depending on what major version the remote side has.
* Make generated marshallers build on win32Alexander Larsson2010-06-181-0/+1
|
* Add support for generating message and structure marshallersAlexander Larsson2010-06-181-0/+357