blob: 9eb36a00ba7016655221f4877b632922463545e9 (
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
|
// file : tests/test/script/runner/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <limits> // numeric_limits
#include <string>
#include <cassert>
#include <ostream> // endl, *bit
#include <istream> // istream::traits_type::eof()
#include <iostream>
#include <exception>
using namespace std;
int
main (int argc, char* argv[])
{
// Usage: driver [-i <int>] [-s <int>] (-o <string>)* (-e <string>)*
//
int status (256);
int ifd (3);
cout.exceptions (ostream::failbit | ostream::badbit);
cerr.exceptions (ostream::failbit | ostream::badbit);
for (int i (1); i < argc; ++i)
{
string o (argv[i++]);
assert (i < argc);
string v (argv[i]);
auto toi = [] (const string& s) -> int
{
try
{
return stoi (s);
}
catch (const exception&)
{
assert (false);
}
};
if (o == "-i")
{
assert (ifd == 3); // Make sure is not set yet.
ifd = toi (v);
assert (ifd >= 0 && ifd < 3);
if (ifd == 0)
cin.ignore (numeric_limits<streamsize>::max ());
else if (cin.peek () != istream::traits_type::eof ())
(ifd == 1 ? cout : cerr) << cin.rdbuf ();
}
else if (o == "-o")
{
cout << v << endl;
}
else if (o == "-e")
{
cerr << v << endl;
}
else if (o == "-s")
{
assert (status == 256); // Make sure is not set yet.
status = toi (v);
assert (status >= 0 && status < 256);
}
else
assert (false);
}
return status == 256 ? 0 : status;
}
|