forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap2pb.cc
41 lines (35 loc) · 1.23 KB
/
bootstrap2pb.cc
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
/**
* Utility to convert bootstrap from its YAML/JSON/proto representation to text
* proto.
*
* Usage:
*
* bootstrap2pb <input YAML/JSON/proto path> <output text proto path>
*/
#include <cstdlib>
#include <fstream>
#include "envoy/config/bootstrap/v2/bootstrap.pb.h"
#include "common/api/api_impl.h"
#include "common/common/assert.h"
#include "common/event/real_time_system.h"
#include "common/protobuf/utility.h"
#include "common/stats/isolated_store_impl.h"
#include "exe/platform_impl.h"
// NOLINT(namespace-envoy)
int main(int argc, char** argv) {
if (argc != 3) {
std::cerr << "Usage: " << argv[0] << " <input YAML/JSON/proto path> <output text text path>"
<< std::endl;
return EXIT_FAILURE;
}
Envoy::PlatformImpl platform_impl_;
Envoy::Stats::IsolatedStoreImpl stats_store;
Envoy::Event::RealTimeSystem time_system; // NO_CHECK_FORMAT(real_time)
Envoy::Api::Impl api(platform_impl_.threadFactory(), stats_store, time_system,
platform_impl_.fileSystem());
envoy::config::bootstrap::v2::Bootstrap bootstrap;
Envoy::MessageUtil::loadFromFile(argv[1], bootstrap, api);
std::ofstream bootstrap_file(argv[2]);
bootstrap_file << bootstrap.DebugString();
return EXIT_SUCCESS;
}