2021-06-27 17:54:58 +00:00
|
|
|
#include <xcdat.hpp>
|
|
|
|
|
|
|
|
#include "cmd_line_parser/parser.hpp"
|
2021-07-03 00:46:04 +00:00
|
|
|
#include "mm_file/mm_file.hpp"
|
2021-06-27 17:54:58 +00:00
|
|
|
#include "tinyformat/tinyformat.h"
|
|
|
|
|
|
|
|
cmd_line_parser::parser make_parser(int argc, char** argv) {
|
|
|
|
cmd_line_parser::parser p(argc, argv);
|
2021-07-02 12:50:10 +00:00
|
|
|
p.add("input_dic", "Input filepath of trie dictionary");
|
2021-06-27 17:54:58 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class Trie>
|
|
|
|
int lookup(const cmd_line_parser::parser& p) {
|
2021-07-02 12:50:10 +00:00
|
|
|
const auto input_dic = p.get<std::string>("input_dic");
|
2021-06-29 01:45:02 +00:00
|
|
|
|
2021-07-02 12:50:10 +00:00
|
|
|
const mm::file_source<char> fin(input_dic.c_str(), mm::advice::sequential);
|
2021-06-29 01:45:02 +00:00
|
|
|
const auto trie = xcdat::mmap<Trie>(fin.data());
|
2021-06-27 17:54:58 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-07-02 12:50:10 +00:00
|
|
|
const auto input_dic = p.get<std::string>("input_dic");
|
2021-07-08 13:47:59 +00:00
|
|
|
const auto type_id = xcdat::get_type_id(input_dic);
|
2021-06-27 17:54:58 +00:00
|
|
|
|
2021-07-08 13:47:59 +00:00
|
|
|
switch (type_id) {
|
2021-06-27 17:54:58 +00:00
|
|
|
case 7:
|
|
|
|
return lookup<xcdat::trie_7_type>(p);
|
|
|
|
case 8:
|
|
|
|
return lookup<xcdat::trie_8_type>(p);
|
2021-07-03 00:46:04 +00:00
|
|
|
case 15:
|
|
|
|
return lookup<xcdat::trie_15_type>(p);
|
|
|
|
case 16:
|
|
|
|
return lookup<xcdat::trie_16_type>(p);
|
2021-06-27 17:54:58 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.help();
|
|
|
|
return 1;
|
|
|
|
}
|