2011-07-07 14:22:39 -05:00
|
|
|
// EBML tag definitions and utils shared by the encoder and decoder
|
|
|
|
|
2011-12-13 18:25:51 -06:00
|
|
|
import str;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_paths: uint = 0x01u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_items: uint = 0x02u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_paths_data: uint = 0x03u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_paths_data_name: uint = 0x04u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_paths_data_item: uint = 0x05u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_paths_data_mod: uint = 0x06u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_def_id: uint = 0x07u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_items_data: uint = 0x08u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_items_data_item: uint = 0x09u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-29 18:40:23 -05:00
|
|
|
const tag_items_data_item_family: uint = 0x0au;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-12-28 10:50:12 -06:00
|
|
|
const tag_items_data_item_ty_param_bounds: uint = 0x0bu;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_items_data_item_type: uint = 0x0cu;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_items_data_item_symbol: uint = 0x0du;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_items_data_item_variant: uint = 0x0eu;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_items_data_item_tag_id: uint = 0x0fu;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_index: uint = 0x11u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_index_buckets: uint = 0x12u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_index_buckets_bucket: uint = 0x13u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_index_buckets_bucket_elt: uint = 0x14u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_index_table: uint = 0x15u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_meta_item_name_value: uint = 0x18u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_meta_item_name: uint = 0x19u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_meta_item_value: uint = 0x20u;
|
2011-06-27 21:41:48 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_attributes: uint = 0x21u;
|
2011-06-27 21:41:48 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_attribute: uint = 0x22u;
|
2011-06-27 21:41:48 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_meta_item_word: uint = 0x23u;
|
2011-06-28 01:02:02 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_meta_item_list: uint = 0x24u;
|
2011-07-07 14:22:39 -05:00
|
|
|
|
2011-07-08 13:29:56 -05:00
|
|
|
// The list of crates that this crate depends on
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_crate_deps: uint = 0x25u;
|
2011-07-08 13:29:56 -05:00
|
|
|
|
|
|
|
// A single crate dependency
|
2011-07-27 07:19:39 -05:00
|
|
|
const tag_crate_dep: uint = 0x26u;
|
2011-07-08 13:29:56 -05:00
|
|
|
|
2011-12-11 09:23:38 -06:00
|
|
|
const tag_crate_hash: uint = 0x28u;
|
|
|
|
|
2011-12-16 07:17:52 -06:00
|
|
|
const tag_mod_impl: uint = 0x30u;
|
|
|
|
|
2012-01-05 06:57:27 -06:00
|
|
|
const tag_item_method: uint = 0x31u;
|
2012-01-05 03:57:19 -06:00
|
|
|
const tag_impl_iface: uint = 0x32u;
|
2011-12-16 07:17:52 -06:00
|
|
|
|
2012-01-10 15:50:40 -06:00
|
|
|
// discriminator value for variants
|
|
|
|
const tag_disr_val: uint = 0x34u;
|
|
|
|
|
2011-07-07 14:22:39 -05:00
|
|
|
// djb's cdb hashes.
|
2011-10-06 05:26:12 -05:00
|
|
|
fn hash_node_id(&&node_id: int) -> uint { ret 177573u ^ (node_id as uint); }
|
2011-07-07 14:22:39 -05:00
|
|
|
|
2011-10-10 06:54:03 -05:00
|
|
|
fn hash_path(&&s: str) -> uint {
|
2011-07-27 07:19:39 -05:00
|
|
|
let h = 5381u;
|
2011-09-01 19:27:58 -05:00
|
|
|
for ch: u8 in str::bytes(s) { h = (h << 5u) + h ^ (ch as uint); }
|
2011-07-07 14:22:39 -05:00
|
|
|
ret h;
|
|
|
|
}
|
|
|
|
|