70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
#include <xcdat.hpp>
|
|
|
|
#include "cmd_line_parser/parser.hpp"
|
|
#include "mm_file/mm_file.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", "Trie type: [7|8] (default=7)", "-t", false);
|
|
return p;
|
|
}
|
|
|
|
template <class Trie>
|
|
int prefix_search(const cmd_line_parser::parser& p) {
|
|
const auto input_idx = p.get<std::string>("input_idx");
|
|
|
|
const mm::file_source<char> fin(input_idx.c_str(), mm::advice::sequential);
|
|
const auto trie = xcdat::mmap<Trie>(fin.data());
|
|
|
|
struct result_type {
|
|
std::uint64_t id;
|
|
std::string_view str;
|
|
};
|
|
|
|
std::vector<result_type> results;
|
|
results.reserve(trie.max_length());
|
|
|
|
for (std::string str; std::getline(std::cin, str);) {
|
|
results.clear();
|
|
|
|
auto itr = trie.make_prefix_iterator(str);
|
|
while (itr.next()) {
|
|
results.push_back({itr.id(), itr.decoded_view()});
|
|
}
|
|
|
|
tfm::printfln("%d found", results.size());
|
|
for (const auto& r : results) {
|
|
tfm::printfln("%d\t%s", r.id, r.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<int>("trie_type", 7);
|
|
|
|
switch (trie_type) {
|
|
case 7:
|
|
return prefix_search<xcdat::trie_7_type>(p);
|
|
case 8:
|
|
return prefix_search<xcdat::trie_8_type>(p);
|
|
default:
|
|
break;
|
|
}
|
|
|
|
p.help();
|
|
return 1;
|
|
} |