mirror of https://github.com/grpc/grpc.git
Merge pull request #341 from chen-wang/master
Implement full logic of publish and subscribepull/366/head
commit
51d77166d2
13 changed files with 709 additions and 46 deletions
@ -0,0 +1,118 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2014, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#include <grpc++/client_context.h> |
||||||
|
|
||||||
|
#include "examples/tips/subscriber.h" |
||||||
|
|
||||||
|
using tech::pubsub::Topic; |
||||||
|
using tech::pubsub::DeleteTopicRequest; |
||||||
|
using tech::pubsub::GetTopicRequest; |
||||||
|
using tech::pubsub::SubscriberService; |
||||||
|
using tech::pubsub::ListTopicsRequest; |
||||||
|
using tech::pubsub::ListTopicsResponse; |
||||||
|
using tech::pubsub::PublishRequest; |
||||||
|
using tech::pubsub::PubsubMessage; |
||||||
|
|
||||||
|
namespace grpc { |
||||||
|
namespace examples { |
||||||
|
namespace tips { |
||||||
|
|
||||||
|
Subscriber::Subscriber(std::shared_ptr<ChannelInterface> channel) |
||||||
|
: stub_(SubscriberService::NewStub(channel)) { |
||||||
|
} |
||||||
|
|
||||||
|
void Subscriber::Shutdown() { |
||||||
|
stub_.reset(); |
||||||
|
} |
||||||
|
|
||||||
|
Status Subscriber::CreateSubscription(const grpc::string& topic, |
||||||
|
const grpc::string& name) { |
||||||
|
tech::pubsub::Subscription request; |
||||||
|
tech::pubsub::Subscription response; |
||||||
|
ClientContext context; |
||||||
|
|
||||||
|
request.set_topic(topic); |
||||||
|
request.set_name(name); |
||||||
|
|
||||||
|
return stub_->CreateSubscription(&context, request, &response); |
||||||
|
} |
||||||
|
|
||||||
|
Status Subscriber::GetSubscription(const grpc::string& name, |
||||||
|
grpc::string* topic) { |
||||||
|
tech::pubsub::GetSubscriptionRequest request; |
||||||
|
tech::pubsub::Subscription response; |
||||||
|
ClientContext context; |
||||||
|
|
||||||
|
request.set_subscription(name); |
||||||
|
|
||||||
|
Status s = stub_->GetSubscription(&context, request, &response); |
||||||
|
*topic = response.topic(); |
||||||
|
return s; |
||||||
|
} |
||||||
|
|
||||||
|
Status Subscriber::DeleteSubscription(const grpc::string& name) { |
||||||
|
tech::pubsub::DeleteSubscriptionRequest request; |
||||||
|
proto2::Empty response; |
||||||
|
ClientContext context; |
||||||
|
|
||||||
|
request.set_subscription(name); |
||||||
|
|
||||||
|
return stub_->DeleteSubscription(&context, request, &response); |
||||||
|
} |
||||||
|
|
||||||
|
Status Subscriber::Pull(const grpc::string& name, grpc::string* data) { |
||||||
|
tech::pubsub::PullRequest request; |
||||||
|
tech::pubsub::PullResponse response; |
||||||
|
ClientContext context; |
||||||
|
|
||||||
|
request.set_subscription(name); |
||||||
|
Status s = stub_->Pull(&context, request, &response); |
||||||
|
if (s.IsOk()) { |
||||||
|
tech::pubsub::PubsubEvent event = response.pubsub_event(); |
||||||
|
if (event.has_message()) { |
||||||
|
*data = event.message().data(); |
||||||
|
} |
||||||
|
tech::pubsub::AcknowledgeRequest ack; |
||||||
|
proto2::Empty empty; |
||||||
|
ClientContext ack_context; |
||||||
|
ack.set_subscription(name); |
||||||
|
ack.add_ack_id(response.ack_id()); |
||||||
|
stub_->Acknowledge(&ack_context, ack, &empty); |
||||||
|
} |
||||||
|
return s; |
||||||
|
} |
||||||
|
|
||||||
|
} // namespace tips
|
||||||
|
} // namespace examples
|
||||||
|
} // namespace grpc
|
@ -0,0 +1,68 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2014, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef __GRPCPP_EXAMPLES_TIPS_SUBSCRIBER_H_ |
||||||
|
#define __GRPCPP_EXAMPLES_TIPS_SUBSCRIBER_H_ |
||||||
|
|
||||||
|
#include <grpc++/channel_interface.h> |
||||||
|
#include <grpc++/status.h> |
||||||
|
|
||||||
|
#include "examples/tips/pubsub.pb.h" |
||||||
|
|
||||||
|
namespace grpc { |
||||||
|
namespace examples { |
||||||
|
namespace tips { |
||||||
|
|
||||||
|
class Subscriber { |
||||||
|
public: |
||||||
|
Subscriber(std::shared_ptr<ChannelInterface> channel); |
||||||
|
void Shutdown(); |
||||||
|
|
||||||
|
Status CreateSubscription(const grpc::string& topic, |
||||||
|
const grpc::string& name); |
||||||
|
|
||||||
|
Status GetSubscription(const grpc::string& name, grpc::string* topic); |
||||||
|
|
||||||
|
Status DeleteSubscription(const grpc::string& name); |
||||||
|
|
||||||
|
Status Pull(const grpc::string& name, grpc::string* data); |
||||||
|
|
||||||
|
private: |
||||||
|
std::unique_ptr<tech::pubsub::SubscriberService::Stub> stub_; |
||||||
|
}; |
||||||
|
|
||||||
|
} // namespace tips
|
||||||
|
} // namespace examples
|
||||||
|
} // namespace grpc
|
||||||
|
|
||||||
|
#endif // __GRPCPP_EXAMPLES_TIPS_SUBSCRIBER_H_
|
@ -0,0 +1,157 @@ |
|||||||
|
/*
|
||||||
|
* |
||||||
|
* Copyright 2014, Google Inc. |
||||||
|
* All rights reserved. |
||||||
|
* |
||||||
|
* Redistribution and use in source and binary forms, with or without |
||||||
|
* modification, are permitted provided that the following conditions are |
||||||
|
* met: |
||||||
|
* |
||||||
|
* * Redistributions of source code must retain the above copyright |
||||||
|
* notice, this list of conditions and the following disclaimer. |
||||||
|
* * Redistributions in binary form must reproduce the above |
||||||
|
* copyright notice, this list of conditions and the following disclaimer |
||||||
|
* in the documentation and/or other materials provided with the |
||||||
|
* distribution. |
||||||
|
* * Neither the name of Google Inc. nor the names of its |
||||||
|
* contributors may be used to endorse or promote products derived from |
||||||
|
* this software without specific prior written permission. |
||||||
|
* |
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||||
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||||
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||||
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||||
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||||
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||||
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||||
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
* |
||||||
|
*/ |
||||||
|
|
||||||
|
#include <grpc++/channel_arguments.h> |
||||||
|
#include <grpc++/channel_interface.h> |
||||||
|
#include <grpc++/client_context.h> |
||||||
|
#include <grpc++/create_channel.h> |
||||||
|
#include <grpc++/server.h> |
||||||
|
#include <grpc++/server_builder.h> |
||||||
|
#include <grpc++/server_context.h> |
||||||
|
#include <grpc++/status.h> |
||||||
|
#include <gtest/gtest.h> |
||||||
|
|
||||||
|
#include "examples/tips/subscriber.h" |
||||||
|
#include "test/core/util/port.h" |
||||||
|
#include "test/core/util/test_config.h" |
||||||
|
|
||||||
|
namespace grpc { |
||||||
|
namespace testing { |
||||||
|
namespace { |
||||||
|
|
||||||
|
const char kTopic[] = "test topic"; |
||||||
|
const char kSubscriptionName[] = "subscription name"; |
||||||
|
const char kData[] = "Message data"; |
||||||
|
|
||||||
|
class SubscriberServiceImpl : public tech::pubsub::SubscriberService::Service { |
||||||
|
public: |
||||||
|
Status CreateSubscription(ServerContext* context, |
||||||
|
const tech::pubsub::Subscription* request, |
||||||
|
tech::pubsub::Subscription* response) override { |
||||||
|
EXPECT_EQ(request->topic(), kTopic); |
||||||
|
EXPECT_EQ(request->name(), kSubscriptionName); |
||||||
|
return Status::OK; |
||||||
|
} |
||||||
|
|
||||||
|
Status GetSubscription(ServerContext* context, |
||||||
|
const tech::pubsub::GetSubscriptionRequest* request, |
||||||
|
tech::pubsub::Subscription* response) override { |
||||||
|
EXPECT_EQ(request->subscription(), kSubscriptionName); |
||||||
|
response->set_topic(kTopic); |
||||||
|
return Status::OK; |
||||||
|
} |
||||||
|
|
||||||
|
Status DeleteSubscription( |
||||||
|
ServerContext* context, |
||||||
|
const tech::pubsub::DeleteSubscriptionRequest* request, |
||||||
|
proto2::Empty* response) override { |
||||||
|
EXPECT_EQ(request->subscription(), kSubscriptionName); |
||||||
|
return Status::OK; |
||||||
|
} |
||||||
|
|
||||||
|
Status Pull(ServerContext* context, |
||||||
|
const tech::pubsub::PullRequest* request, |
||||||
|
tech::pubsub::PullResponse* response) override { |
||||||
|
EXPECT_EQ(request->subscription(), kSubscriptionName); |
||||||
|
response->set_ack_id("1"); |
||||||
|
response->mutable_pubsub_event()->mutable_message()->set_data(kData); |
||||||
|
return Status::OK; |
||||||
|
} |
||||||
|
|
||||||
|
Status Acknowledge(ServerContext* context, |
||||||
|
const tech::pubsub::AcknowledgeRequest* request, |
||||||
|
proto2::Empty* response) override { |
||||||
|
return Status::OK; |
||||||
|
} |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
class SubscriberTest : public ::testing::Test { |
||||||
|
protected: |
||||||
|
// Setup a server and a client for SubscriberService.
|
||||||
|
void SetUp() override { |
||||||
|
int port = grpc_pick_unused_port_or_die(); |
||||||
|
server_address_ << "localhost:" << port; |
||||||
|
ServerBuilder builder; |
||||||
|
builder.AddPort(server_address_.str()); |
||||||
|
builder.RegisterService(service_.service()); |
||||||
|
server_ = builder.BuildAndStart(); |
||||||
|
|
||||||
|
channel_ = CreateChannel(server_address_.str(), ChannelArguments()); |
||||||
|
|
||||||
|
subscriber_.reset(new grpc::examples::tips::Subscriber(channel_)); |
||||||
|
} |
||||||
|
|
||||||
|
void TearDown() override { |
||||||
|
server_->Shutdown(); |
||||||
|
subscriber_->Shutdown(); |
||||||
|
} |
||||||
|
|
||||||
|
std::ostringstream server_address_; |
||||||
|
std::unique_ptr<Server> server_; |
||||||
|
SubscriberServiceImpl service_; |
||||||
|
|
||||||
|
std::shared_ptr<ChannelInterface> channel_; |
||||||
|
|
||||||
|
std::unique_ptr<grpc::examples::tips::Subscriber> subscriber_; |
||||||
|
}; |
||||||
|
|
||||||
|
TEST_F(SubscriberTest, TestSubscriber) { |
||||||
|
EXPECT_TRUE(subscriber_->CreateSubscription(kTopic, |
||||||
|
kSubscriptionName).IsOk()); |
||||||
|
|
||||||
|
grpc::string topic; |
||||||
|
EXPECT_TRUE(subscriber_->GetSubscription(kSubscriptionName, |
||||||
|
&topic).IsOk()); |
||||||
|
EXPECT_EQ(topic, kTopic); |
||||||
|
|
||||||
|
grpc::string data; |
||||||
|
EXPECT_TRUE(subscriber_->Pull(kSubscriptionName, |
||||||
|
&data).IsOk()); |
||||||
|
|
||||||
|
EXPECT_TRUE(subscriber_->DeleteSubscription(kSubscriptionName).IsOk()); |
||||||
|
} |
||||||
|
|
||||||
|
} // namespace
|
||||||
|
} // namespace testing
|
||||||
|
} // namespace grpc
|
||||||
|
|
||||||
|
int main(int argc, char** argv) { |
||||||
|
grpc_test_init(argc, argv); |
||||||
|
grpc_init(); |
||||||
|
::testing::InitGoogleTest(&argc, argv); |
||||||
|
gpr_log(GPR_INFO, "Start test ..."); |
||||||
|
int result = RUN_ALL_TESTS(); |
||||||
|
grpc_shutdown(); |
||||||
|
return result; |
||||||
|
} |
Loading…
Reference in new issue