2008-05-14 11:57:45 +04:00
|
|
|
/*
|
|
|
|
* Util.h
|
|
|
|
* met - Minimum Error Training
|
|
|
|
*
|
|
|
|
* Created by Nicola Bertoldi on 13/05/08.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2008-05-20 18:15:30 +04:00
|
|
|
#include <stdexcept>
|
2008-05-14 11:57:45 +04:00
|
|
|
#include <limits>
|
2008-10-17 01:14:38 +04:00
|
|
|
|
2008-05-14 11:57:45 +04:00
|
|
|
#define US_NOSET (numeric_limits<unsigned short>::max())
|
|
|
|
|
2008-05-20 18:15:30 +04:00
|
|
|
#define MAX_LINE 1024
|
|
|
|
|
2008-05-14 11:57:45 +04:00
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
2008-10-17 01:14:38 +04:00
|
|
|
#include <cstring>
|
2008-05-14 11:57:45 +04:00
|
|
|
|
2008-05-27 20:50:52 +04:00
|
|
|
#include "Types.h"
|
2008-05-14 11:57:45 +04:00
|
|
|
#include "ScoreStats.h"
|
|
|
|
#include "FeatureStats.h"
|
|
|
|
|
|
|
|
class ScoreStats;
|
|
|
|
class FeatureStats;
|
|
|
|
|
|
|
|
#ifdef TRACE_ENABLE
|
|
|
|
#define TRACE_ERR(str) { std::cerr << str; }
|
|
|
|
#else
|
|
|
|
#define TRACE_ERR(str) { }
|
|
|
|
#endif
|
|
|
|
|
2011-11-13 16:13:44 +04:00
|
|
|
const char kDefaultDelimiterSymbol[] = " ";
|
2008-05-14 11:57:45 +04:00
|
|
|
|
2008-05-16 11:09:15 +04:00
|
|
|
int verboselevel();
|
|
|
|
int setverboselevel(int v);
|
|
|
|
|
2011-11-13 16:13:44 +04:00
|
|
|
/**
|
|
|
|
* Find the specified delimiter for the string 'str', and 'str' is assigned
|
|
|
|
* to a substring object that starts at the position of first occurrence of
|
|
|
|
* the delimiter in 'str'. 'substr' is copied from 'str' ranging from
|
|
|
|
* the start position of 'str' to the position of first occurrence of
|
|
|
|
* the delimiter.
|
|
|
|
*
|
|
|
|
* It returns the position of first occurrence in the queried string.
|
|
|
|
* If the content is not found, std::string::npos is returned.
|
|
|
|
*/
|
|
|
|
size_t getNextPound(std::string &str, std::string &substr,
|
|
|
|
const std::string &delimiter = kDefaultDelimiterSymbol);
|
|
|
|
|
2011-08-20 19:25:19 +04:00
|
|
|
void split(const std::string &s, char delim, std::vector<std::string> &elems);
|
2008-05-14 11:57:45 +04:00
|
|
|
|
2011-11-11 17:00:30 +04:00
|
|
|
void Tokenize(const char *str, const char delim, std::vector<std::string> *res);
|
|
|
|
|
2008-05-14 11:57:45 +04:00
|
|
|
template<typename T>
|
|
|
|
inline T Scan(const std::string &input)
|
|
|
|
{
|
2011-02-24 15:42:19 +03:00
|
|
|
std::stringstream stream(input);
|
|
|
|
T ret;
|
|
|
|
stream >> ret;
|
|
|
|
return ret;
|
2011-11-12 04:40:01 +04:00
|
|
|
}
|
2008-05-14 11:57:45 +04:00
|
|
|
|
2008-05-27 20:50:52 +04:00
|
|
|
template<typename T>
|
|
|
|
inline std::string stringify(T x)
|
|
|
|
{
|
2011-02-24 15:42:19 +03:00
|
|
|
std::ostringstream o;
|
|
|
|
if (!(o << x))
|
|
|
|
throw std::runtime_error("stringify(template<typename T>)");
|
|
|
|
return o.str();
|
2008-05-27 20:50:52 +04:00
|
|
|
}
|
|
|
|
|
2011-11-12 12:30:33 +04:00
|
|
|
inline ScoreStatsType ConvertCharToScoreStatsType(const char *str)
|
|
|
|
{
|
|
|
|
return std::atoi(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline ScoreStatsType ConvertStringToScoreStatsType(const std::string& str)
|
|
|
|
{
|
|
|
|
return ConvertCharToScoreStatsType(str.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
inline FeatureStatsType ConvertCharToFeatureStatsType(const char *str)
|
|
|
|
{
|
|
|
|
return static_cast<FeatureStatsType>(std::atof(str));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline FeatureStatsType ConvertStringToFeatureStatsType(const std::string &str)
|
|
|
|
{
|
|
|
|
return ConvertCharToFeatureStatsType(str.c_str());
|
|
|
|
}
|
|
|
|
|
2009-01-07 16:30:06 +03:00
|
|
|
// Utilities to measure decoding time
|
|
|
|
void ResetUserTime();
|
|
|
|
void PrintUserTime(const std::string &message);
|
|
|
|
double GetUserTime();
|
|
|
|
|
2011-11-12 02:59:50 +04:00
|
|
|
#endif // UTIL_H
|