xmpp-rs/xso-proc
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Jonas Schäfer 0fd69d2ff8 xso-proc: fix order-dependent compilation bug
The test case which is added fails to compile unless one puts the
`parent` field before the `id` field. The cause is explained somewhat by
the change, but I'll spell it out here nontheless.

Previously, the loop in `Compound::make_as_item_iter_statemachine`
assumed that the serialisation order of fields would match their
declaration order. That is not generally true: attributes must be
serialised before element content, because they must be emitted before
the element header is closed.

This change thus splits the generated states into "header" states (for
everything before the end of the element header (think `>`)) and
"body" states (for everything after and including the end of the
element header). After all fields have been processed, we can then
add the data fields of the body fields to the header states so that
they are carried through the generated state machine until they are
needed in the body.
2025-04-18 12:41:12 +02:00
..
src xso-proc: fix order-dependent compilation bug 2025-04-18 12:41:12 +02:00
Cargo.toml Unify version string formats 2024-07-25 14:41:04 +00:00
ChangeLog xso-proc: add support for child elements 2024-07-26 22:31:42 +02:00
README.md xso: add README files 2024-07-24 16:27:53 +02:00

xso_proc -- derive macros for XML parsing

Whats this?

This crate provides the derive macros exported by the xso crate. Please see that crate's README and documentation for more information.

What license is it under?

MPL-2.0 or later, see the LICENSE file.