-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUtility.h
136 lines (112 loc) · 2.88 KB
/
Utility.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#ifndef __FILEHANDLER__
#define __FILEHANDLER__
#include <vector>
#include <fstream>
#include <iostream>
#include <algorithm>
#include <ctime>
using namespace std;
template <typename T>
vector< vector<T> > read( const char *filename ) {
ifstream inp(filename);
string line;
vector< vector<T> > ret;
int i = 0;
while( getline(inp,line) ) {
istringstream sin(line);
vector<T> row;
T value;
while( sin >> value ) {
row.push_back(value);
}
ret.push_back(row);
}
inp.close();
return ret;
}
vector< string > readSymbols( const char *filename ) {
vector< string > ret;
ifstream inp(filename);
string tok;
while( inp >> tok ) {
ret.push_back(tok);
}
return ret;
}
template <typename T>
double getMedian( vector<T> seq ) {
sort( seq.begin(), seq.end() );
const size_t size = seq.size();
if( size % 2 == 1 ) {
return seq[size/2];
}
else {
return 0.5 * ( seq[size/2-1] + seq[size/2] );
}
}
vector<string> tokenization( const string &s ) {
istringstream sin( s );
vector<string> ret;
string tok;
while( sin >> tok ) ret.push_back( tok );
return ret;
}
// Get current date/time, format is YYYY-MM-DD.HH:mm:ss
// source : http://stackoverflow.com/questions/997946/how-to-get-current-time-and-date-in-c
const std::string currentDateTime() {
time_t now = time(0);
struct tm tstruct;
char buf[80];
tstruct = *localtime(&now);
// Visit http://en.cppreference.com/w/cpp/chrono/c/strftime
// for more information about date/time format
strftime(buf, sizeof(buf), "%Y-%m-%d.%X", &tstruct);
return buf;
}
void errorMsg( const string &msg ) {
cerr << "Error: " << msg << endl;
exit(1);
}
string join( const vector<string> &vec, const string &delim ) {
string ret;
ret += vec.front();
for( size_t i = 1 ; i < vec.size() ; ++i ) {
ret += delim;
ret += vec[i];
}
return ret;
}
// source : http://stackoverflow.com/questions/8520560/get-a-file-name-from-a-path
string base_name(std::string const & path)
{
return path.substr(path.find_last_of("/\\") + 1);
}
void showProgress( const long long numIteration, const long long totalIteration,
const bool reset = false ) {
static int percentage = -1;
static string content;
if( reset ) {
percentage = -1;
content = "";
return;
}
int newPercentage = numIteration * 100 / totalIteration;
if( newPercentage > percentage ) {
percentage = newPercentage;
for( int i = 0 ; i < content.size() ; ++i ) {
cerr << "\b";
}
char buf[20];
sprintf(buf,"[%3d%%] ", newPercentage);
content = buf;
const int len = percentage / 10;
for( int i = 0 ; i < len ; ++i ) {
content += "*";
}
for( int i = len ; i < 10 ; ++i ) {
content += ".";
}
cerr << content;
}
}
#endif