forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main_common.cc
124 lines (109 loc) · 4.21 KB
/
main_common.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#include "source/exe/main_common.h"
#include <fstream>
#include <iostream>
#include <memory>
#include <new>
#include "envoy/config/listener/v3/listener.pb.h"
#include "source/common/common/compiler_requirements.h"
#include "source/common/common/logger.h"
#include "source/common/common/perf_annotation.h"
#include "source/common/network/utility.h"
#include "source/common/stats/thread_local_store.h"
#include "source/exe/platform_impl.h"
#include "source/server/config_validation/server.h"
#include "source/server/drain_manager_impl.h"
#include "source/server/hot_restart_nop_impl.h"
#include "source/server/listener_hooks.h"
#include "source/server/options_impl.h"
#include "source/server/server.h"
#include "absl/debugging/symbolize.h"
#include "absl/strings/str_split.h"
#ifdef ENVOY_HOT_RESTART
#include "source/server/hot_restart_impl.h"
#endif
namespace Envoy {
bool MainCommonBase::run() {
switch (options_.mode()) {
case Server::Mode::Serve:
runServer();
return true;
case Server::Mode::Validate:
return Server::validateConfig(
options_, Network::Utility::getLocalAddress(options_.localAddressIpVersion()),
component_factory_, platform_impl_->threadFactory(), platform_impl_->fileSystem());
case Server::Mode::InitOnly:
PERF_DUMP();
return true;
}
return false; // for gcc.
}
#ifdef ENVOY_ADMIN_FUNCTIONALITY
void MainCommonBase::adminRequest(absl::string_view path_and_query, absl::string_view method,
const AdminRequestFn& handler) {
std::string path_and_query_buf = std::string(path_and_query);
std::string method_buf = std::string(method);
server_->dispatcher().post([this, path_and_query_buf, method_buf, handler]() {
auto response_headers = Http::ResponseHeaderMapImpl::create();
std::string body;
if (server_->admin()) {
server_->admin()->request(path_and_query_buf, method_buf, *response_headers, body);
}
handler(*response_headers, body);
});
}
#endif
MainCommon::MainCommon(const std::vector<std::string>& args)
: options_(args, &MainCommon::hotRestartVersion, spdlog::level::info),
base_(options_, real_time_system_, default_listener_hooks_, prod_component_factory_,
std::make_unique<PlatformImpl>(), std::make_unique<Random::RandomGeneratorImpl>(),
nullptr) {}
MainCommon::MainCommon(int argc, const char* const* argv)
: options_(argc, argv, &MainCommon::hotRestartVersion, spdlog::level::info),
base_(options_, real_time_system_, default_listener_hooks_, prod_component_factory_,
std::make_unique<PlatformImpl>(), std::make_unique<Random::RandomGeneratorImpl>(),
nullptr) {}
std::string MainCommon::hotRestartVersion(bool hot_restart_enabled) {
#ifdef ENVOY_HOT_RESTART
if (hot_restart_enabled) {
return Server::HotRestartImpl::hotRestartVersion();
}
#else
UNREFERENCED_PARAMETER(hot_restart_enabled);
#endif
return "disabled";
}
int MainCommon::main(int argc, char** argv, PostServerHook hook) {
#ifndef __APPLE__
// absl::Symbolize mostly works without this, but this improves corner case
// handling, such as running in a chroot jail.
absl::InitializeSymbolizer(argv[0]);
#endif
Thread::MainThread main_thread;
std::unique_ptr<Envoy::MainCommon> main_common;
// Initialize the server's main context under a try/catch loop and simply return EXIT_FAILURE
// as needed. Whatever code in the initialization path that fails is expected to log an error
// message so the user can diagnose.
TRY_ASSERT_MAIN_THREAD {
main_common = std::make_unique<Envoy::MainCommon>(argc, argv);
Envoy::Server::Instance* server = main_common->server();
if (server != nullptr && hook != nullptr) {
hook(*server);
}
}
END_TRY
catch (const Envoy::NoServingException& e) {
return EXIT_SUCCESS;
}
catch (const Envoy::MalformedArgvException& e) {
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
catch (const Envoy::EnvoyException& e) {
std::cerr << e.what() << std::endl;
return EXIT_FAILURE;
}
// Run the server listener loop outside try/catch blocks, so that unexpected exceptions
// show up as a core-dumps for easier diagnostics.
return main_common->run() ? EXIT_SUCCESS : EXIT_FAILURE;
}
} // namespace Envoy