blob: 017b05e1550c02c46e73564acff2103e178bfd37 (
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
|
// file : tests/manifest/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <cassert>
#include <iostream>
#include <butl/fdstream>
#include <bpkg/manifest>
#include <bpkg/manifest-parser>
#include <bpkg/manifest-serializer>
using namespace std;
using namespace butl;
using namespace bpkg;
int
main (int argc, char* argv[])
{
if (argc != 2)
{
cerr << "usage: " << argv[0] << " <file>" << endl;
return 1;
}
try
{
ifdstream ifs (argv[1]);
manifest_parser p (ifs, argv[1]);
#ifdef TEST_PACKAGES
package_manifests ms (p);
#elif TEST_REPOSITORIES
repository_manifests ms (p);
#else
signature_manifest ms (p);
#endif
stdout_fdmode (fdstream_mode::binary); // Write in binary mode.
manifest_serializer s (cout, "stdout");
ms.serialize (s);
}
catch (const exception& e)
{
cerr << e.what () << endl;
return 1;
}
}
|