X-Git-Url: http://git.tdb.fi/?p=libs%2Fdatafile.git;a=blobdiff_plain;f=source%2Floader.cpp;fp=source%2Floader.cpp;h=2c0fbd12275ffdf4e54715a4ca05fc9524ce430d;hp=bffa9fd31c6ccf5018535139aa119f859d3c36b0;hb=2d289d20a9a4aeac7774976e4213a7c72f1dc75b;hpb=d248c63a252b0efcbcd9ef11cf7f8e22e594403e diff --git a/source/loader.cpp b/source/loader.cpp index bffa9fd..2c0fbd1 100644 --- a/source/loader.cpp +++ b/source/loader.cpp @@ -113,7 +113,7 @@ void Loader::load_statement(const Statement &st) try { - ActionKey key(st.keyword, st.get_signature()); + StatementKey key(st.keyword, st.get_signature()); if(!aux_loaders.empty() && !has_action(key)) { @@ -152,7 +152,7 @@ void Loader::load_sub_with(Loader &ldr) void Loader::add(const string &kwd, LoaderAction *act) { - ActionKey key(kwd, (act ? act->get_signature() : "*")); + StatementKey key(kwd, (act ? act->get_signature() : "*")); ActionMap::iterator i = actions.find(key); if(i!=actions.end()) { @@ -168,19 +168,19 @@ void Loader::add_auxiliary_loader(Loader &ldr) aux_loaders.push_back(&ldr); } -bool Loader::has_action(const ActionKey &key) const +bool Loader::has_action(const StatementKey &key) const { - ActionMap::const_iterator i = actions.lower_bound(ActionKey(key.keyword, string())); + ActionMap::const_iterator i = actions.lower_bound(StatementKey(key.keyword, string())); for(; (i!=actions.end() && i->first.keyword==key.keyword); ++i) if(signature_match(key.signature, i->first.signature)) return true; return false; } -LoaderAction *Loader::find_action(const ActionKey &key) const +LoaderAction *Loader::find_action(const StatementKey &key) const { - ActionMap::const_iterator begin = actions.lower_bound(ActionKey(key.keyword, string())); - ActionMap::const_iterator end = actions.upper_bound(ActionKey(key.keyword, "~")); + ActionMap::const_iterator begin = actions.lower_bound(StatementKey(key.keyword, string())); + ActionMap::const_iterator end = actions.upper_bound(StatementKey(key.keyword, "~")); if(begin==end) throw unknown_keyword(key.keyword); @@ -199,18 +199,5 @@ const string &Loader::get_source() const return cur_st->source; } - -Loader::ActionKey::ActionKey(const string &k, const string &s): - keyword(k), - signature(s) -{ } - -bool Loader::ActionKey::operator<(const ActionKey &other) const -{ - if(keyword!=other.keyword) - return keyword