blob: d9e0292ba0ff94f4267eb4f789ad34a1f83ea12b [file] [log] [blame]
Chen Wang86af8cf2015-01-21 18:05:40 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Chen Wang86af8cf2015-01-21 18:05:40 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#include <grpc++/client_context.h>
35
Chen wang84232512015-02-12 17:29:18 -080036#include "examples/pubsub/subscriber.h"
Chen Wang86af8cf2015-01-21 18:05:40 -080037
Chen Wang86af8cf2015-01-21 18:05:40 -080038using tech::pubsub::Topic;
Chen Wang3cc1ad62015-01-28 17:51:32 -080039using tech::pubsub::DeleteTopicRequest;
40using tech::pubsub::GetTopicRequest;
Chen Wang04f1aa82015-01-30 18:26:16 -080041using tech::pubsub::SubscriberService;
Chen Wang3cc1ad62015-01-28 17:51:32 -080042using tech::pubsub::ListTopicsRequest;
43using tech::pubsub::ListTopicsResponse;
Chen Wang04f1aa82015-01-30 18:26:16 -080044using tech::pubsub::PublishRequest;
45using tech::pubsub::PubsubMessage;
Chen Wang86af8cf2015-01-21 18:05:40 -080046
47namespace grpc {
48namespace examples {
Chen wang84232512015-02-12 17:29:18 -080049namespace pubsub {
Chen Wang86af8cf2015-01-21 18:05:40 -080050
Chen Wang04f1aa82015-01-30 18:26:16 -080051Subscriber::Subscriber(std::shared_ptr<ChannelInterface> channel)
Yang Gao884ed082015-03-25 10:45:23 -070052 : stub_(SubscriberService::NewStub(channel)) {}
Chen Wang86af8cf2015-01-21 18:05:40 -080053
Yang Gao884ed082015-03-25 10:45:23 -070054void Subscriber::Shutdown() { stub_.reset(); }
Chen Wang86af8cf2015-01-21 18:05:40 -080055
Chen Wang405392c2015-02-03 10:28:39 -080056Status Subscriber::CreateSubscription(const grpc::string& topic,
57 const grpc::string& name) {
Chen Wang04f1aa82015-01-30 18:26:16 -080058 tech::pubsub::Subscription request;
59 tech::pubsub::Subscription response;
Chen Wang3cc1ad62015-01-28 17:51:32 -080060 ClientContext context;
61
62 request.set_topic(topic);
Chen Wang04f1aa82015-01-30 18:26:16 -080063 request.set_name(name);
Chen Wang3cc1ad62015-01-28 17:51:32 -080064
Chen Wang04f1aa82015-01-30 18:26:16 -080065 return stub_->CreateSubscription(&context, request, &response);
Chen Wang3cc1ad62015-01-28 17:51:32 -080066}
67
Chen Wang405392c2015-02-03 10:28:39 -080068Status Subscriber::GetSubscription(const grpc::string& name,
69 grpc::string* topic) {
Chen Wang04f1aa82015-01-30 18:26:16 -080070 tech::pubsub::GetSubscriptionRequest request;
71 tech::pubsub::Subscription response;
Chen Wang3cc1ad62015-01-28 17:51:32 -080072 ClientContext context;
73
Chen Wang04f1aa82015-01-30 18:26:16 -080074 request.set_subscription(name);
Chen Wang3cc1ad62015-01-28 17:51:32 -080075
Chen Wang04f1aa82015-01-30 18:26:16 -080076 Status s = stub_->GetSubscription(&context, request, &response);
77 *topic = response.topic();
78 return s;
Chen Wang3cc1ad62015-01-28 17:51:32 -080079}
80
Chen Wang405392c2015-02-03 10:28:39 -080081Status Subscriber::DeleteSubscription(const grpc::string& name) {
Chen Wangb532ef82015-02-02 10:45:17 -080082 tech::pubsub::DeleteSubscriptionRequest request;
83 proto2::Empty response;
84 ClientContext context;
85
86 request.set_subscription(name);
87
88 return stub_->DeleteSubscription(&context, request, &response);
89}
90
Chen Wang405392c2015-02-03 10:28:39 -080091Status Subscriber::Pull(const grpc::string& name, grpc::string* data) {
Chen Wang0010cda2015-02-01 20:44:33 -080092 tech::pubsub::PullRequest request;
93 tech::pubsub::PullResponse response;
94 ClientContext context;
95
96 request.set_subscription(name);
97 Status s = stub_->Pull(&context, request, &response);
98 if (s.IsOk()) {
99 tech::pubsub::PubsubEvent event = response.pubsub_event();
100 if (event.has_message()) {
101 *data = event.message().data();
102 }
103 tech::pubsub::AcknowledgeRequest ack;
104 proto2::Empty empty;
105 ClientContext ack_context;
106 ack.set_subscription(name);
107 ack.add_ack_id(response.ack_id());
108 stub_->Acknowledge(&ack_context, ack, &empty);
109 }
110 return s;
111}
112
Chen wang84232512015-02-12 17:29:18 -0800113} // namespace pubsub
Chen Wang86af8cf2015-01-21 18:05:40 -0800114} // namespace examples
Craig Tiller190d3602015-02-18 09:23:38 -0800115} // namespace grpc