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 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 34 | #include <sstream> |
| 35 | |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 36 | #include <grpc++/client_context.h> |
| 37 | |
Chen wang | 8423251 | 2015-02-12 17:29:18 -0800 | [diff] [blame] | 38 | #include "examples/pubsub/publisher.h" |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 39 | |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 40 | using tech::pubsub::Topic; |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 41 | using tech::pubsub::DeleteTopicRequest; |
| 42 | using tech::pubsub::GetTopicRequest; |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 43 | using tech::pubsub::PublisherService; |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 44 | using tech::pubsub::ListTopicsRequest; |
| 45 | using tech::pubsub::ListTopicsResponse; |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 46 | using tech::pubsub::PublishRequest; |
| 47 | using tech::pubsub::PubsubMessage; |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 48 | |
| 49 | namespace grpc { |
| 50 | namespace examples { |
Chen wang | 8423251 | 2015-02-12 17:29:18 -0800 | [diff] [blame] | 51 | namespace pubsub { |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 52 | |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 53 | Publisher::Publisher(std::shared_ptr<ChannelInterface> channel) |
Yang Gao | 884ed08 | 2015-03-25 10:45:23 -0700 | [diff] [blame] | 54 | : stub_(PublisherService::NewStub(channel)) {} |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 55 | |
Yang Gao | 884ed08 | 2015-03-25 10:45:23 -0700 | [diff] [blame] | 56 | void Publisher::Shutdown() { stub_.reset(); } |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 57 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 58 | Status Publisher::CreateTopic(const grpc::string& topic) { |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 59 | Topic request; |
| 60 | Topic response; |
| 61 | request.set_name(topic); |
Chen Wang | d34c690 | 2015-01-22 15:12:20 -0800 | [diff] [blame] | 62 | ClientContext context; |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 63 | |
| 64 | return stub_->CreateTopic(&context, request, &response); |
| 65 | } |
| 66 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 67 | Status Publisher::ListTopics(const grpc::string& project_id, |
| 68 | std::vector<grpc::string>* topics) { |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 69 | ListTopicsRequest request; |
| 70 | ListTopicsResponse response; |
| 71 | ClientContext context; |
| 72 | |
Chen Wang | cde34e0 | 2015-02-03 10:51:24 -0800 | [diff] [blame] | 73 | std::ostringstream ss; |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 74 | ss << "cloud.googleapis.com/project in (/projects/" << project_id << ")"; |
| 75 | request.set_query(ss.str()); |
| 76 | |
| 77 | Status s = stub_->ListTopics(&context, request, &response); |
| 78 | |
| 79 | tech::pubsub::Topic topic; |
| 80 | for (int i = 0; i < response.topic_size(); i++) { |
| 81 | topic = response.topic(i); |
| 82 | topics->push_back(topic.name()); |
| 83 | } |
| 84 | |
| 85 | return s; |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 86 | } |
| 87 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 88 | Status Publisher::GetTopic(const grpc::string& topic) { |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 89 | GetTopicRequest request; |
| 90 | Topic response; |
| 91 | ClientContext context; |
| 92 | |
| 93 | request.set_topic(topic); |
| 94 | |
| 95 | return stub_->GetTopic(&context, request, &response); |
| 96 | } |
| 97 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 98 | Status Publisher::DeleteTopic(const grpc::string& topic) { |
Chen Wang | 3cc1ad6 | 2015-01-28 17:51:32 -0800 | [diff] [blame] | 99 | DeleteTopicRequest request; |
| 100 | proto2::Empty response; |
| 101 | ClientContext context; |
| 102 | |
| 103 | request.set_topic(topic); |
| 104 | |
| 105 | return stub_->DeleteTopic(&context, request, &response); |
| 106 | } |
| 107 | |
Chen Wang | 405392c | 2015-02-03 10:28:39 -0800 | [diff] [blame] | 108 | Status Publisher::Publish(const grpc::string& topic, const grpc::string& data) { |
Chen Wang | 04f1aa8 | 2015-01-30 18:26:16 -0800 | [diff] [blame] | 109 | PublishRequest request; |
| 110 | proto2::Empty response; |
| 111 | ClientContext context; |
| 112 | |
| 113 | request.mutable_message()->set_data(data); |
| 114 | request.set_topic(topic); |
| 115 | |
| 116 | return stub_->Publish(&context, request, &response); |
| 117 | } |
| 118 | |
Chen wang | 8423251 | 2015-02-12 17:29:18 -0800 | [diff] [blame] | 119 | } // namespace pubsub |
Chen Wang | 86af8cf | 2015-01-21 18:05:40 -0800 | [diff] [blame] | 120 | } // namespace examples |
Craig Tiller | 190d360 | 2015-02-18 09:23:38 -0800 | [diff] [blame] | 121 | } // namespace grpc |