X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=xml-tree.cpp;fp=xml-tree.cpp;h=b33383e6dcd41e08542f8633c4fa62671a8e5b1b;hb=9775b1833487a525901cf968d91a9e7f193395c5;hp=e230d9baab037ab8beb6aa410e7f8ed6fae6843b;hpb=a03dd7328575623b07aee80362b4214f0cf76b31;p=SXSI%2FXMLTree.git diff --git a/xml-tree.cpp b/xml-tree.cpp index e230d9b..b33383e 100644 --- a/xml-tree.cpp +++ b/xml-tree.cpp @@ -98,10 +98,17 @@ xml_tree::xml_tree(std::vector *tags_, tag_names = new std::vector(); tag_names->resize(tag_ids->size()); - + this->attribute_ids = new std::unordered_set(); std::unordered_map::iterator val; - for(val = this->tag_ids->begin(); val != this->tag_ids->end(); ++val) + for(val = this->tag_ids->begin(); val != this->tag_ids->end(); ++val){ (*tag_names)[val->second] = val->first; + if (val->first.size() >= 3 && + val->first[0] == '<' && + val->first[1] == '@' && + val->first[2] == '>'){ + this->attribute_ids->insert(val->second); + }; + } uint32_t max_tag = tag_names->size() - 1; bit_vector *tmp_bitmap = new bit_vector(npar, 1, 0); @@ -165,6 +172,7 @@ xml_tree::~xml_tree() delete [] tag_seq; delete tag_names; delete tag_ids; + delete attribute_ids; if (text_collection) delete text_collection; if (text_positions) delete text_positions; } @@ -282,6 +290,7 @@ xml_tree* xml_tree::load(int fd, char* name, bool load_tc, int sf) tree->par = loadTree(fp); //TODO use new api tree->tag_names = new std::vector(); tree->tag_ids = new std::unordered_map(); + tree->attribute_ids = new std::unordered_set(); std::string s; int ntags; @@ -296,6 +305,9 @@ xml_tree* xml_tree::load(int fd, char* name, bool load_tc, int sf) tree->tag_names->push_back(s); tree->tag_ids->insert(std::make_pair(s, static_cast(i))); + if (s.size() >= 3 && s[0] == '<' && s[1] == '@' && s[2] == '>'){ + tree->attribute_ids->insert(static_cast(i)); + }; };