-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx_table.hpp
288 lines (238 loc) · 8.43 KB
/
x_table.hpp
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
//C++
//////////////////////////////////////////////////////////////////////////////
// //
// Filename : ASCII_Table.hpp //
// Created by : Daher Alfawares //
// Created Date : 06/20/2009 //
// License : Apache License 2.0 //
// //
// Copyright 2009 Daher Alfawares //
// //
// Licensed under the Apache License, Version 2.0 (the "License"); //
// you may not use this file except in compliance with the License. //
// You may obtain a copy of the License at //
// //
// http://www.apache.org/licenses/LICENSE-2.0 //
// //
// Unless required by applicable law or agreed to in writing, software //
// distributed under the License is distributed on an "AS IS" BASIS, //
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //
// See the License for the specific language governing permissions and //
// limitations under the License. //
// //
//////////////////////////////////////////////////////////////////////////////
/*
ASCII Table is a C++ class that allows you to format your data in an ASCII dynamic table structure.
Example:
x::table myTable("Table Title");
myTable ("header 1")("header 2")++;
myTable ("value 11")("value 12")++;
myTable ("value 21")("value 22")++;
std::cout << myTable;
Output:
+---------------------+
|Table Title |
+----------+----------+
| header 1 | header 2 |
+----------+----------+
| value 11 | value 12 |
| value 21 | value 22 |
+----------+----------+
*/
#ifndef _DA_ASCII_Table__0a61eabe_d038_4d30_a6fb_e202b2dfd6a9
#define _DA_ASCII_Table__0a61eabe_d038_4d30_a6fb_e202b2dfd6a9
#include <iostream>
#include <vector>
#include <string>
#include <iomanip>
#include <numeric>
#include <sstream>
namespace x {
inline std::string operator + (const char* a, const std::string& b);
inline std::string itoa(const int& i);
inline int atoi(const std::string& s);
template <typename _To, typename _From>
class lexical_cast;
struct scoped_mute_s;
std::size_t length(std::string _String);
std::string fill(std::string _Str, std::size_t _Size);
class endl {};
class table {
public:
std::string title;
size_t column;
std::vector<std::string> columns;
std::vector<std::size_t> column_widths;
std::string comment;
std::string Prefix;
table(std::string t) : title(t), column(0) {}
std::vector<std::vector<std::string>> rows;
table& operator<<(std::string t) {
return (*this)(t);
}
table& operator<<(int t) {
std::stringstream fstr;
fstr << t;
return (*this) << fstr.str();
}
table& operator()(std::string t) {
if (column >= columns.size()) {
columns.push_back("");
column_widths.push_back(0);
}
columns[column] = t;
if (column_widths[column] < length(t)) column_widths[column] = length(t);
++column;
return *this;
}
table& operator()(int i) {
return (*this)(itoa(i));
}
void operator++(int) {
column = 0;
rows.push_back(columns);
}
std::string prefix() { return Prefix; }
void prefix(std::string _P) { Prefix = _P; }
std::string endl() { return "\r\n" + prefix() + " "; }
};
inline std::ostream& operator<<(std::ostream& _Str, table& T) {
// Calculate total width of the table
int width = std::accumulate(T.column_widths.begin(), T.column_widths.end(), 0);
width += 3 * (T.columns.size() - 1) + 4; // Adding space for separators and borders
_Str << std::setiosflags(std::ios::left);
_Str << T.endl();
// top border
_Str << '+';
for (int b = 0; b < width - 2; b++)
_Str << '-';
_Str << '+'
<< T.endl();
// title
_Str << "|"
<< std::setw(width - 2)
<< std::setfill(' ')
<< T.title
<< "|"
<< T.endl();
// middle border
for (size_t i = 0; i < T.columns.size(); i++) {
_Str << "+-"
<< std::setw(static_cast<int>(T.column_widths[i]))
<< std::setfill('-')
<< ""
<< std::setfill(' ')
<< "-";
}
_Str << "+"
<< T.endl();
// rest of the table
if (!T.rows.empty() || !T.rows[0].empty()) {
size_t i = 0, j = 0;
// first row as header.
for (i = 0; i < T.columns.size(); i++)
_Str << "| "
<< fill(T.rows[j][i], T.column_widths[i])
<< " ";
_Str << "|"
<< T.endl();
// middle border
for (size_t i = 0; i < T.columns.size(); i++)
_Str << "+-"
<< std::setw(static_cast<int>(T.column_widths[i]))
<< std::setfill('-')
<< ""
<< std::setfill(' ')
<< "-";
_Str << "+"
<< T.endl();
// comment if available.
if (!T.comment.empty())
_Str << "|"
<< std::setw(width - 1)
<< T.comment
<< "|"
<< T.endl();
// full table.
for (size_t j = 1; j < T.rows.size(); j++) {
for (size_t i = 0; i < T.columns.size(); i++)
_Str << "| "
<< fill(T.rows[j][i], T.column_widths[i])
<< " ";
_Str << "|"
<< T.endl();
}
}
// bottom border.
for (size_t i = 0; i < T.columns.size(); i++)
_Str << "+-"
<< std::setw(static_cast<int>(T.column_widths[i]))
<< std::setfill('-')
<< ""
<< std::setfill(' ')
<< "-";
_Str << "+"
<< std::resetiosflags(std::ios::left)
<< std::endl;
return _Str;
}
inline std::string operator+(const char* a, const std::string& b) {
std::string c;
c += a;
c += b;
return c;
}
inline std::string itoa(const int& i) {
std::stringstream Str;
Str << i;
return Str.str();
}
inline int atoi(const std::string& s) {
int i;
std::istringstream Str(s);
Str >> i;
return i;
}
template <typename _To, typename _From>
class lexical_cast {
_From* from;
public:
lexical_cast<_To, _From>(_From From) {
this->from = &From;
}
operator _To() {
throw("Bad lexical cast: ");
}
};
std::size_t length(std::string _String) {
std::size_t length = 0;
bool inEscapeCode = false;
for (auto Char : _String) {
if (inEscapeCode) {
if (Char == 'm') {
inEscapeCode = false;
}
} else {
if (Char == '\033') {
inEscapeCode = true;
} else {
length += 1;
}
}
}
return length;
}
std::string fill(std::string _Str, std::size_t _Size) {
if (length(_Str) < _Size) {
std::size_t Difference = _Size - length(_Str);
std::stringstream _Out;
_Out << _Str;
for (int i = 0; i < Difference; i++) {
_Out << " ";
}
return _Out.str();
}
return _Str;
}
} /* ascii */
#endif