/Users/deen/code/yugabyte-db/src/yb/tools/pbc-dump.cc
Line | Count | Source (jump to first uncovered line) |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | // |
18 | | // The following only applies to changes made to this file as part of YugaByte development. |
19 | | // |
20 | | // Portions Copyright (c) YugaByte, Inc. |
21 | | // |
22 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
23 | | // in compliance with the License. You may obtain a copy of the License at |
24 | | // |
25 | | // http://www.apache.org/licenses/LICENSE-2.0 |
26 | | // |
27 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
28 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
29 | | // or implied. See the License for the specific language governing permissions and limitations |
30 | | // under the License. |
31 | | // |
32 | | |
33 | | #include <iostream> |
34 | | #include <string> |
35 | | |
36 | | #include <glog/logging.h> |
37 | | |
38 | | #include "yb/util/env.h" |
39 | | #include "yb/util/flags.h" |
40 | | #include "yb/util/flag_tags.h" |
41 | | #include "yb/util/logging.h" |
42 | | #include "yb/util/pb_util.h" |
43 | | #include "yb/util/status.h" |
44 | | |
45 | | using yb::Status; |
46 | | using std::cerr; |
47 | | using std::endl; |
48 | | using std::string; |
49 | | |
50 | | DEFINE_bool(oneline, false, "print each protobuf on a single line"); |
51 | | TAG_FLAG(oneline, stable); |
52 | | |
53 | | namespace yb { |
54 | | namespace pb_util { |
55 | | |
56 | 0 | Status DumpPBContainerFile(const string& filename) { |
57 | 0 | Env* env = Env::Default(); |
58 | 0 | std::unique_ptr<RandomAccessFile> reader; |
59 | 0 | RETURN_NOT_OK(env->NewRandomAccessFile(filename, &reader)); |
60 | 0 | ReadablePBContainerFile pb_reader(std::move(reader)); |
61 | 0 | RETURN_NOT_OK(pb_reader.Init()); |
62 | 0 | RETURN_NOT_OK(pb_reader.Dump(&std::cout, FLAGS_oneline)); |
63 | |
|
64 | 0 | return Status::OK(); |
65 | 0 | } |
66 | | |
67 | | } // namespace pb_util |
68 | | } // namespace yb |
69 | | |
70 | | int main(int argc, char **argv) { |
71 | | yb::ParseCommandLineFlags(&argc, &argv, true); |
72 | | yb::InitGoogleLoggingSafe(argv[0]); |
73 | | if (argc != 2) { |
74 | | cerr << "usage: " << argv[0] << " [--oneline] <protobuf container filename>" << endl; |
75 | | return 2; |
76 | | } |
77 | | |
78 | | Status s = yb::pb_util::DumpPBContainerFile(argv[1]); |
79 | | if (s.ok()) { |
80 | | return 0; |
81 | | } else { |
82 | | cerr << s.ToString() << endl; |
83 | | return 1; |
84 | | } |
85 | | } |