|
#ifndef LM_COMMON_JOINT_ORDER_H |
|
#define LM_COMMON_JOINT_ORDER_H |
|
|
|
#include "ngram_stream.hh" |
|
#include "../lm_exception.hh" |
|
|
|
#ifdef DEBUG |
|
#include "../../util/fixed_array.hh" |
|
#include <iostream> |
|
#endif |
|
|
|
#include <cstring> |
|
|
|
namespace lm { |
|
|
|
template <class Callback, class Compare> void JointOrder(const util::stream::ChainPositions &positions, Callback &callback) { |
|
|
|
util::FixedArray<ProxyStream<NGramHeader> > streams_with_dummy(positions.size() + 1); |
|
|
|
streams_with_dummy.push_back(); |
|
for (std::size_t i = 0; i < positions.size(); ++i) { |
|
streams_with_dummy.push_back(positions[i], NGramHeader(NULL, i + 1)); |
|
} |
|
ProxyStream<NGramHeader> *streams = streams_with_dummy.begin() + 1; |
|
|
|
std::size_t order; |
|
for (order = 0; order < positions.size() && streams[order]; ++order) {} |
|
assert(order); |
|
|
|
|
|
#ifdef DEBUG |
|
util::FixedArray<Compare> less_compare(order); |
|
for (unsigned i = 0; i < order; ++i) |
|
less_compare.push_back(i + 1); |
|
#endif |
|
|
|
std::size_t current = 0; |
|
while (true) { |
|
|
|
if (!memcmp(streams[static_cast<int>(current) - 1]->begin(), streams[current]->begin() + Compare::kMatchOffset, sizeof(WordIndex) * current)) { |
|
callback.Enter(current, streams[current].Get()); |
|
|
|
if (++current < order) continue; |
|
} |
|
#ifdef DEBUG |
|
|
|
|
|
else if (!less_compare[current - 1](streams[static_cast<int>(current) - 1]->begin(), streams[current]->begin() + Compare::kMatchOffset)) { |
|
std::cerr << "Stream out of order detected" << std::endl; |
|
abort(); |
|
} |
|
#endif |
|
|
|
while(true) { |
|
assert(current > 0); |
|
--current; |
|
callback.Exit(current, streams[current].Get()); |
|
|
|
if (++streams[current]) break; |
|
|
|
UTIL_THROW_IF(order != current + 1, FormatLoadException, "Detected n-gram without matching suffix"); |
|
|
|
order = current; |
|
if (!order) return; |
|
} |
|
} |
|
} |
|
|
|
} |
|
|
|
#endif |
|
|