-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathservice_main.h
51 lines (38 loc) · 1.22 KB
/
service_main.h
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
#pragma once
#include <grpc++/grpc++.h>
#include <thread>
#include <vector>
#include "nighthawk/common/exception.h"
#include "external/envoy/source/common/common/logger.h"
#include "external/envoy/source/common/common/thread.h"
#include "api/client/service.pb.h"
#include "source/client/service_impl.h"
#include "source/common/signal_handler.h"
#include "tclap/CmdLine.h"
namespace Nighthawk {
namespace Client {
class ServiceMain : public Envoy::Logger::Loggable<Envoy::Logger::Id::main> {
public:
ServiceMain(int argc, const char** argv);
void start();
/**
* Can be used to block while waiting for the server to exit. Registers to SIGTERM/SIGINT and will
* commence shutdown of the gRPC service upon reception of those signals.
*/
void wait();
/**
* Can be used to shut down the server.
*/
void shutdown();
static std::string appendDefaultPortIfNeeded(absl::string_view host_and_maybe_port);
private:
grpc::ServerBuilder builder_;
std::unique_ptr<grpc::Service> service_;
std::unique_ptr<grpc::Server> server_;
int listener_port_{-1};
std::string listener_bound_address_;
std::string listener_output_path_;
SignalHandlerPtr signal_handler_;
};
} // namespace Client
} // namespace Nighthawk