-
Notifications
You must be signed in to change notification settings - Fork 1
/
tail2.cc
106 lines (86 loc) · 1.86 KB
/
tail2.cc
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
// tail2.cc
// Reseni IJC-DU2, priklad A), 24.4.2018
// Autor: Jan Havlin, 1BIT, [email protected]
// Prelozeno: gcc 6.4.0
// Popis: C++ implementace POSIX prikazu tail
#include <iostream>
#include <fstream>
#include <string>
#include <queue>
int main(int argc, char **argv)
{
std::ios::sync_with_stdio(false);
long lines = 10;
std::ifstream file;
std::string par;
// tail soubor || tail -n 20 soubor
if (argc == 2 || argc == 4)
{
par = argv[1];
if ((argc == 4 && !par.compare("-n")))
lines = strtol(argv[2], NULL, 0);
else if (argc != 2)
{
fprintf(stderr, "Chyba: Pouziti: tail -n CISLO SOUBOR\n");
return 1;
}
file.open(argv[argc - 1]);
if (!file.is_open())
{
fprintf(stderr, "Chyba pri nacitani souboru\n");
return 1;
}
}
// tail -n 20 <soubor
else if (argc == 3)
{
par = argv[1];
if(!par.compare("-n"))
lines = strtol(argv[2], NULL, 0);
}
// tail <soubor
else if (argc != 1)
{
fprintf(stderr, "Chyba: Nespravne zadane argumenty\n");
return 1;
}
if (lines == 0)
return 0;
else if (lines < 0)
{
fprintf(stderr, "Chyba: Zadany pocet radku nesmi byt zaporny\n");
return 1;
}
int i = 0;
std::queue<std::string> buffer;
std::string line;
do
{
// Cteni ze souboru
if (file.is_open())
{
std::getline(file, line);
}
// Nebo ze stdin
else
{
std::getline(std::cin, line);
}
// Ve stringu je na poslednim radku pouze EOF, tento radek uz nebudeme pushovat
if ((std::cin.eof() || file.eof()) && line.length() == 0)
break;
buffer.push(line);
// Smazeme nejstarsi string ve fronte, pokud jich je vic nez se ma vypsat radku
if (buffer.size() > lines)
buffer.pop();
if ((std::cin.eof() || file.eof()) && line.length() > 0)
break;
}
while(42);
while (buffer.size() > 0)
{
std::cout << buffer.front() << '\n';
buffer.pop();
}
return 0;
}