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
|
// file : tests/b-info/driver.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <string>
#include <iostream>
#include <libbutl/b.hxx>
#include <libbutl/path.hxx>
#include <libbutl/utility.hxx> // operator<<(ostream,exception)
#undef NDEBUG
#include <cassert>
using namespace std;
using namespace butl;
// Usage: argv[0] [-b <path>] <project-dir>
//
// Print the build2 project information to stdout.
//
// -b <path> the build program to be used to retrieve the project information
//
int
main (int argc, char* argv[])
try
{
path b ("b");
dir_path project;
for (int i (1); i != argc; ++i)
{
string a (argv[i]);
if (a == "-b")
{
++i;
assert (i != argc);
b = path (argv[i]);
}
else
{
assert (project.empty ());
project = dir_path (move (a));
}
}
assert (!project.empty ());
cout.exceptions (ios::failbit | ios::badbit);
b_project_info pi (b_info (project,
true /* ext_mods */,
1 /* verb */,
{} /* cmd_callback */,
b,
{} /* search_fallback */,
{"--no-default-options"}));
cout << "project: " << pi.project << endl
<< "version: " << pi.version << endl
<< "summary: " << pi.summary << endl
<< "url: " << pi.url << endl
<< "src_root: " << pi.src_root.representation () << endl
<< "out_root: " << pi.out_root.representation () << endl
<< "amalgamation: " << pi.amalgamation.representation () << endl
<< "subprojects: ";
for (auto b (pi.subprojects.begin ()), i (b);
i != pi.subprojects.end ();
++i)
{
if (i != b)
cout << ' ';
cout << i->name << '@' << i->path.representation ();
}
cout << endl
<< "operations: ";
for (auto b (pi.operations.begin ()), i (b); i != pi.operations.end (); ++i)
{
if (i != b)
cout << ' ';
cout << *i;
}
cout << endl
<< "meta-operations: ";
for (auto b (pi.meta_operations.begin ()), i (b);
i != pi.meta_operations.end ();
++i)
{
if (i != b)
cout << ' ';
cout << *i;
}
cout << endl
<< "modules: ";
for (auto b (pi.modules.begin ()), i (b);
i != pi.modules.end ();
++i)
{
if (i != b)
cout << ' ';
cout << *i;
}
cout << endl;
return 0;
}
catch (const b_error& e)
{
if (!e.normal ())
cerr << e << endl;
return 1;
}
|