Crate rbml [] [src]

Unstable (rustc_private)

Really Bad Markup Language (rbml) is an internal serialization format of rustc. This is not intended to be used by users.

Originally based on the Extensible Binary Markup Language (ebml; http://www.matroska.org/technical/specs/rfc/index.html), it is now a separate format tuned for the rust object metadata.

Encoding

RBML document consists of the tag, length and data. The encoded data can contain multiple RBML documents concatenated.

Tags are a hint for the following data. Tags are a number from 0x000 to 0xfff, where 0xf0 through 0xff is reserved. Tags less than 0xf0 are encoded in one literal byte. Tags greater than 0xff are encoded in two big-endian bytes, where the tag number is ORed with 0xf000. (E.g. tag 0x123 = f1 23)

Lengths encode the length of the following data. It is a variable-length unsigned isize, and one of the following forms:

The "overlong" form is allowed so that the length can be encoded without the prior knowledge of the encoded data. For example, the length 0 can be represented either by 80, 40 00, 20 00 00 or 10 00 00 00. The encoder tries to minimize the length if possible. Also, some predefined tags listed below are so commonly used that their lengths are omitted ("implicit length").

Data can be either binary bytes or zero or more nested RBML documents. Nested documents cannot overflow, and should be entirely contained within a parent document.

Predefined Tags

Most RBML tags are defined by the application. (For the rust object metadata, see also rustc::metadata::common.) RBML itself does define a set of predefined tags however, intended for the auto-serialization implementation.

Predefined tags with an implicit length:

Predefined tags with an explicit length:

First 0x20 tags are reserved by RBML; custom tags start at 0x20.

Reexports

pub use self::EbmlEncoderTag::*;
pub use self::Error::*;

Modules

leb128 [Unstable]
opaque [Unstable]
reader [Unstable]
writer [Unstable]

Structs

Doc [Unstable]

Common data structures

TaggedDoc [Unstable]

Enums

EbmlEncoderTag [Unstable]
Error [Unstable]