-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathreadFromStream.cpp
More file actions
55 lines (51 loc) · 1.2 KB
/
readFromStream.cpp
File metadata and controls
55 lines (51 loc) · 1.2 KB
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
#include "json/json.h"
#include <fstream>
#include <iostream>
/** \brief Parse from stream, collect comments, access data, and capture error info.
* Example Usage:
* $g++ readFromStream.cpp -ljsoncpp -std=c++11 -o readFromStream
* $./readFromStream
* // comment head
* [
* // comment before
* {
* "key" :
* {
* "id" : 1,
* "val" : "value 1"
* }
* },
* {
* "key" :
* {
* "id" : 2,
* "val" : "value 2"
* }
* }
* ] // comment tail
* // comment after
* 1
* value 1
* 2
* value 2
*/
int main(int argc, char* argv[]) {
Json::Value root;
std::ifstream ifs;
ifs.open(argv[1]);
Json::CharReaderBuilder builder;
builder["collectComments"] = true;
JSONCPP_STRING errs;
if (!parseFromStream(builder, ifs, &root, &errs)) {
std::cout << errs << std::endl;
return EXIT_FAILURE;
}
std::cout << root << std::endl;
for (Json::Value::const_iterator it = root.begin(); it != root.end(); ++it) {
int id = it->get("key", "").get("id", "").asInt();
std::string val = it->get("key", "").get("val", "").asString();
std::cout << id << std::endl;
std::cout << val << std::endl;
}
return EXIT_SUCCESS;
}