2011-07-07 14:22:39 -05:00
|
|
|
// EBML tag definitions and utils shared by the encoder and decoder
|
|
|
|
|
|
|
|
import std::str;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
|
|
|
const uint tag_paths = 0x01u;
|
|
|
|
|
|
|
|
const uint tag_items = 0x02u;
|
|
|
|
|
|
|
|
const uint tag_paths_data = 0x03u;
|
|
|
|
|
|
|
|
const uint tag_paths_data_name = 0x04u;
|
|
|
|
|
|
|
|
const uint tag_paths_data_item = 0x05u;
|
|
|
|
|
|
|
|
const uint tag_paths_data_mod = 0x06u;
|
|
|
|
|
|
|
|
const uint tag_def_id = 0x07u;
|
|
|
|
|
|
|
|
const uint tag_items_data = 0x08u;
|
|
|
|
|
|
|
|
const uint tag_items_data_item = 0x09u;
|
|
|
|
|
|
|
|
const uint tag_items_data_item_kind = 0x0au;
|
|
|
|
|
|
|
|
const uint tag_items_data_item_ty_param_count = 0x0bu;
|
|
|
|
|
|
|
|
const uint tag_items_data_item_type = 0x0cu;
|
|
|
|
|
|
|
|
const uint tag_items_data_item_symbol = 0x0du;
|
|
|
|
|
|
|
|
const uint tag_items_data_item_variant = 0x0eu;
|
|
|
|
|
|
|
|
const uint tag_items_data_item_tag_id = 0x0fu;
|
|
|
|
|
|
|
|
const uint tag_index = 0x11u;
|
|
|
|
|
|
|
|
const uint tag_index_buckets = 0x12u;
|
|
|
|
|
|
|
|
const uint tag_index_buckets_bucket = 0x13u;
|
|
|
|
|
|
|
|
const uint tag_index_buckets_bucket_elt = 0x14u;
|
|
|
|
|
|
|
|
const uint tag_index_table = 0x15u;
|
|
|
|
|
2011-06-28 01:02:02 -05:00
|
|
|
const uint tag_meta_item_name_value = 0x18u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
2011-06-28 01:02:02 -05:00
|
|
|
const uint tag_meta_item_name = 0x19u;
|
2011-06-27 16:54:59 -05:00
|
|
|
|
|
|
|
const uint tag_meta_item_value = 0x20u;
|
2011-06-27 21:41:48 -05:00
|
|
|
|
|
|
|
const uint tag_attributes = 0x21u;
|
|
|
|
|
|
|
|
const uint tag_attribute = 0x22u;
|
|
|
|
|
2011-06-28 01:02:02 -05:00
|
|
|
const uint tag_meta_item_word = 0x23u;
|
|
|
|
|
2011-07-07 14:22:39 -05:00
|
|
|
const uint tag_meta_item_list = 0x24u;
|
|
|
|
|
2011-07-08 13:29:56 -05:00
|
|
|
// The list of crates that this crate depends on
|
|
|
|
const uint tag_crate_deps = 0x25u;
|
|
|
|
|
|
|
|
// A single crate dependency
|
|
|
|
const uint tag_crate_dep = 0x26u;
|
|
|
|
|
2011-07-07 14:22:39 -05:00
|
|
|
// djb's cdb hashes.
|
|
|
|
fn hash_node_id(&int node_id) -> uint { ret 177573u ^ (node_id as uint); }
|
|
|
|
|
|
|
|
fn hash_path(&str s) -> uint {
|
|
|
|
auto h = 5381u;
|
|
|
|
for (u8 ch in str::bytes(s)) { h = (h << 5u) + h ^ (ch as uint); }
|
|
|
|
ret h;
|
|
|
|
}
|
|
|
|
|