blob: f8a95bded75c680feb1b7fa413b87771caa85c29 (
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
|
// file : tests/manifest-roundtrip/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <fstream>
#include <iostream>
#include <bpkg/manifest-parser>
#include <bpkg/manifest-serializer>
using namespace std;
using namespace bpkg;
int
main (int argc, char* argv[])
{
if (argc != 2)
{
cerr << "usage: " << argv[0] << " <file>" << endl;
return 1;
}
try
{
ifstream ifs;
ifs.exceptions (ifstream::badbit | ifstream::failbit);
ifs.open (argv[1], ifstream::in | ifstream::binary);
manifest_parser p (ifs, argv[1]);
manifest_serializer s (cout, "stdout");
for (bool eom (true), eos (false); !eos; )
{
manifest_name_value nv (p.next ());
if (nv.empty ()) // End pair.
{
eos = eom;
eom = true;
}
else
eom = false;
s.next (nv.name, nv.value);
}
}
catch (const ios_base::failure&)
{
cerr << "io failure" << endl;
return 1;
}
catch (const std::exception& e)
{
cerr << e.what () << endl;
return 1;
}
}
|