blob: 3a5ffa31ba92b0caeb08111a89a750f516b756db (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// file : tests/tab-parser/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <cassert>
#ifndef __cpp_lib_modules_ts
#include <string>
#include <iostream>
#endif
// Other includes.
#ifdef __cpp_modules_ts
#ifdef __cpp_lib_modules_ts
import std.core;
import std.io;
#endif
import butl.utility; // operator<<(ostream,exception)
import butl.tab_parser;
#else
#include <libbutl/utility.mxx>
#include <libbutl/tab-parser.mxx>
#endif
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;
}
|