blob: 99c19d9d5c873b9db4b3b796c7f4f3b03abcf065 (
plain)
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
|
// file : tests/tab-parser/driver.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <string>
#include <iostream>
#include <libbutl/utility.hxx> // operator<<(ostream,exception)
#include <libbutl/tab-parser.hxx>
#undef NDEBUG
#include <cassert>
using namespace std;
using namespace butl;
// Usage: argv[0] [-l]
//
// Read and parse tab-file from STDIN and print fields to STDOUT.
//
// -l output each field on a separate line
//
int
main (int argc, char* argv[])
try
{
assert (argc <= 2);
bool fpl (false); // Print field per line.
if (argc == 2)
{
assert (argv[1] == string ("-l"));
fpl = true;
}
cin.exceptions (ios::failbit | ios::badbit);
cout.exceptions (ios::failbit | ios::badbit);
tab_fields tl;
tab_parser parser (cin, "cin");
while (!(tl = parser.next ()).empty ())
{
if (!fpl)
{
for (auto b (tl.cbegin ()), i (b), e (tl.cend ()); i != e; ++i)
{
if (i != b)
cout << ' ';
cout << i->value;
}
cout << '\n';
}
else
{
for (const auto& tf: tl)
cout << tf.value << '\n';
}
}
return 0;
}
catch (const tab_parsing& e)
{
cerr << e << endl;
return 1;
}
|