mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.9 KiB
60 lines
1.9 KiB
// Copyright 2021 the gRPC authors. |
|
// |
|
// Licensed under the Apache License, Version 2.0 (the "License"); |
|
// you may not use this file except in compliance with the License. |
|
// You may obtain a copy of the License at |
|
// |
|
// http://www.apache.org/licenses/LICENSE-2.0 |
|
// |
|
// Unless required by applicable law or agreed to in writing, software |
|
// distributed under the License is distributed on an "AS IS" BASIS, |
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
// See the License for the specific language governing permissions and |
|
// limitations under the License. |
|
|
|
#include <iostream> |
|
#include <memory> |
|
#include <string> |
|
|
|
#include "examples/protos/helloworld.grpc.pb.h" |
|
|
|
#include <grpcpp/ext/proto_server_reflection_plugin.h> |
|
#include <grpcpp/grpcpp.h> |
|
#include <grpcpp/health_check_service_interface.h> |
|
|
|
using grpc::Server; |
|
using grpc::ServerBuilder; |
|
using grpc::ServerContext; |
|
using grpc::Status; |
|
using helloworld::Greeter; |
|
using helloworld::HelloReply; |
|
using helloworld::HelloRequest; |
|
|
|
// Logic and data behind the server's behavior. |
|
class GreeterServiceImpl final : public Greeter::Service { |
|
Status SayHello(ServerContext* context, const HelloRequest* request, |
|
HelloReply* reply) override { |
|
reply->set_message(request->name()); |
|
std::cout << "Echoing: " << request->name() << std::endl; |
|
return Status::OK; |
|
} |
|
}; |
|
|
|
void RunServer() { |
|
std::string server_address("unix-abstract:grpc%00abstract"); |
|
GreeterServiceImpl service; |
|
grpc::EnableDefaultHealthCheckService(true); |
|
grpc::reflection::InitProtoReflectionServerBuilderPlugin(); |
|
ServerBuilder builder; |
|
builder.AddListeningPort(server_address, grpc::InsecureServerCredentials()); |
|
builder.RegisterService(&service); |
|
std::unique_ptr<Server> server(builder.BuildAndStart()); |
|
std::cout << "Server listening on " << server_address << " ... "; |
|
server->Wait(); |
|
} |
|
|
|
int main(int argc, char** argv) { |
|
RunServer(); |
|
|
|
return 0; |
|
}
|
|
|