Skip to content
Snippets Groups Projects
Commit b2a30c19 authored by yang-g's avatar yang-g
Browse files

fix cpp

parent 9a72021c
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#include <vector> #include <vector>
#include "route_guide.grpc.pb.h" #include "route_guide.grpc.pb.h"
namespace examples { namespace routeguide {
std::string GetDbFileContent(int argc, char** argv) { std::string GetDbFileContent(int argc, char** argv) {
std::string db_path; std::string db_path;
...@@ -174,5 +174,5 @@ void ParseDb(const std::string& db, std::vector<Feature>* feature_list) { ...@@ -174,5 +174,5 @@ void ParseDb(const std::string& db, std::vector<Feature>* feature_list) {
} }
} // namespace examples } // namespace routeguide
...@@ -37,14 +37,14 @@ ...@@ -37,14 +37,14 @@
#include <string> #include <string>
#include <vector> #include <vector>
namespace examples { namespace routeguide {
class Feature; class Feature;
std::string GetDbFileContent(int argc, char** argv); std::string GetDbFileContent(int argc, char** argv);
void ParseDb(const std::string& db, std::vector<Feature>* feature_list); void ParseDb(const std::string& db, std::vector<Feature>* feature_list);
} // namespace examples } // namespace routeguide
#endif // GRPC_COMMON_CPP_ROUTE_GUIDE_HELPER_H_ #endif // GRPC_COMMON_CPP_ROUTE_GUIDE_HELPER_H_
...@@ -53,12 +53,12 @@ using grpc::ClientReader; ...@@ -53,12 +53,12 @@ using grpc::ClientReader;
using grpc::ClientReaderWriter; using grpc::ClientReaderWriter;
using grpc::ClientWriter; using grpc::ClientWriter;
using grpc::Status; using grpc::Status;
using examples::Point; using routeguide::Point;
using examples::Feature; using routeguide::Feature;
using examples::Rectangle; using routeguide::Rectangle;
using examples::RouteSummary; using routeguide::RouteSummary;
using examples::RouteNote; using routeguide::RouteNote;
using examples::RouteGuide; using routeguide::RouteGuide;
Point MakePoint(long latitude, long longitude) { Point MakePoint(long latitude, long longitude) {
Point p; Point p;
...@@ -87,7 +87,7 @@ class RouteGuideClient { ...@@ -87,7 +87,7 @@ class RouteGuideClient {
public: public:
RouteGuideClient(std::shared_ptr<Channel> channel, const std::string& db) RouteGuideClient(std::shared_ptr<Channel> channel, const std::string& db)
: stub_(RouteGuide::NewStub(channel)) { : stub_(RouteGuide::NewStub(channel)) {
examples::ParseDb(db, &feature_list_); routeguide::ParseDb(db, &feature_list_);
} }
void GetFeature() { void GetFeature() {
...@@ -100,7 +100,7 @@ class RouteGuideClient { ...@@ -100,7 +100,7 @@ class RouteGuideClient {
} }
void ListFeatures() { void ListFeatures() {
examples::Rectangle rect; routeguide::Rectangle rect;
Feature feature; Feature feature;
ClientContext context; ClientContext context;
...@@ -233,10 +233,9 @@ class RouteGuideClient { ...@@ -233,10 +233,9 @@ class RouteGuideClient {
int main(int argc, char** argv) { int main(int argc, char** argv) {
// Expect only arg: --db_path=path/to/route_guide_db.json. // Expect only arg: --db_path=path/to/route_guide_db.json.
std::string db = examples::GetDbFileContent(argc, argv); std::string db = routeguide::GetDbFileContent(argc, argv);
RouteGuideClient guide( RouteGuideClient guide(
grpc::CreateChannel("localhost:50051", grpc::InsecureCredentials(), grpc::CreateChannel("localhost:50051", grpc::InsecureCredentials()),
ChannelArguments()),
db); db);
std::cout << "-------------- GetFeature --------------" << std::endl; std::cout << "-------------- GetFeature --------------" << std::endl;
......
...@@ -53,12 +53,12 @@ using grpc::ServerReader; ...@@ -53,12 +53,12 @@ using grpc::ServerReader;
using grpc::ServerReaderWriter; using grpc::ServerReaderWriter;
using grpc::ServerWriter; using grpc::ServerWriter;
using grpc::Status; using grpc::Status;
using examples::Point; using routeguide::Point;
using examples::Feature; using routeguide::Feature;
using examples::Rectangle; using routeguide::Rectangle;
using examples::RouteSummary; using routeguide::RouteSummary;
using examples::RouteNote; using routeguide::RouteNote;
using examples::RouteGuide; using routeguide::RouteGuide;
using std::chrono::system_clock; using std::chrono::system_clock;
...@@ -99,7 +99,7 @@ std::string GetFeatureName(const Point& point, ...@@ -99,7 +99,7 @@ std::string GetFeatureName(const Point& point,
class RouteGuideImpl final : public RouteGuide::Service { class RouteGuideImpl final : public RouteGuide::Service {
public: public:
explicit RouteGuideImpl(const std::string& db) { explicit RouteGuideImpl(const std::string& db) {
examples::ParseDb(db, &feature_list_); routeguide::ParseDb(db, &feature_list_);
} }
Status GetFeature(ServerContext* context, const Point* point, Status GetFeature(ServerContext* context, const Point* point,
...@@ -110,7 +110,7 @@ class RouteGuideImpl final : public RouteGuide::Service { ...@@ -110,7 +110,7 @@ class RouteGuideImpl final : public RouteGuide::Service {
} }
Status ListFeatures(ServerContext* context, Status ListFeatures(ServerContext* context,
const examples::Rectangle* rectangle, const routeguide::Rectangle* rectangle,
ServerWriter<Feature>* writer) override { ServerWriter<Feature>* writer) override {
auto lo = rectangle->lo(); auto lo = rectangle->lo();
auto hi = rectangle->hi(); auto hi = rectangle->hi();
...@@ -195,7 +195,7 @@ void RunServer(const std::string& db_path) { ...@@ -195,7 +195,7 @@ void RunServer(const std::string& db_path) {
int main(int argc, char** argv) { int main(int argc, char** argv) {
// Expect only arg: --db_path=path/to/route_guide_db.json. // Expect only arg: --db_path=path/to/route_guide_db.json.
std::string db = examples::GetDbFileContent(argc, argv); std::string db = routeguide::GetDbFileContent(argc, argv);
RunServer(db); RunServer(db);
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment