#include #include "cmd_line_parser/parser.hpp" #include "tinyformat/tinyformat.h" cmd_line_parser::parser make_parser(int argc, char** argv) { cmd_line_parser::parser p(argc, argv); p.add("input_idx", "Input filepath of trie index"); p.add("trie_type", "Type of trie impl. from [7|8], (default=7)", "-t", false); return p; } template int lookup(const cmd_line_parser::parser& p) { const auto input_idx = p.get("input_idx"); const auto trie = Trie::load(input_idx); for (std::string str; std::getline(std::cin, str);) { const auto id = trie.lookup(str); if (id.has_value()) { tfm::printfln("%d\t%s", id.value(), str); } else { tfm::printfln("-1\t%s", str); } } return 0; } int main(int argc, char** argv) { #ifndef NDEBUG tfm::warnfln("The code is running in debug mode."); #endif std::ios::sync_with_stdio(false); auto p = make_parser(argc, argv); if (!p.parse()) { return 1; } const auto trie_type = p.get("trie_type", 7); switch (trie_type) { case 7: return lookup(p); case 8: return lookup(p); default: break; } p.help(); return 1; }