-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.cpp
61 lines (52 loc) · 1.35 KB
/
util.cpp
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
//
// Created by tate on 02-05-20.
//
#include "util.hpp"
namespace util {
const char* term_eff_bold = "\x1B[1m";
const char* term_eff_red = "\x1B[31m";
const char* term_eff_reset = "\x1B[0m";
std::pair<long, long> pos_to_line_offset(std::istream& file, const unsigned long long pos) {
std::string line;
long i = 0;
for (long line_num = 1; std::getline(file, line); line_num++)
if (i + line.length() > pos)
return std::pair<long, long>{ line_num, pos - i };
else
i += line.length();
return { -1L , -1L };
}
std::string show_line_pos(std::istream &file, unsigned long long pos, const std::string fname) {
// rewind
file.clear();
file.seekg(0);
std::string line;
std::string ret;
unsigned long long i = 0;
std::size_t line_num = 1;
for (; std::getline(file, line); line_num++) {
if (i + line.length() > pos) {
unsigned short line_pos = pos - i;
// ret.reserve(6 + fname.size() + line.size() + line_pos);
ret += term_eff_bold;
ret += fname;
ret += ':';
ret += std::to_string(line_num);
ret += ':';
ret += std::to_string(line_pos);
ret += term_eff_reset;
ret += '\n';
ret += line + '\n';
for (; line_pos > 0; line_pos--)
ret += ' ';
ret += term_eff_red;
ret += "^\n";
ret += term_eff_reset;
return ret;
} else {
i += line.length();
}
}
return ret;
}
}