| // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef ENCODINGS_COMPACT_LANG_DET_CLDUTIL_DBG_H_ |
| #define ENCODINGS_COMPACT_LANG_DET_CLDUTIL_DBG_H_ |
| |
| #include "encodings/compact_lang_det/cldutil.h" |
| #include <string> |
| #include "encodings/compact_lang_det/ext_lang_enc.h" |
| #include "encodings/compact_lang_det/tote.h" |
| #include "encodings/compact_lang_det/win/cld_basictypes.h" |
| #include "encodings/compact_lang_det/win/cld_commandlineflags.h" |
| |
| DECLARE_bool(dbgscore); |
| DECLARE_bool(dbglookup); |
| DECLARE_bool(dbgreli); |
| |
| using std::string; |
| |
| namespace cld { |
| |
| |
| //------------------------------------------------------------------------------ |
| // Debugging. Not thread safe |
| //------------------------------------------------------------------------------ |
| |
| void DbgScoreInit(const char* src, int len); |
| |
| // Return a 3-byte + NUL code for language |
| void DbgLangName3(Language lang, char* temp); |
| |
| // Show all per-language totals |
| void DbgScoreState(); |
| |
| void DbgScoreTop(const char* src, int srclen, Tote* chunk_tote); |
| |
| void DbgScoreFlush(); |
| |
| // Allow additional scoring debug output |
| void DbgScoreRecord(const char* src, uint32 probs, int len); |
| |
| void DbgScoreRecordUni(const char* src, int propval, int len); |
| |
| // Debug print language name(s) |
| void PrintLang(FILE* f, const Tote* chunk_tote, |
| const Language cur_lang, const bool cur_unreliable, |
| Language prior_lang, bool prior_unreliable); |
| |
| // Debug print language name(s) |
| void PrintLang2(FILE* f, |
| const Language lang1, const Language lang2, bool diff_prior); |
| |
| // Debug print text span |
| void PrintText(FILE* f, Language cur_lang, const string& str); |
| |
| // Debug print text span with speculative language |
| void PrintTextSpeculative(FILE* f, Language cur_lang, const string& str); |
| |
| // Debug print ignored text span |
| void PrintSkippedText(FILE* f, const string& str); |
| |
| void DbgProbsToStderr(uint32 probs); |
| void DbgUniTermToStderr(int propval, const uint8* usrc, int len); |
| // No pre/post space |
| void DbgBiTermToStderr(uint32 bihash, uint32 probs, |
| const char* src, int len); |
| void DbgQuadTermToStderr(uint32 quadhash, uint32 probs, |
| const char* src, int len); |
| void DbgWordTermToStderr(uint64 wordhash, uint32 probs, |
| const char* src, int len); |
| |
| } // End namespace cld |
| |
| |
| #endif // ENCODINGS_COMPACT_LANG_DET_CLDUTIL_DBG_H_ |