summaryrefslogtreecommitdiffstats
path: root/python_modules
Commit message (Collapse)AuthorAgeFilesLines
* Add support for @virtual markup in spice protocolAlexander Larsson2010-06-223-0/+14
| | | | | | | 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-222-4/+4
|
* Support extra prefix in code generatorsAlexander Larsson2010-06-223-6/+7
| | | | | 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.
* Add destructor for demarshalled messagesAlexander Larsson2010-06-221-7/+18
| | | | | | | This is required because we don't want to free messages that just refer to the unparsed message (like SpiceMsgData). Also, in the future we might need it for more complex demarshalling.
* Make generated marshallers build on win32Alexander Larsson2010-06-181-0/+1
|
* Support @as_ptr in demarshaller to avoid copying data unnecessaryAlexander Larsson2010-06-181-1/+13
|
* Add support for generating message and structure marshallersAlexander Larsson2010-06-181-0/+357
|
* Add python code to automake systemAlexander Larsson2010-06-181-0/+6
|
* Initial import of spice protocol description and demarshall generatorAlexander Larsson2010-06-185-0/+2509
The "spice.proto" file describes in detail the networking prototcol that spice uses and spice_codegen.py can parse this and generate demarshallers for such network messages.