Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 1 | /* |
| 2 | * |
Craig Tiller | 0605995 | 2015-02-18 08:34:56 -0800 | [diff] [blame] | 3 | * Copyright 2015, Google Inc. |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 4 | * 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 wang | 8423251 | 2015-02-12 17:29:18 -0800 | [diff] [blame] | 36 | #include "examples/pubsub/subscriber.h" |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 37 | |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 38 | using tech::pubsub::Topic; |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 39 | using tech::pubsub::DeleteTopicRequest; |
| 40 | using tech::pubsub::GetTopicRequest; |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 41 | using tech::pubsub::SubscriberService; |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 42 | using tech::pubsub::ListTopicsRequest; |
| 43 | using tech::pubsub::ListTopicsResponse; |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 44 | using tech::pubsub::PublishRequest; |
| 45 | using tech::pubsub::PubsubMessage; |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 46 | |
| 47 | namespace grpc { |
| 48 | namespace examples { |
Chen wang | 8423251 | 2015-02-12 17:29:18 -0800 | [diff] [blame] | 49 | namespace pubsub { |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 50 | |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 51 | Subscriber::Subscriber(std::shared_ptr<ChannelInterface> channel) |
| 52 | : stub_(SubscriberService::NewStub(channel)) { |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 53 | } |
| 54 | |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 55 | void Subscriber::Shutdown() { |
| 56 | stub_.reset(); |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 57 | } |
| 58 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 59 | Status Subscriber::CreateSubscription(const grpc::string& topic, |
| 60 | const grpc::string& name) { |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 61 | tech::pubsub::Subscription request; |
| 62 | tech::pubsub::Subscription response; |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 63 | ClientContext context; |
| 64 | |
| 65 | request.set_topic(topic); |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 66 | request.set_name(name); |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 67 | |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 68 | return stub_->CreateSubscription(&context, request, &response); |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 69 | } |
| 70 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 71 | Status Subscriber::GetSubscription(const grpc::string& name, |
| 72 | grpc::string* topic) { |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 73 | tech::pubsub::GetSubscriptionRequest request; |
| 74 | tech::pubsub::Subscription response; |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 75 | ClientContext context; |
| 76 | |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 77 | request.set_subscription(name); |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 78 | |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 79 | Status s = stub_->GetSubscription(&context, request, &response); |
| 80 | *topic = response.topic(); |
| 81 | return s; |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 82 | } |
| 83 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 84 | Status Subscriber::DeleteSubscription(const grpc::string& name) { |
Chen Wang | b532ef8 | 2015-02-02 10:45:17 -0800 | [diff] [blame] | 85 | tech::pubsub::DeleteSubscriptionRequest request; |
| 86 | proto2::Empty response; |
| 87 | ClientContext context; |
| 88 | |
| 89 | request.set_subscription(name); |
| 90 | |
| 91 | return stub_->DeleteSubscription(&context, request, &response); |
| 92 | } |
| 93 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 94 | Status Subscriber::Pull(const grpc::string& name, grpc::string* data) { |
Chen Wang | 0010cda | 2015-02-01 20:44:33 -0800 | [diff] [blame] | 95 | tech::pubsub::PullRequest request; |
| 96 | tech::pubsub::PullResponse response; |
| 97 | ClientContext context; |
| 98 | |
| 99 | request.set_subscription(name); |
| 100 | Status s = stub_->Pull(&context, request, &response); |
| 101 | if (s.IsOk()) { |
| 102 | tech::pubsub::PubsubEvent event = response.pubsub_event(); |
| 103 | if (event.has_message()) { |
| 104 | *data = event.message().data(); |
| 105 | } |
| 106 | tech::pubsub::AcknowledgeRequest ack; |
| 107 | proto2::Empty empty; |
| 108 | ClientContext ack_context; |
| 109 | ack.set_subscription(name); |
| 110 | ack.add_ack_id(response.ack_id()); |
| 111 | stub_->Acknowledge(&ack_context, ack, &empty); |
| 112 | } |
| 113 | return s; |
| 114 | } |
| 115 | |
Chen wang | 8423251 | 2015-02-12 17:29:18 -0800 | [diff] [blame] | 116 | } // namespace pubsub |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 117 | } // namespace examples |
Craig Tiller | 190d360 | 2015-02-18 09:23:38 -0800 | [diff] [blame] | 118 | } // namespace grpc |