-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmte.cc
More file actions
420 lines (391 loc) · 9.19 KB
/
Copy pathmte.cc
File metadata and controls
420 lines (391 loc) · 9.19 KB
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
#include <cctype>
#include <cstdlib>
#include <iostream>
#include <fstream>
#include <list>
#include <curses.h>
#define KEY_CTRL(ch) (ch ^ 0x40)
namespace {
typedef std::list<std::string> Lines;
int
getHeight()
{
int height, width;
getmaxyx(stdscr, height, width);
return height - 2;
}
int
getWidth()
{
int height, width;
getmaxyx(stdscr, height, width);
return width;
}
void
scrollUp()
{
scrollok(stdscr, true);
scrl(1);
scrollok(stdscr, false);
}
void
scrollDown()
{
scrollok(stdscr, true);
scrl(-1);
scrollok(stdscr, false);
}
void
showlines(Lines::iterator start, Lines::iterator end)
{
int height, width;
auto it = start;
getmaxyx(stdscr, height, width);
erase();
for (int i = 0; i < (height - 2) && it != end; ++i, ++it) {
mvwprintw(stdscr, i, 0, "%-*s", width, it->c_str());
}
}
Lines::iterator
find(std::string str, Lines::iterator start, Lines::iterator end,
int &x, int &y)
{
int nx = x + 1;
int ny = y;
for (auto line = start; line != end; ++line, ++ny) {
if ((nx = line->find(str, nx)) != std::string::npos) {
x = nx;
y = ny;
return line;
}
nx = 0;
}
return end;
}
Lines::reverse_iterator
rfind(std::string str, Lines::reverse_iterator start,
Lines::reverse_iterator end, int &x, int &y)
{
std::string::size_type nx;
int ny = y;
auto line = start;
if (x == 0) {
nx = std::string::npos;
++line;
--ny;
} else {
nx = x - 1;
}
for ( ; line != end; ++line, --ny) {
if ((nx = line->rfind(str, nx)) != std::string::npos) {
x = nx;
y = ny;
return line;
}
nx = std::string::npos;
}
return end;
}
std::string
getCommand()
{
static std::string command;
static size_t cursor = 0;
while (true) {
mvprintw(getHeight() + 1, 0, "%-*s", getWidth(), command.c_str());
move(getHeight() + 1, cursor);
refresh();
int ch = getch();
if (std::isprint(ch)) {
command.insert(cursor++, 1, ch);
} else if (ch == KEY_CTRL('A')) {
cursor = 0;
} else if (ch == KEY_CTRL('E')) {
cursor = command.size();
} else if (ch == KEY_CTRL('K')) {
command.erase(cursor);
} else if (ch == KEY_RIGHT) {
if (cursor != command.size()) {
++cursor;
}
} else if (ch == KEY_LEFT) {
if (cursor != 0) {
--cursor;
}
} else if (ch == KEY_BACKSPACE || ch == KEY_CTRL('?')) {
if (cursor != 0) {
command.erase(--cursor, 1);
}
} else if (ch == KEY_CTRL('J')) {
cursor = 0;
return command;
} else {
return "";
}
}
return command;
}
void
cleanup()
{
delwin(stdscr);
endwin();
}
} // namespace
int
main(int argc, char *argv[])
{
if (argc != 2) {
std::cerr << "Usage: " << argv[0] << " <filename>" << std::endl;
exit(EXIT_FAILURE);
}
std::ifstream fin(argv[1]);
if (!fin.is_open()) {
perror("Can't open input file");
exit(EXIT_FAILURE);
}
int ch = 0;
size_t yFrame = 0;
int yCursor = 0;
int xCursor = 0;
Lines lines;
std::string line;
bool addNL = true;
while (getline(fin, line)) {
lines.emplace_back(std::move(line));
if (fin.eof()) {
addNL = false;
}
}
if (addNL) {
lines.emplace_back();
}
initscr();
atexit(cleanup);
keypad(stdscr, true);
noecho();
std::string clipboard;
auto it = lines.begin();
auto cursorIt = it;
bool redraw = true;
bool redrawLine = false;
do {
std::string notification;
if (ch == KEY_CTRL('I')) {
std::string command = getCommand();
if (command.size() == 0) {
;
} else if (command[0] == '/') {
auto result = find(command.substr(1), cursorIt, lines.end(),
xCursor, yCursor);
if (result != lines.end()) {
cursorIt = result;
while (yCursor >= getHeight()) {
--yCursor;
++yFrame;
++it;
}
redraw = true;
} else {
notification = "Not found!";
}
} else if (command[0] == '?') {
auto result = rfind(command.substr(1),
--Lines::reverse_iterator(cursorIt),
lines.rend(), xCursor, yCursor);
if (result != lines.rend()) {
cursorIt = --result.base();
while (yCursor < 0) {
++yCursor;
--yFrame;
--it;
}
redraw = true;
} else {
notification = "Not found!";
}
} else if (command[0] == ':') {
int lineno = std::atoi(&(command.c_str()[1]));
if (lineno < 1 || lineno > lines.size()) {
notification = "Invalid line number!";
} else {
it = cursorIt = lines.begin();
xCursor = yCursor = yFrame = 0;
while (yFrame < lineno) {
++yFrame;
++it;
}
cursorIt = it;
redraw = true;
}
} else if (command[0] == '^') {
it = cursorIt = lines.begin();
xCursor = yCursor = yFrame = 0;
redraw = true;
} else if (command[0] == '$') {
cursorIt = lines.end();
it = --cursorIt;
xCursor = cursorIt->size();
yCursor = 0;
yFrame = lines.size() - 1;
while (yCursor < getHeight() - 1 && it != lines.begin()) {
++yCursor;
--yFrame;
--it;
}
redraw = true;
} else {
notification = "Unknown command!";
}
}
if (ch == KEY_RIGHT) {
if (xCursor != cursorIt->size()) {
++xCursor;
} else {
auto next = cursorIt;
if (++next == lines.end())
continue;
xCursor = 0;
cursorIt = next;
++yCursor;
}
}
if (ch == KEY_LEFT) {
if (xCursor != 0) {
--xCursor;
} else {
if (cursorIt == lines.begin())
continue;
--cursorIt;
xCursor = cursorIt->size();
--yCursor;
}
}
if (ch == KEY_DOWN) {
auto next = cursorIt;
if (++next == lines.end())
continue;
cursorIt = next;
++yCursor;
}
if (ch == KEY_UP) {
if (cursorIt == lines.begin())
continue;
--cursorIt;
--yCursor;
}
if (ch == KEY_CTRL('A')) {
xCursor = 0;
}
if (ch == KEY_CTRL('E')) {
xCursor = getWidth();
}
if (ch == KEY_BACKSPACE || ch == KEY_CTRL('?')) {
if (xCursor > 0) {
cursorIt->erase(--xCursor, 1);
redrawLine = true;
} else if (cursorIt != lines.begin()){
auto prev = cursorIt--;
xCursor = cursorIt->size();
(*cursorIt) += *prev;
lines.erase(prev);
if (yCursor == 0) {
--yFrame;
it = cursorIt;
redrawLine = true;
} else {
--yCursor;
redraw = true;
}
}
}
if (ch == KEY_CTRL('K')) {
if (cursorIt->size() != xCursor) {
clipboard = cursorIt->substr(xCursor);
cursorIt->erase(xCursor);
} else {
auto next = cursorIt;
if (++next != lines.end()) {
(*cursorIt) += *next;
lines.erase(next);
}
}
redraw = true;
}
if (ch == KEY_CTRL('W')) {
if (cursorIt->size() != xCursor) {
clipboard = cursorIt->substr(xCursor);
}
}
if (ch == KEY_CTRL('J')) {
auto prev = cursorIt++;
size_t pos = prev->find_first_not_of(" \t");
cursorIt = lines.emplace(cursorIt,
prev->substr(0, pos) + prev->substr(xCursor));
prev->erase(xCursor);
xCursor = pos;
if (yCursor < getHeight() - 1) {
++yCursor;
} else {
++it;
++yFrame;
}
redraw = true;
}
if (ch == KEY_CTRL('X')) {
std::string tmpname{argv[1]};
tmpname += "~";
std::ofstream tmpfile(tmpname);
auto last = --lines.end();
for (auto line = lines.begin(); line != last; ++line) {
tmpfile << *line << std::endl;
}
if (last->size() > 0) {
tmpfile << *last;
}
tmpfile.close();
rename(tmpname.c_str(), argv[1]);
notification = "Saved.";
}
if (ch == KEY_CTRL('U')) {
cursorIt->insert(xCursor, clipboard);
redrawLine = true;
}
if (std::isprint(ch)) {
cursorIt->insert(xCursor++, 1, ch);
redrawLine = true;
}
if (xCursor > cursorIt->size()) {
xCursor = cursorIt->size();
}
if (yCursor == getHeight()) {
scrollUp();
--yCursor;
++yFrame;
++it;
redrawLine = true;
} else if (yCursor == -1) {
scrollDown();
++yCursor;
--yFrame;
--it;
redrawLine = true;
}
if (redrawLine) {
mvprintw(yCursor, 0, "%-*s", getWidth(), cursorIt->c_str());
} else if (redraw) {
showlines(it, lines.end());
}
redraw = redrawLine = false;
std::string status{argv[1]};
status += ":" + std::to_string(yFrame + yCursor + 1) + ":"
+ std::to_string(xCursor + 1) + ":";
attron(A_REVERSE);
mvprintw(getHeight(), 0, "%*s", getWidth(), status.c_str());
attroff(A_REVERSE);
mvprintw(getHeight() + 1, 0, "%-*s", getWidth(), notification.c_str());
move(yCursor, xCursor);
refresh();
} while ((ch = getch()) != KEY_CTRL('C'));
return 0;
}