mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-29 06:52:34 +03:00
109 lines
1.9 KiB
C++
109 lines
1.9 KiB
C++
/*
|
|
* Util.cpp
|
|
* met - Minimum Error Training
|
|
*
|
|
* Created by Nicola Bertoldi on 13/05/08.
|
|
*
|
|
*/
|
|
|
|
#include <stdexcept>
|
|
#include "Util.h"
|
|
|
|
#include "Timer.h"
|
|
|
|
using namespace std;
|
|
|
|
// global variables
|
|
Timer g_timer;
|
|
|
|
int verbose=0;
|
|
|
|
namespace {
|
|
|
|
bool FindDelimiter(const std::string &str, const std::string &delim, size_t *pos)
|
|
{
|
|
*pos = str.find(delim);
|
|
return *pos != std::string::npos ? true : false;
|
|
}
|
|
} // namespace
|
|
|
|
int verboselevel()
|
|
{
|
|
return verbose;
|
|
}
|
|
|
|
int setverboselevel(int v)
|
|
{
|
|
verbose=v;
|
|
return verbose;
|
|
}
|
|
|
|
size_t getNextPound(std::string &theString, std::string &substring, const std::string delimiter)
|
|
{
|
|
size_t pos = 0;
|
|
|
|
// skip all occurrences of delimiter
|
|
while (pos == 0) {
|
|
// if ((pos = theString.find(delimiter)) != std::string::npos) {
|
|
if (FindDelimiter(theString, delimiter, &pos)) {
|
|
substring.assign(theString, 0, pos);
|
|
theString.erase(0, pos + delimiter.size());
|
|
} else {
|
|
substring.assign(theString);
|
|
theString.assign("");
|
|
}
|
|
}
|
|
return pos;
|
|
}
|
|
|
|
void split(const std::string &s, char delim, std::vector<std::string> &elems) {
|
|
std::stringstream ss(s);
|
|
std::string item;
|
|
while(std::getline(ss, item, delim)) {
|
|
elems.push_back(item);
|
|
}
|
|
}
|
|
|
|
void Tokenize(const char *str, const char delim,
|
|
std::vector<std::string> *res) {
|
|
while (1) {
|
|
const char *begin = str;
|
|
while (*str != delim && *str) str++;
|
|
res->push_back(std::string(begin, str));
|
|
if (*str++ == 0) break;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
int swapbytes(char *p, int sz, int n)
|
|
{
|
|
char c, *l, *h;
|
|
|
|
if((n<1) || (sz<2)) return 0;
|
|
for (; n--; p+=sz) {
|
|
for(h=(l=p)+sz; --h>l; l++) {
|
|
c=*h;
|
|
*h=*l;
|
|
*l=c;
|
|
}
|
|
}
|
|
return 0;
|
|
|
|
}
|
|
|
|
void ResetUserTime()
|
|
{
|
|
g_timer.start();
|
|
}
|
|
|
|
void PrintUserTime(const std::string &message)
|
|
{
|
|
g_timer.check(message.c_str());
|
|
}
|
|
|
|
double GetUserTime()
|
|
{
|
|
return g_timer.get_elapsed_time();
|
|
}
|